/* ══════════════════════════════════════════════════════════════
   SANTA FLORA | Floricultura & Presentes — Ivoti RS
   Premium flower shop — navy & gold theme v2.0
   ══════════════════════════════════════════════════════════════ */

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

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #faf9f7;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:        #0f1923;
  --navy-mid:    #162234;
  --navy-light:  #1e2f45;
  --petrol:      #1d3a5c;
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #a07840;
  --gold-bg:     rgba(201,169,110,.09);
  --cream:       #f8f5ef;
  --cream-dark:  #ede8df;
  --white:       #ffffff;
  --text-dark:   #0f1923;
  --text-mid:    #4a5568;
  --text-muted:  #718096;
  --text-light:  rgba(255,255,255,.8);
  --green:       #2e7d32;
  --green-light: #e8f5e9;
  --gray-100:    #f7f8fa;
  --gray-200:    #edf0f4;
  --gray-300:    #d8dde5;
  --gray-500:    #8896a8;
  --gray-700:    #4a5568;
  --gray-900:    #1a202c;
  --radius-sm:   4px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(15,25,35,.06);
  --shadow:      0 6px 24px rgba(15,25,35,.10);
  --shadow-lg:   0 16px 48px rgba(15,25,35,.14);
  --transition:  all .25s ease;
  --nav-h:       72px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem);    letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .78rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,.4);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15,25,35,.35);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-green {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-green:hover {
  background: #1da855;
  border-color: #1da855;
  transform: translateY(-1px);
}
.btn-danger { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; }
.btn-sm  { padding: 8px 16px; font-size: .72rem; }
.btn-lg  { padding: 15px 36px; font-size: .8rem; }
.btn-full { width: 100%; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(201,169,110,.14);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
  line-height: 1.1;
  display: block;
}
.nav-logo-sub {
  font-size: .58rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .18em;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  align-items: center;
}
.nav-links li a {
  color: rgba(255,255,255,.6);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 1rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: color .2s;
  font-weight: 400;
}
.nav-links li a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid rgba(201,169,110,.3);
  color: rgba(201,169,110,.8);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.cart-btn svg { width: 15px; height: 15px; }
.cart-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .6rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px; right: -6px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { width: 20px; height: 1px; background: rgba(255,255,255,.6); display: block; transition: var(--transition); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1490750967868-88df5691cc6e?w=1600&q=80') center/cover no-repeat;
  opacity: .12;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,.97) 0%, rgba(22,34,52,.85) 55%, rgba(29,58,92,.55) 100%);
  pointer-events: none;
}
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.28);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: .98rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,.14);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .06em; margin-top: .3rem; }
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem 3rem 1.5rem;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,.18);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(201,169,110,.06);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative; z-index: 1;
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,25,35,.2) 0%, rgba(29,58,92,.08) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-card {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  background: rgba(15,25,35,.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,.22);
  border-radius: var(--radius-sm);
  padding: .85rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 300px;
  white-space: nowrap;
  z-index: 3;
  animation: float-center 4s ease-in-out infinite;
}
.hero-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.hero-card-title { font-weight: 600; font-size: .82rem; color: #fff; }
.hero-card-sub   { font-size: .7rem; color: rgba(255,255,255,.45); }
.hero-card-badge {
  margin-left: auto;
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,.28);
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Image placeholder & error */
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--petrol) 60%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-img-placeholder { font-size: 3rem; opacity: .3; z-index: 1; }
.product-img-wrap img { position: relative; z-index: 1; object-fit: cover; width: 100%; height: 100%; }
.product-img-wrap img.img-error { display: none; }
.product-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 25, 35, .55);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  cursor: pointer;
}
.product-card:hover .product-img-overlay { opacity: 1; }
.modal-photo { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--petrol) 100%); display: flex; align-items: center; justify-content: center; }
.modal-photo img.img-error { display: none; }
.cart-thumb {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-mid), var(--petrol));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; font-size: 1.5rem; position: relative;
}
.cart-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

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

/* ─── SECTION LAYOUT ─────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-gray { background: var(--cream); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}
.section-tag-white { color: rgba(255,255,255,.45); }
.section-tag-green { color: var(--green); }
.section-title { margin-bottom: .65rem; }
.section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}
.section-dark .section-sub   { color: rgba(255,255,255,.48); }
.section-dark .section-title { color: #fff; }

/* ─── CATEGORY PILLS ─────────────────────────────────────────── */
.cat-scroll {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding: .5rem .25rem 1rem;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: .76rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: .03em;
}
.cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-bg);
  transform: translateY(-1px);
}

/* ─── PRODUCT GRID ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ─── PRODUCT CARD ───────────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,.3);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-wrap img { transition: transform .4s ease; }
.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat {
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
  font-weight: 600;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.25;
}
.product-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: .75rem;
  flex: 1;
  font-weight: 300;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.product-price-from { font-size: .65rem; color: var(--text-muted); font-weight: 400; display: block; font-family: 'Inter', sans-serif; }
.product-btns { display: flex; gap: .5rem; }
.badge-delivery {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-featured {
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(15,25,35,.8);
  color: var(--gold);
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,.25);
  z-index: 2;
  backdrop-filter: blur(6px);
}

/* ─── FEATURES ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(201,169,110,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(201,169,110,.05);
  border-color: rgba(201,169,110,.28);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.feature-text { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.65; font-weight: 300; }

/* ─── INFO GRID ──────────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(201,169,110,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.6; }
.info-title { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; font-weight: 600; }
.info-text { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.7; font-weight: 300; }
.info-text a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: rgba(201,169,110,.28); }
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--petrol));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(201,169,110,.18);
}
.testimonial-name { font-size: .82rem; font-weight: 600; color: var(--navy); }
.testimonial-loc  { font-size: .72rem; color: var(--text-muted); }

/* ─── CATALOG HERO ───────────────────────────────────────────── */
.catalog-hero {
  background: var(--navy-mid);
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,.1);
  position: relative;
  overflow: hidden;
}
.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1490750967868-88df5691cc6e?w=1600&q=80') center/cover no-repeat;
  opacity: .07;
}
.catalog-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); position: relative; z-index: 1; }
.catalog-hero p  { color: rgba(255,255,255,.45); margin-top: .65rem; font-weight: 300; font-size: .92rem; position: relative; z-index: 1; }

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--cream-dark);
  padding: .85rem 0;
  box-shadow: 0 2px 8px rgba(15,25,35,.06);
}
.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-search {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: .55rem 1rem;
  font-size: .84rem;
  width: 220px;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
  background: var(--cream);
}
.filter-search:focus { border-color: var(--gold); }
.filter-pills { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-pill {
  padding: .45rem .9rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  background: var(--cream);
  transition: var(--transition);
  letter-spacing: .04em;
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-pill.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ─── CATALOG MAIN ───────────────────────────────────────────── */
.catalog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(201,169,110,.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .2rem;
}
.footer-brand-sub {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1rem;
  display: block;
}
.footer-desc { font-size: .8rem; line-height: 1.75; color: rgba(255,255,255,.4); font-weight: 300; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255,255,255,.22);
  gap: 1rem;
}

/* ─── WA FLOAT ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ─── OVERLAY ────────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,25,35,.72);
  backdrop-filter: blur(4px);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

/* ─── CART SIDEBAR ───────────────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  max-width: 95vw;
  background: #fff;
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(15,25,35,.18);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-top {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201,169,110,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
}
.cart-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
}
.cart-close-btn { background: none; border: none; color: rgba(255,255,255,.55); font-size: 1.1rem; cursor: pointer; padding: 4px; transition: color .2s; }
.cart-close-btn:hover { color: #fff; }
.cart-items-wrap { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); font-size: .9rem; }
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: .75rem;
  align-items: start;
  padding: .85rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; flex-direction: column; gap: .2rem; }
.cart-item-name    { font-size: .85rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.cart-item-variant { font-size: .72rem; color: var(--text-muted); }
.cart-item-addons  { font-size: .7rem; color: var(--text-muted); }
.cart-item-price   { font-size: .95rem; font-weight: 700; color: var(--gold-dark); font-family: 'Cormorant Garamond', serif; }
.cart-qty { display: flex; align-items: center; gap: .4rem; margin-top: .35rem; }
.cart-qty-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; line-height: 1;
  transition: var(--transition); color: var(--navy);
}
.cart-qty-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cart-qty-num { font-size: .82rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--gray-500); cursor: pointer; font-size: .8rem; padding: 2px; transition: color .2s; }
.cart-remove:hover { color: #dc2626; }
.cart-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--cream-dark); background: var(--cream); }
.cart-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-mid); margin-bottom: .4rem; }
.cart-row.total { font-weight: 700; font-size: 1rem; color: var(--navy); margin-top: .5rem; padding-top: .5rem; border-top: 1px solid var(--cream-dark); }

/* ─── PRODUCT MODAL ──────────────────────────────────────────── */
.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(15,25,35,.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-wrap.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 860px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 32px 80px rgba(15,25,35,.4);
  border: 1px solid rgba(201,169,110,.1);
}
.modal-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.modal-close-btn {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 32px; height: 32px;
  background: rgba(15,25,35,.7);
  border: none; border-radius: 50%;
  color: #fff; font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 10;
}
.modal-close-btn:hover { background: var(--navy); }
.modal-body { padding: 2rem; display: flex; flex-direction: column; gap: .75rem; overflow-y: auto; }
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--navy); line-height: 1.1;
}
.modal-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }
.modal-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.modal-label { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: .25rem; }
.sizes-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: .5rem; }
.size-btn {
  padding: .6rem .75rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; transition: var(--transition); text-align: center;
}
.size-btn:hover { border-color: var(--gold); }
.size-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.size-btn-name  { font-size: .72rem; font-weight: 500; display: block; }
.size-btn-price { font-size: .68rem; color: var(--text-muted); display: block; }
.size-btn.active .size-btn-price { color: rgba(255,255,255,.55); }
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.addon-btn {
  padding: .6rem .75rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; transition: var(--transition);
  text-align: left; display: flex; align-items: center; gap: .5rem; font-size: .78rem;
}
.addon-btn:hover { border-color: var(--gold); }
.addon-btn.active { background: var(--gold-bg); border-color: var(--gold); }
.qty-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0; border-top: 1px solid var(--cream-dark);
}
.qty-box-label { font-size: .8rem; color: var(--text-mid); }
.qty-controls  { display: flex; align-items: center; gap: .75rem; }
.qty-ctrl-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gray-300); background: #fff; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-ctrl-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.qty-num { font-size: 1rem; font-weight: 600; min-width: 24px; text-align: center; }
.modal-total { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--cream-dark); padding-top: .75rem; }
.modal-total-label { font-size: .82rem; color: var(--text-mid); }
.modal-total-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); }

/* ─── FORM ELEMENTS ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .72rem; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; letter-spacing: .05em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .88rem; color: var(--text-dark);
  background: #fff; outline: none; transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-mid); cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── CHECKOUT ───────────────────────────────────────────────── */
.checkout-wrap { min-height: 100vh; padding-top: var(--nav-h); background: var(--cream); }
.checkout-inner {
  max-width: 960px; margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 2rem; align-items: start;
}
.checkout-form-wrap {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-sm);
}
.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy);
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.checkout-section-title {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin: 1.5rem 0 .75rem;
}
.order-type-btns { display: flex; gap: .75rem; margin-bottom: 1rem; }
.order-type-btn {
  flex: 1; padding: .75rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: #fff; cursor: pointer;
  font-size: .82rem; font-weight: 500;
  color: var(--text-mid); transition: var(--transition); text-align: center;
}
.order-type-btn.active { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-bg); font-weight: 600; }
.checkout-summary {
  background: #fff; border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.co-totals { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .75rem; }
.co-item { display: flex; align-items: flex-start; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--gray-200); }
.co-item:last-child { border-bottom: none; }
.co-item-info { flex: 1; font-size: .82rem; color: var(--text-mid); }
.co-item-name  { font-weight: 600; color: var(--navy); font-size: .85rem; }
.co-item-price { font-size: .88rem; color: var(--gold-dark); font-weight: 700; font-family: 'Cormorant Garamond', serif; white-space: nowrap; }
.co-total-row  { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-mid); padding: .25rem 0; }
.co-total-row.grand { font-weight: 700; font-size: 1rem; color: var(--navy); padding-top: .75rem; border-top: 1px solid var(--cream-dark); margin-top: .5rem; }

/* ─── SKELETON ───────────────────────────────────────────────── */
@keyframes skeleton-pulse { 0%,100%{opacity:1} 50%{opacity:.45} }
.skeleton-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--cream-dark);
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}
.sk-img { aspect-ratio: 4/3; background: var(--cream-dark); }
.skeleton-body { padding: 1rem; }
.sk-line     { height: 13px; background: var(--cream-dark); border-radius: 3px; margin-bottom: 8px; }
.sk-line-sm  { height: 10px; background: var(--cream-dark); border-radius: 3px; width: 60%; margin-bottom: 8px; }
.sk-price    { height: 20px; background: var(--cream-dark); border-radius: 3px; width: 40%; margin-bottom: 12px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 2rem 2rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201,169,110,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { height: 46px; padding: 0 .5rem; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-photo { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 16/9; }
  .checkout-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-subtitle { max-width: 100%; }
  .addons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .filter-search { width: 100%; }
  .nav-inner { padding: 0 1rem; }
}
