/* =====================
   BawdyBox — Cheeky Curated Goods
   Design System & Global Styles
   ===================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --hot-pink: #FF2D6B;
  --deep-plum: #1A0A1E;
  --warm-nude: #F5E6D8;
  --soft-peach: #FFD4C4;
  --off-white: #FFF8F5;
  --muted-rose: #C4687A;
  --dark-text: #1A0A1E;
  --pink-glow: rgba(255, 45, 107, 0.15);
  --rose-glow: rgba(196, 104, 122, 0.1);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(26, 10, 30, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 10, 30, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 10, 30, 0.16);
  --shadow-glow: 0 4px 30px rgba(255, 45, 107, 0.2);
}

body {
  font-family: var(--font-body);
  background: var(--deep-plum);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================
   NAVIGATION
   ===================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 10, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--off-white);
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo span {
  color: var(--hot-pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--off-white);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 6px;
  transition: all 0.3s ease;
}

.cart-badge.has-items {
  background: var(--hot-pink);
  color: white;
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--hot-pink);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: #e0255d;
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(255, 45, 107, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.btn-add {
  background: rgba(255, 45, 107, 0.15);
  color: var(--hot-pink);
  border: 1px solid rgba(255, 45, 107, 0.3);
}

.btn-add:hover {
  background: var(--hot-pink);
  color: white;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* =====================
   HERO
   ===================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: fixed;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--hot-pink);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 248, 245, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  top: var(--y);
  left: var(--x);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.float-emoji {
  font-size: 1.8rem;
}

.float-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 248, 245, 0.8);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* =====================
   SECTIONS
   ===================== */

.section {
  padding: 100px 24px;
  position: relative;
}

.section-dark {
  background: rgba(0, 0, 0, 0.2);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.accent {
  color: var(--muted-rose);
  font-weight: 400;
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}

/* =====================
   PRODUCT CARDS
   ===================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 107, 0.3);
  box-shadow: var(--shadow-glow);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card-emoji {
  font-size: 4rem;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--hot-pink);
  color: white;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: 20px;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-rose);
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card-tagline {
  font-size: 0.85rem;
  color: rgba(255, 248, 245, 0.5);
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
}

.product-compare-price {
  font-size: 0.85rem;
  color: rgba(255, 248, 245, 0.4);
  text-decoration: line-through;
}

/* =====================
   VALUE PROPS
   ===================== */

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(255, 45, 107, 0.2);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 248, 245, 0.6);
}

/* =====================
   CATEGORIES
   ===================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--hot-pink);
  background: rgba(255, 45, 107, 0.05);
  transform: translateY(-2px);
}

.cat-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.5);
}

/* =====================
   CTA SECTION
   ===================== */

.section-cta-block {
  background: linear-gradient(135deg, rgba(255, 45, 107, 0.1) 0%, rgba(196, 104, 122, 0.05) 100%);
  border-top: 1px solid rgba(255, 45, 107, 0.15);
  border-bottom: 1px solid rgba(255, 45, 107, 0.15);
}

.cta-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-content > p {
  color: rgba(255, 248, 245, 0.7);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input:focus {
  border-color: var(--hot-pink);
}

.cta-form input::placeholder {
  color: rgba(255, 248, 245, 0.3);
}

.cta-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.4);
  margin-top: 16px;
}

.cta-success {
  font-size: 1.1rem;
  color: var(--hot-pink);
  font-weight: 600;
  padding: 20px 0;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 248, 245, 0.5);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--muted-rose);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 248, 245, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--off-white);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.3);
}

/* =====================
   SHOP PAGE
   ===================== */

.shop-hero {
  padding: 140px 24px 40px;
  text-align: center;
}

.shop-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.shop-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 248, 245, 0.6);
}

.shop-content {
  padding: 40px 24px 100px;
}

.shop-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  color: rgba(255, 248, 245, 0.7);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--off-white);
}

.filter-btn.active {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  color: white;
}

/* =====================
   PRODUCT DETAIL
   ===================== */

.product-detail {
  padding: 120px 24px 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-area {
  position: relative;
}

.product-image-main {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-emoji-large {
  font-size: 8rem;
}

.product-badge-detail {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--hot-pink);
  color: white;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
}

.product-info-area {
  padding-top: 20px;
}

.breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255, 248, 245, 0.5);
  margin-bottom: 20px;
  transition: color 0.2s;
}

.breadcrumb:hover {
  color: var(--hot-pink);
}

.product-category-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted-rose);
  margin-bottom: 8px;
}

.product-name {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-tagline-detail {
  font-size: 1.05rem;
  color: rgba(255, 248, 245, 0.6);
  margin-bottom: 24px;
  line-height: 1.5;
  font-style: italic;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white);
}

.price-compare {
  font-size: 1.1rem;
  color: rgba(255, 248, 245, 0.4);
  text-decoration: line-through;
}

.product-description-full {
  margin-bottom: 32px;
}

.product-description-full p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 248, 245, 0.7);
  margin-bottom: 12px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 4px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--off-white);
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-value {
  width: 36px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.btn-add-to-cart {
  flex: 1;
  padding: 16px 32px;
  font-size: 1rem;
}

.product-meta {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-meta p {
  font-size: 0.9rem;
  color: rgba(255, 248, 245, 0.6);
  margin-bottom: 8px;
}

.related-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.related-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

/* =====================
   CART PAGE
   ===================== */

.cart-section {
  padding: 120px 24px 80px;
}

.cart-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.cart-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.cart-item-emoji {
  font-size: 2rem;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--off-white);
  transition: color 0.2s;
}

.cart-item-name:hover {
  color: var(--hot-pink);
}

.cart-item-tagline {
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.4);
  margin-top: 4px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 248, 245, 0.8);
  margin-top: 8px;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-subtotal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 248, 245, 0.4);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--hot-pink);
}

/* Cart Summary */
.summary-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255, 248, 245, 0.7);
}

.summary-total {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 24px;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}

.shipping-free {
  color: #22c55e;
  font-weight: 600;
}

.btn-checkout {
  width: 100%;
  margin-bottom: 12px;
  padding: 16px;
  font-size: 1rem;
}

.summary-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.4);
  margin-bottom: 16px;
}

.continue-shopping {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 248, 245, 0.5);
  transition: color 0.2s;
}

.continue-shopping:hover {
  color: var(--hot-pink);
}

/* Cart Empty */
.cart-empty {
  text-align: center;
  padding: 60px 0;
}

.empty-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

.cart-empty h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cart-empty p {
  color: rgba(255, 248, 245, 0.5);
  margin-bottom: 24px;
}

/* Order Success */
.order-success {
  text-align: center;
  padding: 60px 0;
}

.order-success h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.order-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--hot-pink);
  font-weight: 600;
  margin-bottom: 16px;
}

.order-total {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0 24px;
}

.success-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* =====================
   SUCCESS PAGE
   ===================== */

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.success-content {
  text-align: center;
  max-width: 500px;
}

.success-emoji-big {
  font-size: 5rem;
  margin-bottom: 24px;
}

.success-content h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 248, 245, 0.6);
  margin-bottom: 32px;
}

.success-details {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.success-details p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.success-details p:last-child {
  margin-bottom: 0;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* =====================
   MODAL
   ===================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal {
  background: var(--deep-plum);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 248, 245, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal > p {
  color: rgba(255, 248, 245, 0.6);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 248, 245, 0.8);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--hot-pink);
}

.modal-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.4);
  margin-top: 16px;
  text-align: center;
}

/* =====================
   TOAST
   ===================== */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--deep-plum);
  border: 1px solid var(--hot-pink);
  color: var(--off-white);
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease;
  z-index: 300;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* =====================
   LOADING & EMPTY STATES
   ===================== */

.loading-state {
  text-align: center;
  padding: 60px 0;
  color: rgba(255, 248, 245, 0.4);
  font-size: 1rem;
  grid-column: 1 / -1;
}

.error-state {
  text-align: center;
  padding: 60px 0;
  color: var(--muted-rose);
  grid-column: 1 / -1;
}

.error-state a {
  color: var(--hot-pink);
  text-decoration: underline;
}

.empty-state {
  text-align: center;
  padding: 60px 0;
  color: rgba(255, 248, 245, 0.4);
  grid-column: 1 / -1;
}

.empty-shop {
  text-align: center;
  padding: 60px 0;
}

.empty-shop .empty-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-controls {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-form {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}
