/* ============================================
   MopTop Store — Design System & Styles
   Brand: mint/cream/peach/coral/lavender
   ============================================ */

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

:root {
  --mint: #3ECFA0;
  --mint-light: #B8F0D8;
  --mint-glow: #2EBF90;
  --cream: #FFF8F0;
  --peach: #FFD6BA;
  --coral: #FF7F6B;
  --dark: #1A1A2E;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --lavender: #E8D5F5;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

.store-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.store-nav.scrolled {
  border-bottom-color: var(--border);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo span { color: var(--mint-glow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--dark); }

.cart-nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.cart-badge {
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge:empty,
.cart-badge[data-count="0"] { display: none; }

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

.shop-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 2rem;
  text-align: center;
}

.shop-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
}

.shop-hero h1 .highlight {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-hero > p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--mint);
  color: var(--dark);
}
.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: block;
  border: 1px solid rgba(0,0,0,0.03);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, #F5F0EA 100%);
  padding: 0;
  text-align: center;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-emoji {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
}

.product-emoji-fallback {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.new { background: var(--mint-glow); }
.product-badge.popular { background: var(--coral); }
.product-badge.premium { background: linear-gradient(135deg, #1A1A2E, #2D2D4E); }
.product-badge.fan-fave { background: var(--coral); }

.product-card-info {
  padding: 1.2rem 1.5rem 1.5rem;
}

.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.product-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.product-card-desc {
  font-size: 0.78rem;
  color: #6B7280;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

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

.product-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mint-glow);
}

.product-card-colors {
  display: flex;
  gap: 0.3rem;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}

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

.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-image {
  background: linear-gradient(135deg, var(--cream) 0%, #F5F0EA 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
}

.product-emoji-large {
  font-size: 10rem;
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.product-img-large {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.product-detail-info {
  padding-top: 1rem;
}

.product-detail-badge {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--mint-glow); }

.product-detail-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.product-detail-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mint-glow);
  margin-bottom: 1.5rem;
}

.product-detail-description {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.option-label .selected-value {
  font-weight: 400;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
}

.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 48px;
  height: 44px;
  padding: 0 0.8rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--dark);
}
.size-btn:hover {
  border-color: var(--dark);
}
.size-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.color-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.color-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--dark);
}
.color-btn:hover { border-color: var(--dark); }
.color-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.qty-btn:hover { background: var(--cream); }

.qty-value {
  width: 56px;
  height: 44px;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
}

.add-to-cart-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.add-to-cart-btn:hover {
  background: var(--mint-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 207, 160, 0.3);
}

.add-to-cart-btn.added {
  background: var(--mint-glow);
}

.product-detail-features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.product-detail-features h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--gray);
  padding-left: 1.5rem;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint-glow);
  font-weight: 600;
}

/* ============================================
   PRODUCT DETAIL — INTERNAL LINKS
   ============================================ */
.product-detail-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.product-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.product-link-card:hover {
  border-color: var(--mint);
  background: #f0fdf8;
  color: var(--mint-glow);
}

.product-link-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================
   PRODUCT DETAIL — SAMPLE KIT SECTION
   ============================================ */
.product-sample-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
}

.product-sample-inner {
  background: #1A1A2E;
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 700px) {
  .product-sample-inner { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-sample-section { padding: 0 1.5rem; }
}

.product-sample-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.product-sample-text p {
  color: #b0bec5;
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-sample-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-sample-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

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

.product-sample-form input,
.product-sample-form select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.product-sample-form input:focus,
.product-sample-form select:focus { border-color: #3ECFA0; }

.product-sample-form select option { background: #1A1A2E; color: #fff; }

.product-sample-btn {
  background: #3ECFA0;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.25rem;
}

.product-sample-btn:hover { opacity: 0.88; }

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

.cart-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2.5rem 4rem;
}

.cart-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.3rem;
}

.cart-subtitle {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cart-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.03);
}

.cart-item-emoji {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-details h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  font-size: 0.82rem;
  color: var(--gray-light);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.15s;
}
.cart-qty-btn:first-child { border-radius: 6px 0 0 6px; }
.cart-qty-btn:last-child { border-radius: 0 6px 6px 0; }
.cart-qty-btn:hover { background: var(--cream); }

.cart-qty-value {
  width: 40px;
  height: 32px;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--white);
}

.cart-item-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 70px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-light);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem;
  transition: color 0.15s;
}
.cart-item-remove:hover { color: var(--coral); }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.03);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.cart-summary-row.total {
  border-top: 2px solid var(--dark);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
}

.checkout-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.checkout-btn:hover {
  background: var(--mint-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 207, 160, 0.3);
}
.checkout-btn:disabled {
  background: var(--gray-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-empty h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-empty p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.shop-link-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.shop-link-btn:hover {
  background: var(--mint-glow);
  transform: translateY(-2px);
}

/* ============================================
   CHECKOUT / SUCCESS / EMAIL FORM
   ============================================ */

.checkout-form-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 2.5rem 4rem;
}

.checkout-form-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.3rem;
}

.checkout-form-section > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s;
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-review {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.order-review h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-review-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.order-review-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  border-top: 1.5px solid var(--border);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* Success Page */
.success-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.success-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-page .order-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--mint-glow);
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-page p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.store-footer {
  background: var(--dark);
  color: white;
  padding: 3.5rem 2.5rem 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-col .footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: white;
}
.footer-brand-col .footer-logo span { color: var(--mint); }

.footer-tagline {
  font-size: 0.88rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 260px;
}

.footer-social-links {
  display: flex;
  gap: 0.6rem;
}
.footer-social-links a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 0.2s;
}
.footer-social-links a:hover {
  background: var(--mint-glow);
  color: white;
}

.footer-nav-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: white;
}
.footer-nav-col ul {
  list-style: none;
}
.footer-nav-col li {
  margin-bottom: 0.6rem;
}
.footer-nav-col a {
  font-size: 0.88rem;
  color: #9CA3AF;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--mint); }

.footer-contact {
  font-size: 0.88rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}
.footer-contact a {
  color: #9CA3AF;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--mint); }

.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom-bar p {
  font-size: 0.78rem;
  color: #6B7280;
}
.footer-trust-signals {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-trust-signals span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #6B7280;
}
.footer-trust-signals svg {
  flex-shrink: 0;
}

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

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.2rem;
}

/* ============================================
   EMAIL CAPTURE
   ============================================ */

.email-capture {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 2rem;
}

.email-capture-inner {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.email-capture-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.08;
}

.email-capture-inner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 40%;
  width: 80px;
  height: 80px;
  background: var(--peach);
  border-radius: 50%;
  opacity: 0.1;
}

.email-capture-text {
  flex: 1;
  min-width: 0;
}

.email-capture-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.email-capture-text p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.email-capture-form {
  flex-shrink: 0;
  width: 380px;
}

.email-input-wrap {
  display: flex;
  gap: 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
}

.email-input-wrap:focus-within {
  border-color: var(--mint);
}

.email-input-wrap input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
}

.email-input-wrap input::placeholder {
  color: var(--gray-light);
}

.email-submit-btn {
  padding: 0.85rem 1.5rem;
  background: var(--mint-glow);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-submit-btn:hover {
  background: var(--mint);
}

.email-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.subscribe-msg {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: none;
  animation: fadeInUp 0.25s ease-out both;
}

.subscribe-msg.success {
  color: var(--mint-light);
  background: rgba(62, 207, 160, 0.1);
}

.subscribe-msg.error {
  color: #FFB3A7;
  background: rgba(255, 127, 107, 0.1);
}

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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1.5rem 3rem;
  }
  .product-detail-image {
    position: static;
    padding: 3rem 1rem;
  }
  .product-emoji-large { font-size: 7rem; }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    padding: 1rem 1.5rem 3rem;
  }
  .shop-hero { padding: 2rem 1.5rem 1.5rem; }
  .shop-hero h1 { font-size: 2.4rem; }
  .cart-page { padding: 1.5rem 1.5rem 3rem; }
  .cart-item {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
  .cart-item-price { grid-column: 2 / -1; }
}

@media (max-width: 600px) {
  .store-nav { padding: 1rem 1.2rem; }
  .nav-links { gap: 1rem; }
  .shop-hero h1 { font-size: 1.8rem; letter-spacing: -1px; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0.5rem 1rem 3rem;
  }
  .product-card-info { padding: 0.8rem 1rem 1rem; }
  .product-card-name { font-size: 0.92rem; }
  .product-emoji { font-size: 3.5rem; }
  .product-card-image { padding: 0; }
  .product-detail-info h1 { font-size: 1.6rem; }
  .product-detail-price { font-size: 1.3rem; }
  .cart-page h1 { font-size: 1.8rem; }
  .cart-item {
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
  }
  .cart-item-qty { grid-column: 1 / -1; justify-content: flex-start; }
  .cart-item-price { grid-column: 1 / -1; text-align: left; }
  .checkout-form-section { padding: 1.5rem 1.2rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .success-page { padding: 3rem 1.2rem; }
  .toast { bottom: 1rem; right: 1rem; left: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
  .footer-trust-signals { flex-wrap: wrap; }
  .store-footer { padding: 2.5rem 1.2rem 1.2rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card {
  animation: fadeInUp 0.4s ease-out both;
}

.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.2s; }
.product-card:nth-child(6) { animation-delay: 0.25s; }
.product-card:nth-child(7) { animation-delay: 0.3s; }
.product-card:nth-child(8) { animation-delay: 0.35s; }
.product-card:nth-child(9) { animation-delay: 0.4s; }
.product-card:nth-child(10) { animation-delay: 0.45s; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
