/* =============================================
   AAHA BAG — style.css
   Aesthetic: Warm luxury editorial + soft femininity
   ============================================= */

:root {
  --cream: #FAF7F2;
  --warm-white: #FDF9F4;
  --sand: #E8DDD0;
  --gold: #C9956B;
  --gold-deep: #A0714F;
  --blush: #F5DDD0;
  --text: #2A1F1A;
  --text-mid: #6B5A50;
  --text-soft: #A8967F;
  --black: #1A1009;
  --accent: #D4A843;
  --green: #4A7C59;
  --error: #D4534A;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(42,31,26,0.08);
  --shadow-lg: 0 12px 48px rgba(42,31,26,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
.cormorant, h1, h2, h3, .logo-name, .hero-title, .section-title {
  font-family: 'Cormorant Garamond', serif;
}

em { font-style: italic; color: var(--gold); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,149,107,0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(42,31,26,0.08);
}

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

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--gold);
  font-size: 22px;
  animation: spin-slow 8s linear infinite;
}

.logo-mark.large { font-size: 32px; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.logo-name.large { font-size: 28px; }

.logo-tag {
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

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

.icon-btn {
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover { background: var(--blush); color: var(--gold); }

.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold);
  color: white;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-count.show { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Search Bar */
.search-bar {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid transparent;
  display: flex; align-items: center;
}

.search-bar.open {
  max-height: 60px;
  border-top-color: var(--sand);
}

.search-bar input {
  flex: 1;
  border: none;
  background: none;
  padding: 14px 24px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
}

.search-bar button {
  background: none; border: none; cursor: pointer;
  padding: 14px 20px;
  color: var(--text-soft);
  font-size: 16px;
  transition: var(--transition);
}

.search-bar button:hover { color: var(--gold); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--sand);
  gap: 4px;
}

.mobile-menu a {
  padding: 10px 4px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,149,107,0.1);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 40px 60px;
  max-width: 1200px; margin: 0 auto;
  position: relative;
  gap: 60px;
}

.hero-bg {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
}

.hero-circle {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}

.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F5DDD0, transparent);
  top: -100px; right: -100px;
  animation: float-circle 12s ease-in-out infinite;
}

.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #C9956B40, transparent);
  bottom: 0; left: -80px;
  animation: float-circle 15s ease-in-out infinite reverse;
}

.c3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #D4A84330, transparent);
  top: 40%; left: 40%;
  animation: float-circle 10s ease-in-out infinite 2s;
}

@keyframes float-circle {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-content {
  flex: 1;
  animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-visual {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 1s ease both 0.3s;
}

.hero-bag-showcase {
  position: relative;
  width: 380px; height: 380px;
}

.bag-float {
  position: absolute;
  font-size: 64px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  animation: bag-float 4s ease-in-out infinite;
}

.b1 { top: 10%; left: 20%; animation-delay: 0s; }
.b2 { top: 50%; right: 15%; animation-delay: 1s; }
.b3 { bottom: 15%; left: 10%; animation-delay: 2s; }
.b4 { top: 20%; right: 30%; animation-delay: 1.5s; }

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

.hero-badge {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  opacity: 0.18;
  white-space: nowrap;
  pointer-events: none;
}

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,149,107,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,107,0.4);
}

.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--text-mid);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--sand);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--blush);
}

/* ===================== OFFERS BAR ===================== */
.offers-bar {
  background: var(--text);
  padding: 0 40px;
  display: flex; gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}

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

.offer-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1; min-width: 180px;
  white-space: nowrap;
}

.offer-item:last-child { border-right: none; }

.offer-icon { font-size: 22px; flex-shrink: 0; }

.offer-title {
  font-size: 13px; font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.offer-sub {
  font-size: 11px;
  color: rgba(250,247,242,0.5);
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

/* ===================== SHOP ===================== */
.shop-section {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
}

/* Filter Bar */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--sand);
  background: transparent;
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 2px 12px rgba(201,149,107,0.3);
}

/* Toolbar */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}

.product-count {
  font-size: 13px;
  color: var(--text-soft);
}

.sort-select {
  padding: 8px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  background: transparent;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}

.sort-select:focus { border-color: var(--gold); }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,149,107,0.12);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.5s ease both;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card.out-of-stock { opacity: 0.7; }

.card-image {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), var(--sand));
}

.card-emoji {
  font-size: 80px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.product-card:hover .card-emoji { transform: scale(1.12) rotate(-3deg); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--text);
  color: var(--cream);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-sale { background: #D4534A; }
.badge-new { background: var(--green); }
.badge-trending { background: #7B5EA7; }
.badge-premium { background: var(--gold); }
.badge-bestseller { background: var(--accent); }

.card-wishlist {
  position: absolute; top: 12px; right: 12px;
  background: white;
  border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
  opacity: 0; transform: scale(0.8);
}

.product-card:hover .card-wishlist { opacity: 1; transform: scale(1); }
.card-wishlist:hover { background: #FFF0F0; }
.card-wishlist.active { opacity: 1; transform: scale(1); color: #e74c3c; }

.out-of-stock-label {
  position: absolute; bottom: 10px;
  background: rgba(0,0,0,0.5); color: white;
  font-size: 10px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.card-body { padding: 16px 18px 18px; }

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.card-category {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.card-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}

.stars { color: var(--accent); font-size: 12px; }

.card-rating span {
  font-size: 12px;
  color: var(--text-soft);
}

.color-dots {
  display: flex; gap: 6px;
  margin-bottom: 14px;
}

.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform var(--transition);
}

.color-dot:hover { transform: scale(1.3); }

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

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

.price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--text);
}

.price-original {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: line-through;
}

.price-discount {
  font-size: 11px; font-weight: 700;
  color: #D4534A;
  background: #FDECEA;
  padding: 2px 6px; border-radius: 4px;
}

.add-to-cart {
  background: var(--text);
  color: white;
  border: none; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.add-to-cart:hover { background: var(--gold); transform: scale(1.1); }
.add-to-cart:disabled { background: var(--sand); cursor: not-allowed; }

/* ===================== ABOUT ===================== */
.about-section {
  background: var(--text);
  padding: 100px 24px;
}

.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-text .section-eyebrow { color: var(--gold); }
.about-text .section-title { color: var(--cream); }

.about-text p {
  color: rgba(250,247,242,0.65);
  font-size: 15px; line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p em { color: var(--gold); font-style: italic; }

.about-stats {
  display: flex; gap: 32px;
  margin-top: 36px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat span:last-child {
  font-size: 12px;
  color: rgba(250,247,242,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,149,107,0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.about-emoji-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 24px;
}

.about-emoji-grid span {
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}

.about-emoji-grid span:hover { transform: scale(1.3) rotate(10deg); }

.about-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic;
  color: rgba(250,247,242,0.7);
}

/* ===================== REVIEWS ===================== */
.reviews-section {
  padding: 100px 24px;
  max-width: 1100px; margin: 0 auto;
}

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

.review-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,149,107,0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition);
  animation: fadeInUp 0.5s ease both;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.review-stars { color: var(--accent); font-size: 16px; margin-bottom: 14px; }

.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before { content: '"'; font-size: 24px; color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.review-text::after { content: '"'; font-size: 24px; color: var(--gold); font-family: 'Cormorant Garamond', serif; }

.reviewer-info { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white;
  font-family: 'Cormorant Garamond', serif;
}

.reviewer-name { font-size: 14px; font-weight: 600; color: var(--text); }
.reviewer-loc { font-size: 11px; color: var(--text-soft); }

/* ===================== CONTACT ===================== */
.contact-section {
  background: linear-gradient(135deg, var(--blush), var(--sand));
  padding: 100px 24px;
}

.contact-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-text .section-title { margin-bottom: 24px; }

.contact-details {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 8px;
}

.contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-mid);
}

.contact-item span:first-child { font-size: 20px; flex-shrink: 0; }

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 20px;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-group label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  resize: vertical;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 4px; }

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

.footer-links h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===================== CART SIDEBAR ===================== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}

.cart-overlay.show { opacity: 1; pointer-events: auto; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: min(380px, 100vw);
  background: var(--warm-white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--sand);
}

.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
}

.cart-header h3 span {
  font-size: 14px; font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft);
}

.cart-header button {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text-soft);
  transition: color var(--transition);
  padding: 4px;
}

.cart-header button:hover { color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
}

.cart-item-emoji {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blush), var(--sand));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 13px; color: var(--text-soft);
}

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

.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%; border: 1.5px solid var(--sand);
  background: none; cursor: pointer;
  font-size: 14px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { border-color: var(--gold); background: var(--blush); color: var(--gold); }

.qty-num {
  font-size: 14px; font-weight: 600;
  min-width: 20px; text-align: center;
}

.remove-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-soft); font-size: 14px;
  padding: 4px; margin-left: 4px;
  transition: color var(--transition);
}

.remove-btn:hover { color: #D4534A; }

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-emoji { font-size: 56px; margin-bottom: 16px; }

.cart-empty h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--text);
  margin-bottom: 8px;
}

.cart-empty p { font-size: 14px; color: var(--text-soft); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--sand);
}

.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}

.cart-total span:first-child { font-size: 14px; font-weight: 600; color: var(--text-mid); }

.cart-total span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
}

/* ===================== PRODUCT MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

.modal-overlay.show { opacity: 1; pointer-events: auto; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%; z-index: 1400;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(700px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-modal.open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  background: white; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.modal-close:hover { background: #FFF0F0; color: #D4534A; }

.modal-content {
  display: grid; grid-template-columns: 1fr 1fr;
}

.modal-image {
  height: 320px;
  background: linear-gradient(135deg, var(--blush), var(--sand));
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  border-radius: var(--radius) 0 0 var(--radius);
}

.modal-info { padding: 32px; }

.modal-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--gold); color: white;
}

.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  margin-bottom: 6px;
}

.modal-cat {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-soft);
  margin-bottom: 14px;
}

.modal-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; font-size: 13px; color: var(--text-soft);
}

.modal-description {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 20px;
}

.modal-colors { margin-bottom: 20px; }

.modal-colors-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-mid); margin-bottom: 8px;
}

.modal-colors-row { display: flex; gap: 8px; }

.modal-color-dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform var(--transition);
}

.modal-color-dot:hover { transform: scale(1.15); }
.modal-color-dot.active { box-shadow: 0 0 0 2px var(--gold); }

.modal-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 24px;
}

.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 600;
}

.modal-original {
  font-size: 16px; color: var(--text-soft);
  text-decoration: line-through;
}

.modal-actions { display: flex; gap: 10px; }

.modal-qty {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  padding: 0 16px;
}

.modal-qty button {
  background: none; border: none; cursor: pointer;
  font-size: 18px; font-weight: 600;
  color: var(--text-mid);
  padding: 10px 0;
  transition: color var(--transition);
}

.modal-qty button:hover { color: var(--gold); }
.modal-qty span { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 32px; left: 50%; z-index: 9999;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 24px 60px;
    gap: 32px;
  }
  
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-bag-showcase { width: 280px; height: 280px; }
  .bag-float { font-size: 48px; }
  
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-image { border-radius: var(--radius) var(--radius) 0 0; height: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .offer-item { padding: 16px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-image { height: 160px; }
  .card-emoji { font-size: 56px; }
  .about-stats { gap: 20px; }
  .cart-sidebar { width: 100vw; }
}
