/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --sage:       #6B8C6B;
  --sage-dark:  #4A6B4A;
  --sage-light: #EDF2ED;
  --gold:       #C9A84C;
  --gold-light: #F7F0DC;
  --cream:      #FAF7F2;
  --dark:       #1E1E1E;
  --charcoal:   #2D2D2D;
  --muted:      #7A7A7A;
  --border:     #D6E4D6;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(107,140,107,0.12);
  --shadow-lg:  0 12px 48px rgba(107,140,107,0.18);
  --radius:     12px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: var(--transition);
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--sage-dark); letter-spacing: 3px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--charcoal);
  position: relative; padding-bottom: 4px;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta {
  background: var(--sage); color: var(--white) !important;
  padding: 8px 20px !important; border-radius: 50px;
}
.nav-cta:hover { background: var(--sage-dark) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--charcoal);
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white); z-index: 998;
  padding: 1.5rem 5%; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--charcoal);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--sage); color: var(--white);
  box-shadow: 0 4px 16px rgba(107,140,107,0.3);
}
.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 6px 24px rgba(107,140,107,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage); color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: #b8942e;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

/* ── Section Titles ── */
.section-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--sage-dark);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.95rem; color: var(--muted);
  max-width: 520px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Divider ── */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 1.5rem;
}
.text-center .divider { margin: 1rem auto 1.5rem; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #f0f4f0 0%, #faf7f2 50%, #f5efe6 100%);
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,140,107,0.08), transparent);
}
.hero-circle-1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.hero-circle-2 { width: 400px; height: 400px; bottom: -50px; left: -100px; }
.hero-left {
  display: flex; align-items: center;
  padding: 60px 5% 60px 8%;
  position: relative; z-index: 1;
}
.hero-content { position: relative; z-index: 1; max-width: 580px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--sage-dark); margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 420px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--sage-dark);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── Hero Right Image — responsive ── */
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* keeps old .hero-image class working too */
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
}
.hero-badge {
  position: absolute; bottom: 60px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-badge-icon { font-size: 1.5rem; }
.hero-badge-text { font-size: 0.75rem; font-weight: 600; color: var(--sage-dark); }
.hero-badge-sub { font-size: 0.7rem; color: var(--muted); }

/* ── Categories Strip ── */
.categories-strip {
  background: var(--sage-dark); padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; overflow-x: auto;
}
.cat-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; cursor: pointer;
  transition: var(--transition);
}
.cat-item:hover { transform: translateY(-2px); }
.cat-icon { font-size: 1.2rem; }
.cat-name {
  font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  font-weight: 500; transition: var(--transition);
}
.cat-item:hover .cat-name { color: var(--gold); }

/* ── Featured / Products ── */
.section { padding: 80px 5%; }
.section-header { margin-bottom: 3rem; }

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

/* ── Product Card ── */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sage-light);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.product-badge.sold { background: var(--muted); }
.product-badge.new { background: var(--sage); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(74,107,74,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 1.2rem 1.2rem 1.4rem; }
.product-category {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem; font-weight: 500;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--sage-dark); margin-bottom: 0.3rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 0.8rem; line-height: 1.5;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--sage-dark);
}
.product-sizes {
  display: flex; gap: 4px;
}
.size-dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 600; color: var(--muted);
}
.product-order-btn {
  width: 100%; margin-top: 1rem;
  background: var(--sage); color: var(--white);
  border: none; padding: 10px;
  border-radius: 50px; font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.product-order-btn:hover { background: var(--sage-dark); }
.product-order-btn.sold-btn { background: var(--muted); cursor: not-allowed; }

/* ── Filter Bar ── */
.filter-bar {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 0.8rem;
  margin-bottom: 2.5rem; padding: 1.2rem 1.5rem;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-right: 0.5rem;
}
.filter-btn {
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.5px; cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent; color: var(--charcoal);
  transition: var(--transition); font-family: 'Jost', sans-serif;
}
.filter-btn:hover { border-color: var(--sage); color: var(--sage-dark); }
.filter-btn.active {
  background: var(--sage); color: var(--white);
  border-color: var(--sage);
}
.filter-count {
  margin-left: auto; font-size: 0.8rem; color: var(--muted);
}
.no-products {
  grid-column: 1/-1; text-align: center;
  padding: 4rem 0; color: var(--muted);
}
.no-products p { font-size: 0.9rem; margin-top: 0.5rem; }

/* ── About strip ── */
.about-strip {
  background: var(--sage-dark); padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.about-strip .section-title, .about-strip .section-label { color: rgba(255,255,255,0.9); }
.about-strip .section-label { color: var(--gold); }
.about-strip .section-sub { color: rgba(255,255,255,0.65); max-width: 100%; }
.about-strip .divider { background: linear-gradient(90deg, var(--gold), transparent); }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 1rem;
}
.about-feat-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.about-feat-title { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.about-feat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.about-image-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/5;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-tag {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow);
  text-align: center;
}
.about-image-tag strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--sage-dark);
}
.about-image-tag span { font-size: 0.7rem; color: var(--muted); letter-spacing: 1px; }

/* ── Testimonials ── */
.testimonials { padding: 80px 5%; background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.8rem; border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  font-style: italic; color: var(--charcoal); line-height: 1.6;
  margin-bottom: 1.2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-light); display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--sage-dark); }
.testimonial-loc { font-size: 0.75rem; color: var(--muted); }

/* ── Contact / Order CTA ── */
.order-cta {
  padding: 80px 5%; text-align: center;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--sage-light) 100%);
}
.order-cta .section-title { color: var(--sage-dark); }
.order-cta .section-sub { margin: 0 auto 2.5rem; }
.order-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact page ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; padding: 80px 5%;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-value { font-size: 0.95rem; font-weight: 500; color: var(--charcoal); }
.contact-whatsapp-big {
  background: var(--sage-dark); border-radius: var(--radius);
  padding: 2.5rem; text-align: center; color: var(--white);
}
.contact-whatsapp-big h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; margin-bottom: 0.5rem;
}
.contact-whatsapp-big p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Footer ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
  letter-spacing: 3px; margin-bottom: 0.5rem;
}
.footer-brand-tag { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Floating WhatsApp ── */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}
.floating-wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 5% 60px;
  background: linear-gradient(135deg, var(--sage-light), var(--cream));
  text-align: center;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1rem;
  font-size: 0.8rem; color: var(--muted);
}
.breadcrumb a { color: var(--sage); }
.breadcrumb span { color: var(--muted); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-strip { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Nav — bigger touch targets */
  nav { padding: 0 4%; height: 62px; }

  /* Mobile menu — full width, bigger links */
  .mobile-menu {
    padding: 1rem 4%;
    gap: 0;
  }
  .mobile-menu a {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  /* Categories strip — scrollable */
  .categories-strip {
    gap: 1.2rem;
    justify-content: flex-start;
    padding: 1rem 4%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .categories-strip::-webkit-scrollbar { display: none; }
  .cat-name { font-size: 0.72rem; }

  /* Products grid — 2 columns on mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  /* Product card — compact on mobile */
  .product-info { padding: 0.8rem; }
  .product-name { font-size: 0.95rem; }
  .product-price { font-size: 1rem; }
  .product-order-btn { padding: 8px; font-size: 0.72rem; }
  .product-desc { display: none; } /* hide desc on mobile cards */

  /* Section padding — tighter on mobile */
  .section { padding: 50px 4%; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* About strip */
  .about-strip { padding: 50px 4%; gap: 2rem; }
  .about-features { gap: 1rem; }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 40px 4% 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Filter bar on shop page */
  .filter-bar { gap: 0.4rem; padding: 1rem; }
  .filter-btn { padding: 6px 12px; font-size: 0.75rem; }

  /* Testimonials — single column */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Order CTA */
  .order-cta { padding: 50px 4%; }
  .order-cta-buttons { flex-direction: column; align-items: stretch; }
  .order-cta-buttons .btn { justify-content: center; }

  /* Contact page */
  .contact-grid { padding: 40px 4%; }

  /* Floating WhatsApp — bigger on mobile */
  .floating-wa {
    width: 62px;
    height: 62px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 16px;
  }

  /* Modal — full screen on mobile */
  #product-modal { padding: 0; align-items: flex-end; }
  .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-images { padding: 1rem; }
  .modal-main-img-wrap { aspect-ratio: 4/3; }
  .modal-info { padding: 0 1rem 2rem; }
  .modal-name { font-size: 1.4rem; }
  .modal-price { font-size: 1.5rem; }

  /* Process grid — 2 columns */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .process-num { font-size: 2.5rem; }

  /* Instagram grid — 3 columns */
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.3rem; }

  /* Collection grid — single column */
  .collection-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .collection-card.tall { aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════════════════════
   PRODUCT DETAIL MODAL
══════════════════════════════════════════════════════ */
#product-modal {
  position:fixed;inset:0;z-index:2000;
  display:flex;align-items:center;justify-content:center;
  padding:1rem;
  visibility:hidden;opacity:0;transition:opacity 0.3s ease,visibility 0.3s ease;
}
#product-modal.open{visibility:visible;opacity:1;}
.modal-backdrop{position:absolute;inset:0;background:rgba(30,30,30,0.65);backdrop-filter:blur(4px);}
.modal-content{
  position:relative;z-index:1;background:var(--white);
  border-radius:16px;width:100%;max-width:900px;max-height:92vh;overflow-y:auto;
  box-shadow:0 24px 80px rgba(0,0,0,0.3);
  transform:translateY(30px);transition:transform 0.3s ease;
}
#product-modal.open .modal-content{transform:translateY(0);}
.modal-close{
  position:sticky;top:12px;float:right;margin:12px 12px 0 0;
  width:36px;height:36px;border-radius:50%;border:none;
  background:var(--sage-light);color:var(--sage-dark);font-size:1rem;
  cursor:pointer;z-index:10;transition:var(--transition);
}
.modal-close:hover{background:var(--sage);color:var(--white);}
.modal-grid{display:grid;grid-template-columns:1fr 1fr;clear:both;}
.modal-images{padding:1.5rem;display:flex;flex-direction:column;gap:0.8rem;}
.modal-main-img-wrap{position:relative;border-radius:12px;overflow:hidden;aspect-ratio:3/4;background:var(--sage-light);}
.modal-main-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease;}
.modal-main-img-wrap:hover img{transform:scale(1.04);}
.modal-sold-badge,.modal-new-badge{position:absolute;top:12px;left:12px;padding:5px 12px;border-radius:50px;font-size:0.72rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;}
.modal-sold-badge{background:var(--muted);color:var(--white);}
.modal-new-badge{background:var(--sage);color:var(--white);}
.modal-thumbs{display:flex;gap:0.5rem;flex-wrap:wrap;}
.modal-thumb{width:64px;height:80px;object-fit:cover;border-radius:8px;cursor:pointer;border:2px solid transparent;transition:var(--transition);opacity:0.7;}
.modal-thumb.active,.modal-thumb:hover{border-color:var(--sage);opacity:1;}
.modal-info{padding:2rem 2rem 2rem 1rem;display:flex;flex-direction:column;gap:0;}
.modal-category{font-size:0.72rem;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:0.4rem;}
.modal-name{font-family:'Cormorant Garamond',serif;font-size:1.9rem;font-weight:600;color:var(--sage-dark);line-height:1.2;margin-bottom:1rem;}
.modal-price-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:1rem;}
.modal-price{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:700;color:var(--sage-dark);}
.modal-price-original{font-size:1rem;color:var(--muted);text-decoration:line-through;}
.modal-discount-badge{background:#d4edda;color:#155724;font-size:0.72rem;font-weight:700;padding:3px 10px;border-radius:50px;letter-spacing:0.5px;}
.modal-divider{height:1px;background:var(--border);margin:0.8rem 0;}
.modal-desc{font-size:0.9rem;color:var(--muted);line-height:1.7;margin-bottom:1.2rem;}
.modal-detail-grid{display:flex;flex-direction:column;gap:0.6rem;margin-bottom:1.2rem;background:var(--sage-light);padding:1rem;border-radius:10px;}
.modal-detail-item{display:flex;flex-direction:column;gap:2px;}
.modal-detail-label{font-size:0.72rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--sage-dark);}
.modal-detail-val{font-size:0.85rem;color:var(--charcoal);line-height:1.5;}
.tag-chip{display:inline-block;background:var(--white);border:1px solid var(--border);color:var(--muted);font-size:0.7rem;padding:2px 8px;border-radius:50px;margin:2px;}
.modal-section{margin-bottom:1.2rem;}
.modal-section-label{font-size:0.75rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--charcoal);margin-bottom:0.6rem;}
.size-options,.color-options{display:flex;flex-wrap:wrap;gap:0.5rem;}
.size-option-btn,.color-option-btn{
  padding:7px 14px;border-radius:8px;border:1.5px solid var(--border);
  font-family:'Jost',sans-serif;font-size:0.82rem;font-weight:500;
  cursor:pointer;background:transparent;color:var(--charcoal);transition:var(--transition);
}
.size-option-btn:hover,.color-option-btn:hover{border-color:var(--sage);color:var(--sage-dark);}
.size-option-btn.active,.color-option-btn.active{background:var(--sage);color:var(--white);border-color:var(--sage);}
.modal-order-btn{
  width:100%;padding:14px;border:none;border-radius:50px;
  background:#25D366;color:var(--white);
  font-family:'Jost',sans-serif;font-size:0.9rem;font-weight:600;
  letter-spacing:1px;cursor:pointer;transition:var(--transition);margin-top:0.5rem;
  box-shadow:0 4px 16px rgba(37,211,102,0.35);
}
.modal-order-btn:hover:not(:disabled){background:#1ebe5d;transform:translateY(-2px);}
.modal-order-note{font-size:0.75rem;color:var(--muted);text-align:center;margin-top:0.6rem;line-height:1.5;}
.product-badge.sale{background:var(--gold);}
@media(max-width:700px){
  .modal-grid{grid-template-columns:1fr;}
  .modal-info{padding:0 1.5rem 1.5rem;}
  .modal-name{font-size:1.5rem;}
}
