/* =============================================================
   Tulip Flowers — توليب  |  Shared stylesheet
   Luxury floral aesthetic: blush / cream fields, deep green
   accents, gold hairlines. RTL-first, mobile-first.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream:        #faf6f1;
  --cream-deep:   #f3ebe2;
  --blush:        #f6e3e0;
  --blush-deep:   #e9c7c2;
  --rose:         #c98b86;
  --brand:        #db5497;   /* logo pink — brand accent */
  --brand-deep:   #c43b80;
  --green:        #2f4a3c;   /* deep botanical green */
  --green-soft:   #5c7565;
  --gold:         #b89b5e;
  --charcoal:     #2a2522;
  --ink:          #423b35;
  --muted:        #8a7f76;
  --line:         #e7ddd2;
  --white:        #ffffff;

  /* Typography */
  --serif: "Playfair Display", "Noto Naskh Arabic", serif;
  --sans:  "Cairo", "Tajawal", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1280px;
  --gut: clamp(1rem, 4vw, 3rem);
  --radius: 14px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .5s;

  /* Surface */
  --shadow-sm: 0 4px 14px rgba(42, 37, 34, .06);
  --shadow-md: 0 8px 28px rgba(42, 37, 34, .09);
  --shadow:    0 14px 40px rgba(42, 37, 34, .10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--charcoal); }

/* Focus visibility for keyboard users */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Screen-reader only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.section-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head .eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.section-head p { color: var(--muted); margin-top: .75rem; font-size: 1.02rem; }

/* brand rule under eyebrow */
.rule { width: 48px; height: 2px; background: var(--brand); margin: .9rem auto 0; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.8rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.32); }
.btn-block { width: 100%; }
.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 241, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }

.logo { display: flex; align-items: center; gap: .55rem; }
.logo { gap: 0; }
.logo .mark { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.logo .word { display: none; }
.footer .logo .mark { width: 84px; height: 84px; }
.logo .word { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.logo .word small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .35em; color: var(--gold); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .98rem; font-weight: 600; color: var(--ink); position: relative; padding-block: .3rem;
}
.nav a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold); transition: width var(--dur) var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: .35rem; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; color: var(--charcoal);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-btn:hover { background: var(--blush); color: var(--green); }
.icon-btn svg { width: 20px; height: 20px; }

.lang-toggle {
  font-family: var(--sans); font-weight: 700; font-size: .82rem;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: .45rem .85rem; color: var(--charcoal);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.lang-toggle:hover { border-color: var(--gold); background: var(--white); }

.cart-icon { position: relative; }
.cart-icon .badge {
  position: absolute; top: 2px; inset-inline-end: 2px;
  background: var(--brand); color: #fff; font-size: .62rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center;
}

.hamburger { display: none; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column; padding: 1.5rem var(--gut);
}
[dir="rtl"] .mobile-nav { transform: translateX(100%); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-nav a {
  font-family: var(--serif); font-size: 1.5rem; padding-block: 1rem;
  border-bottom: 1px solid var(--line); color: var(--charcoal);
}
.mobile-nav a:last-of-type { border-bottom: none; }

/* =============================================================
   HERO SLIDER  (full-viewport — PLAN §9)
   ============================================================= */
.hero { position: relative; }
.slider { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 680px; min-height: 380px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), transform 7s linear;
  background-size: cover; background-position: center;
  transform: scale(1.06);
}
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(42,37,34,.55) 0%, rgba(42,37,34,.18) 55%, transparent 100%);
}
[dir="ltr"] .slide::after { background: linear-gradient(270deg, rgba(42,37,34,.55) 0%, rgba(42,37,34,.18) 55%, transparent 100%); }

/* Per-slide content: lives inside each .slide so copy can differ.
   Animates in only when the slide is active. */
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
  color: var(--cream); pointer-events: none;
}
.hero-content .inner { max-width: 580px; pointer-events: auto; }
.hero-content .eyebrow {
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--blush-deep); font-weight: 700; margin-bottom: 1rem;
  opacity: 0; transform: translateY(24px);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem); color: var(--cream); line-height: 1.08;
  opacity: 0; transform: translateY(24px);
}
.hero-content p {
  margin-top: 1.1rem; font-size: clamp(1rem, 2vw, 1.18rem); max-width: 460px;
  color: rgba(250,246,241,.92);
  opacity: 0; transform: translateY(24px);
}
.hero-content .btn { margin-top: 1.8rem; opacity: 0; transform: translateY(24px); }

/* Reveal the active slide's content in sequence */
.slide.active .hero-content .eyebrow { animation: rise .8s var(--ease) .25s forwards; }
.slide.active .hero-content h1      { animation: rise .8s var(--ease) .4s forwards; }
.slide.active .hero-content p       { animation: rise .8s var(--ease) .55s forwards; }
.slide.active .hero-content .btn    { animation: rise .8s var(--ease) .7s forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Play / pause control */
.slider-toggle {
  position: absolute; bottom: 1.5rem; inset-inline-end: 1.5rem; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250,246,241,.18); backdrop-filter: blur(6px);
  color: #fff; display: grid; place-items: center;
  transition: background var(--dur) var(--ease);
}
.slider-toggle:hover { background: rgba(250,246,241,.35); }
.slider-toggle svg { width: 18px; height: 18px; }
.slider-toggle .icon-play { display: none; }
.slider-toggle.paused .icon-play { display: block; }
.slider-toggle.paused .icon-pause { display: none; }

/* slider controls */
.slider-dots { position: absolute; bottom: 1.6rem; inset-inline-start: 50%; transform: translateX(50%); z-index: 3; display: flex; gap: .6rem; }
[dir="ltr"] .slider-dots { transform: translateX(-50%); }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); transition: all var(--dur) var(--ease); }
.slider-dots button.active { background: var(--cream); width: 30px; border-radius: 6px; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(250,246,241,.18); backdrop-filter: blur(6px);
  color: #fff; display: grid; place-items: center;
  transition: background var(--dur) var(--ease);
}
.slider-arrow:hover { background: rgba(250,246,241,.35); }
.slider-arrow.prev { inset-inline-start: 1.2rem; }
.slider-arrow.next { inset-inline-end: 1.2rem; }
.slider-arrow svg { width: 22px; height: 22px; }

/* =============================================================
   CATEGORIES
   ============================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.8rem, 2vw, 1.4rem); }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; display: block;
  box-shadow: var(--shadow-sm);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,37,34,.62), transparent 55%); }
.cat-card .label {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2; padding: 1.2rem; color: #fff; text-align: center;
}
.cat-card .label h3 { color: #fff; font-size: 1.25rem; }
.cat-card .label span { font-size: .82rem; opacity: .85; }

/* =============================================================
   PRODUCT GRID + CARDS
   ============================================================= */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }

.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-deep); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: .8rem; inset-inline-start: .8rem;
  background: var(--brand); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 999px; letter-spacing: .03em;
}
.product-fav {
  position: absolute; top: .7rem; inset-inline-end: .7rem;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9);
  display: grid; place-items: center; color: var(--charcoal);
  opacity: 0; transform: translateY(-6px); transition: all var(--dur) var(--ease);
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-fav:hover { background: var(--rose); color: #fff; }
.product-fav svg { width: 18px; height: 18px; }

.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.product-body .cat { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.product-body h3 { font-size: 1.18rem; margin-top: .3rem; }
.product-body h3 a:hover { color: var(--green); }
.product-price { margin-top: .5rem; font-family: var(--serif); font-size: 1.25rem; color: var(--green); font-weight: 700; }
.product-price del { color: var(--muted); font-size: .95rem; font-weight: 400; margin-inline-start: .5rem; }
.product-body .btn { margin-top: 1rem; }

/* =============================================================
   OCCASIONS BANNER
   ============================================================= */
.occasions { background: var(--green); color: var(--cream); }
.occasions .section-head h2 { color: var(--cream); }
.occasions .section-head .eyebrow { color: var(--blush-deep); }
.occ-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.8rem, 2vw, 1.4rem); }
.occ-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
}
.occ-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.occ-card:hover img { transform: scale(1.08); }
.occ-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,30,24,.78), rgba(20,30,24,.05) 60%); }
.occ-card .caption { position: absolute; inset-inline: 0; bottom: 0; z-index: 2; padding: 1.3rem; text-align: center; }
.occ-card .caption h3 { color: #fff; font-size: 1.35rem; }
.occ-card .caption span { display: inline-block; margin-top: .35rem; font-size: .8rem; color: var(--blush-deep); letter-spacing: .04em; }

/* =============================================================
   INSTAGRAM REELS
   ============================================================= */
.reels-track {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels-track::-webkit-scrollbar { display: none; }
.reel {
  position: relative; flex: 0 0 auto; width: clamp(180px, 42vw, 260px);
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start;
}
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.reel:hover img { transform: scale(1.08); }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,37,34,.45), transparent 50%); opacity: 0; transition: opacity var(--dur) var(--ease); }
.reel:hover::after { opacity: 1; }
.reel .ig {
  position: absolute; top: .7rem; inset-inline-end: .7rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: #c13584;
}
.reel .ig svg { width: 18px; height: 18px; }

/* =============================================================
   GALLERY SLIDER  (Instagram showcase — crossfade + ken-burns)
   ============================================================= */
.gallery-slider {
  position: relative; max-width: 960px; margin-inline: auto;
  border-radius: calc(var(--radius) + 4px); overflow: hidden;
  box-shadow: var(--shadow);
  outline: 1px solid var(--line);
}
.gs-viewport { position: relative; width: 100%; aspect-ratio: 16 / 10; }
.gs-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden; transform: scale(1.09);
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease), transform 7s linear;
}
.gs-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.gs-viewport::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(42,37,34,.42), transparent 42%);
}
.gs-ig {
  position: absolute; top: 1rem; inset-inline-start: 1rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .8rem .4rem .6rem; border-radius: 999px;
  background: rgba(250,246,241,.92); backdrop-filter: blur(6px);
  color: var(--brand-deep); font-weight: 700; font-size: .82rem;
}
.gs-ig svg { width: 17px; height: 17px; }
.gs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250,246,241,.85); backdrop-filter: blur(6px);
  color: var(--charcoal); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.gs-arrow:hover { background: var(--brand); color: #fff; }
.gs-arrow.prev { inset-inline-start: 1rem; }
.gs-arrow.next { inset-inline-end: 1rem; }
.gs-arrow svg { width: 20px; height: 20px; }
.gs-dots {
  position: absolute; bottom: 1.1rem; inset-inline-start: 0; right: 0;
  z-index: 4; display: flex; justify-content: center; gap: .5rem;
}
.gs-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.55); transition: all var(--dur) var(--ease);
}
.gs-dots button.active { background: var(--brand); width: 26px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  .gs-slide { transition: opacity .4s; transform: none; }
  .gs-slide.active { transform: none; }
}

/* =============================================================
   ABOUT / STORY
   ============================================================= */
.story { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.story-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story-text .eyebrow { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.story-text h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-top: .6rem; }
.story-text p { color: var(--muted); margin-top: 1rem; }
.story-stats { display: flex; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.story-stats .num { font-family: var(--serif); font-size: 2rem; color: var(--green); font-weight: 700; }
.story-stats .lbl { font-size: .85rem; color: var(--muted); }
.story-text .btn { margin-top: 1.8rem; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--charcoal); color: #d8cfc6; padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer a { transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--blush-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer .logo .word { color: var(--cream); }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-col p { font-size: .92rem; line-height: 1.9; color: #b3a99f; }
.footer-col li { margin-bottom: .65rem; font-size: .94rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .2rem; color: var(--gold); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center; color: #d8cfc6;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem; text-align: center; font-size: .85rem; color: #998f85; }

/* =============================================================
   FLOATING WHATSAPP
   ============================================================= */
.wa-float {
  position: fixed; bottom: 1.4rem; inset-inline-end: 1.4rem; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1; animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =============================================================
   SHOP PAGE
   ============================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.page-hero .crumbs { font-size: .85rem; color: var(--muted); margin-bottom: .6rem; }
.page-hero .crumbs a:hover { color: var(--green); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

.shop-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.shop-filters {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem;
  justify-content: center;
}
.filter-chip {
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  padding: .55rem 1.3rem; border-radius: 999px;
  border: 1.5px solid var(--line); color: var(--ink); background: var(--white);
  transition: all var(--dur) var(--ease);
}
.filter-chip:hover { border-color: var(--gold); color: var(--green); }
.filter-chip.active { background: var(--green); color: var(--cream); border-color: var(--green); }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.shop-toolbar .count { color: var(--muted); font-size: .92rem; }
.shop-toolbar select {
  font-family: var(--sans); font-size: .9rem; padding: .55rem 1rem;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink);
}

/* =============================================================
   PRODUCT PAGE
   ============================================================= */
.product-page { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.gallery-main {
  border-radius: var(--radius); overflow: hidden; background: var(--cream-deep);
  aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: .7rem; margin-top: .8rem; }
.gallery-thumbs button {
  flex: 1; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; transition: border-color var(--dur) var(--ease);
}
.gallery-thumbs button.active { border-color: var(--green); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-info .cat { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.pd-info h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-top: .5rem; }
.pd-stars { display: flex; align-items: center; gap: .5rem; margin-top: .7rem; color: var(--gold); }
.pd-stars span { color: var(--muted); font-size: .85rem; }
.pd-price { font-family: var(--serif); font-size: 2rem; color: var(--green); font-weight: 700; margin-top: 1rem; }
.pd-price del { color: var(--muted); font-size: 1.2rem; font-weight: 400; margin-inline-start: .7rem; }
.pd-desc { color: var(--muted); margin-top: 1.2rem; line-height: 1.9; }
.pd-divider { height: 1px; background: var(--line); margin-block: 1.6rem; }

.pd-options { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 44px; height: 44px; font-size: 1.2rem; color: var(--charcoal); transition: background var(--dur) var(--ease); }
.qty button:hover { background: var(--blush); }
.qty input { width: 46px; text-align: center; border: none; font-family: var(--sans); font-weight: 700; font-size: 1rem; background: transparent; color: var(--charcoal); }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pd-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.pd-meta { margin-top: 1.6rem; font-size: .9rem; color: var(--muted); }
.pd-meta li { display: flex; gap: .6rem; align-items: center; margin-bottom: .5rem; }
.pd-meta svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (min-width: 600px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .occ-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { grid-template-columns: repeat(5, 1fr); }
  .story { grid-template-columns: 1fr 1fr; }
  .story.reverse > .story-media { order: 2; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .product-page { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .shop-layout .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .shop-layout .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile: collapse desktop nav, show hamburger */
@media (max-width: 899px) {
  .nav { display: none; }
  .header-actions .lang-toggle { display: none; }
  .hamburger { display: grid; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .slide { transition: opacity .4s; transform: none; }
  .slide.active .hero-content .eyebrow,
  .slide.active .hero-content h1,
  .slide.active .hero-content p,
  .slide.active .hero-content .btn { opacity: 1; transform: none; }
  .wa-float::before { animation: none; }
}

/* =============================================================
   MINI-CART DRAWER
   ============================================================= */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(42,37,34,.5); opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; bottom: 0; right: 0; left: auto; z-index: 260;
  width: min(420px, 90vw);
  background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(100%);            /* off-canvas to the right (RTL default) */
  transition: transform var(--dur) var(--ease);
  box-shadow: var(--shadow);
}
[dir="ltr"] .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
.cart-drawer.open { transform: translateX(0); }

.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem var(--gut); border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 1.4rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem var(--gut); }
.cart-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.cart-empty svg { width: 48px; height: 48px; color: var(--line); margin-bottom: 1rem; }

.cart-line { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-line:last-child { border-bottom: none; }
.cart-line .thumb { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex: 0 0 auto; background: var(--cream-deep); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info h4 { font-family: var(--sans); font-weight: 700; font-size: .98rem; color: var(--charcoal); }
.cart-line .addon { font-size: .8rem; color: var(--muted); margin-top: .1rem; }
.cart-line .price { color: var(--green); font-weight: 700; font-family: var(--serif); margin-top: .3rem; }
.cart-line .line-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.cart-line .remove { color: var(--muted); font-size: .82rem; display: inline-flex; align-items: center; gap: .25rem; }
.cart-line .remove:hover { color: var(--rose); }
.cart-line .remove svg { width: 14px; height: 14px; }

.qty.qty-sm { border-width: 1px; }
.qty.qty-sm button { width: 32px; height: 32px; font-size: 1rem; }
.qty.qty-sm input { width: 36px; font-size: .9rem; }

.cart-foot { border-top: 1px solid var(--line); padding: 1.2rem var(--gut); background: var(--white); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .4rem; }
.cart-subtotal .label { color: var(--ink); font-weight: 600; }
.cart-subtotal .amount { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--green); }
.cart-note { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.cart-foot .btn { width: 100%; }
.cart-foot .btn + .btn { margin-top: .7rem; }

/* =============================================================
   TOAST
   ============================================================= */
.toast-stack { position: fixed; bottom: 1.4rem; inset-inline-start: 1.4rem; z-index: 300; display: flex; flex-direction: column; gap: .6rem; }
.toast {
  background: var(--charcoal); color: var(--cream);
  padding: .85rem 1.2rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); font-size: .9rem; font-weight: 600;
  display: flex; align-items: center; gap: .6rem;
  opacity: 0; transform: translateY(12px); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 20px; height: 20px; color: #25d366; flex: 0 0 auto; }

/* =============================================================
   GENERIC CONTENT PAGES (about, policies, prose)
   ============================================================= */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-top: 2.2rem; margin-bottom: .8rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: .5rem; color: var(--green); }
.prose p { color: var(--ink); margin-bottom: 1rem; line-height: 1.95; }
.prose ul.bullets { margin: 0 0 1.2rem; padding-inline-start: 1.2rem; list-style: disc; color: var(--ink); }
.prose ul.bullets li { margin-bottom: .5rem; }
.prose .lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.8rem; }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.accordion { max-width: 800px; margin-inline: auto; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: .8rem; overflow: hidden; }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; text-align: start; font-family: var(--sans); font-weight: 700;
  font-size: 1.02rem; color: var(--charcoal);
}
.acc-trigger:hover { color: var(--green); }
.acc-trigger .chev { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); transition: transform var(--dur) var(--ease); }
.acc-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.acc-panel .inner { padding: 0 1.3rem 1.2rem; color: var(--muted); line-height: 1.9; }

/* =============================================================
   OCCASIONS LANDING + GENERIC CARD GRIDS
   ============================================================= */
.tile-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 1.6rem); }
.occ-tile {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
}
.occ-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.occ-tile:hover img { transform: scale(1.06); }
.occ-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,37,34,.72), transparent 60%); }
.occ-tile .body { position: relative; z-index: 2; padding: 1.4rem; color: #fff; }
.occ-tile .body h3 { color: #fff; font-size: 1.4rem; }
.occ-tile .body p { color: rgba(255,255,255,.85); font-size: .88rem; margin-top: .3rem; }

/* =============================================================
   DELIVERY TABLE
   ============================================================= */
.area-table { width: 100%; border-collapse: collapse; max-width: 760px; margin-inline: auto; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.area-table th, .area-table td { padding: .95rem 1.2rem; text-align: start; border-bottom: 1px solid var(--line); }
.area-table thead th { background: var(--green); color: var(--cream); font-family: var(--sans); font-weight: 700; }
.area-table tbody tr:last-child td { border-bottom: none; }
.area-table tbody tr:hover { background: var(--cream); }
.area-table .fee { color: var(--green); font-weight: 700; }

/* =============================================================
   CONTACT + FORMS (checkout, contact)
   ============================================================= */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.span-2 { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; color: var(--charcoal); }
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color var(--dur) var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; min-height: 90px; }
.field .hint { font-size: .78rem; color: var(--muted); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--rose); }
.field .error-msg { font-size: .78rem; color: var(--rose); display: none; }
.field.invalid .error-msg { display: block; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; flex-direction: row; }
.checkbox input { width: auto; margin-top: .25rem; }
.checkbox label { font-weight: 600; }
.fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; background: var(--white); margin-bottom: 1.6rem; }
.fieldset > legend { font-family: var(--serif); font-size: 1.3rem; color: var(--charcoal); padding-inline: .5rem; font-weight: 600; }

/* =============================================================
   CHECKOUT LAYOUT + ORDER SUMMARY
   ============================================================= */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.checkout-explainer {
  background: var(--blush); border: 1px solid var(--blush-deep); color: var(--charcoal);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 1.8rem;
  display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; line-height: 1.7;
}
.checkout-explainer svg { width: 22px; height: 22px; color: var(--green); flex: 0 0 auto; margin-top: .15rem; }

.summary-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.summary-card h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.summary-line { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.summary-line .thumb { width: 54px; height: 54px; border-radius: var(--radius-sm); overflow: hidden; flex: 0 0 auto; background: var(--cream-deep); }
.summary-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-line .nm { flex: 1; font-size: .9rem; font-weight: 600; color: var(--charcoal); }
.summary-line .nm small { display: block; color: var(--muted); font-weight: 400; }
.summary-line .amt { color: var(--green); font-weight: 700; font-family: var(--serif); }
.summary-totals { margin-top: 1rem; }
.summary-totals .row { display: flex; justify-content: space-between; padding: .35rem 0; font-size: .95rem; color: var(--ink); }
.summary-totals .row.total { border-top: 1.5px solid var(--line); margin-top: .5rem; padding-top: .8rem; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--green); }

/* =============================================================
   ORDER RECEIVED
   ============================================================= */
.received-hero { text-align: center; max-width: 640px; margin-inline: auto; }
.received-badge { width: 84px; height: 84px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; margin: 0 auto 1.4rem; color: var(--green); }
.received-badge svg { width: 42px; height: 42px; }
.order-number { font-family: var(--serif); font-size: 1.6rem; color: var(--green); font-weight: 700; background: var(--cream-deep); display: inline-block; padding: .4rem 1.4rem; border-radius: 999px; margin: 1rem 0; }
.received-note { background: var(--blush); border-radius: var(--radius); padding: 1rem 1.3rem; color: var(--charcoal); font-size: .95rem; line-height: 1.7; margin: 1.6rem 0; text-align: start; }

/* =============================================================
   404
   ============================================================= */
.notfound { min-height: 64vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.notfound .big { font-family: var(--serif); font-size: clamp(5rem, 18vw, 10rem); color: var(--rose); line-height: 1; }
.notfound h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: .5rem; }
.notfound p { color: var(--muted); margin: 1rem auto 2rem; max-width: 440px; }
.notfound .actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   PAGE INTRO (content pages reuse .page-hero from shop)
   ============================================================= */
.intro-text { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; color: var(--muted); font-size: 1.05rem; }

/* map placeholder */
.map-embed { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--cream-deep), var(--blush)); display: grid; place-items: center; color: var(--green-soft); border: 1px dashed var(--blush-deep); }
.map-embed svg { width: 56px; height: 56px; opacity: .55; }

@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .checkout-layout { grid-template-columns: 1.6fr 1fr; }
  .summary-card { position: sticky; top: 96px; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   TRUST STRIP  (below hero on home)
   ============================================================= */
.trust-strip {
  background: var(--green);
  color: var(--cream);
  padding-block: 1rem 1.1rem;
  border-bottom: 2px solid rgba(255,255,255,.08);
}
.trust-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.2rem 2.8rem;
}
.trust-item {
  display: flex; align-items: center; gap: .65rem;
}
.trust-item svg { width: 22px; height: 22px; color: var(--brand); flex: 0 0 auto; }
.trust-item strong { display: block; font-size: .9rem; font-weight: 700; line-height: 1.3; }
.trust-item span { display: block; font-size: .74rem; opacity: .72; }

/* =============================================================
   HOW IT WORKS  (process section on home)
   ============================================================= */
.how-it-works { background: var(--cream-deep); }
.steps {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  text-align: center; position: relative;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before {
    content: "";
    position: absolute;
    top: 26px; inset-inline-start: 16.6%; inset-inline-end: 16.6%;
    height: 2px; background: var(--line);
    z-index: 0;
  }
}
.step { display: flex; flex-direction: column; align-items: center; gap: .9rem; position: relative; z-index: 1; }
.step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line);
  display: grid; place-items: center;
  color: var(--green); box-shadow: var(--shadow-sm);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover .step-icon { background: var(--green); border-color: var(--green); color: var(--cream); }
.step-icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.12rem; color: var(--charcoal); }
.step p { color: var(--muted); font-size: .88rem; max-width: 220px; margin-inline: auto; line-height: 1.75; }

/* =============================================================
   MOBILE NAV ACTIVE LINK
   ============================================================= */
.mobile-nav a.active { color: var(--green); font-weight: 700; }

/* =============================================================
   PRODUCT TAG VARIANTS
   ============================================================= */
.product-tag.tag-hot { background: var(--green); }
.product-tag.tag-sale { background: var(--gold); }

/* =============================================================
   MOBILE FILTER CHIPS — horizontal scroll on small screens
   ============================================================= */
@media (max-width: 599px) {
  .shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: .5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline-start: var(--gut);
  }
  .shop-filters::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 auto; }
}

/* === PORTFOLIO PAGE === */
.pf-stats { background: var(--green); color: var(--cream); padding-block: 2.5rem; }
.pf-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem 1.5rem; text-align: center; }
@media (min-width: 700px) { .pf-stats-grid { grid-template-columns: repeat(4,1fr); } }
.pf-stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.pf-stat-lbl { font-size: .82rem; opacity: .8; margin-top: .4rem; }

.client-logos-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
@media (min-width: 600px) { .client-logos-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 980px) { .client-logos-grid { grid-template-columns: repeat(6,1fr); } }
.client-logo-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.4rem 1rem; display: flex; flex-direction: column; align-items: center;
  gap: .65rem; text-align: center;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.client-logo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.client-logo-icon { width: 44px; height: 44px; color: var(--green); }
.client-logo-name { font-size: .78rem; font-weight: 700; color: var(--charcoal); line-height: 1.35; }
.client-logo-type { font-size: .7rem; color: var(--muted); }

.works-filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.2rem; }
.works-grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .works-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .works-grid { grid-template-columns: repeat(3,1fr); } }
.work-card {
  border-radius: 12px; overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.work-img { aspect-ratio: 4/3; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.work-img-icon { display: none; }
.work-badge {
  position: absolute; top: .75rem; inset-inline-start: .75rem;
  background: rgba(0,0,0,.42); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 99px; backdrop-filter: blur(6px);
}
.work-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.work-title { font-family: var(--serif); font-size: 1rem; color: var(--charcoal); font-weight: 600; line-height: 1.35; }
.work-desc { font-size: .83rem; color: var(--muted); line-height: 1.7; flex: 1; }
.work-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .65rem; }
.work-date { font-size: .74rem; color: var(--muted); }
.work-cat-tag { font-size: .72rem; font-weight: 700; color: var(--rose); }

.featured-works-grid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .featured-works-grid { grid-template-columns: repeat(2,1fr); } }
.featured-work-card {
  border-radius: 14px; overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.featured-work-card:hover { box-shadow: 0 16px 40px rgba(42,37,34,.15); transform: translateY(-5px); }
.featured-work-img { aspect-ratio: 16/9; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.featured-work-img-icon { display: none; }
.featured-badge {
  position: absolute; top: 1rem; inset-inline-start: 1rem;
  background: var(--gold); color: var(--white);
  font-size: .76rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 99px;
}
.featured-work-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.featured-work-body h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal); }
.featured-work-body p { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.featured-details { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: .9rem; }
.featured-detail { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--muted); }
.featured-detail svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.6rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--blush); position: absolute; top: .3rem; inset-inline-end: 1rem;
  pointer-events: none; z-index: 0;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; }
.testimonial-text { font-size: .88rem; color: var(--charcoal); line-height: 1.8; flex: 1; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; padding-top: .75rem; border-top: 1px solid var(--line); }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; color: var(--rose); flex-shrink: 0; }
.t-avatar svg { width: 20px; height: 20px; }
.t-name { font-weight: 700; font-size: .85rem; color: var(--charcoal); }
.t-role { font-size: .73rem; color: var(--muted); }

.partners-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 600px) { .partners-grid { grid-template-columns: repeat(4,1fr); } }
.partner-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.1rem; display: flex; align-items: center; gap: .75rem; transition: box-shadow var(--dur) var(--ease); }
.partner-card:hover { box-shadow: var(--shadow-sm); }
.p-icon { width: 34px; height: 34px; color: var(--green); flex-shrink: 0; }
.p-info strong { display: block; font-size: .8rem; color: var(--charcoal); font-weight: 700; }
.p-info span { font-size: .71rem; color: var(--muted); }

.pf-cta-section { background: var(--green); text-align: center; }
.pf-cta-section .eyebrow { color: var(--gold); }
.pf-cta-section h2 { color: var(--cream); }
.pf-cta-section .rule { background: rgba(184,155,94,.4); }
.pf-cta-desc { color: var(--cream); opacity: .82; max-width: 520px; margin-inline: auto; margin-bottom: 2rem; line-height: 1.85; font-size: .95rem; }

/* =============================================================
   PAGE LOADER  (masks navigation between pages)
   ============================================================= */
.page-loader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: #ffffff;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.page-loader .pl-inner { display: grid; place-items: center; gap: 1.1rem; }
.page-loader img { width: 84px; height: 84px; border-radius: 50%; animation: pl-pop .8s var(--ease) both; }
.page-loader .pl-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--blush-deep); border-top-color: var(--brand);
  animation: pl-spin .8s linear infinite;
}
@keyframes pl-spin { to { transform: rotate(360deg); } }
@keyframes pl-pop { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .page-loader img, .page-loader .pl-ring { animation: none; }
}

/* =============================================================
   REELS CAROUSEL  (controllable slider, per-reel video player)
   ============================================================= */
.reels { position: relative; }
.reels-viewport { overflow: hidden; }
.reels-rail {
  display: flex; gap: 1.1rem;
  transition: transform .65s var(--ease);
  will-change: transform;
}
.reel-card {
  position: relative; flex: 0 0 auto;
  width: clamp(220px, 80vw, 300px); aspect-ratio: 9 / 16;
  border-radius: var(--radius); overflow: hidden;
  background: #000; box-shadow: var(--shadow-sm);
}
.reel-card video,
.reel-card .reel-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.reel-card .reel-poster { transition: transform .8s var(--ease), filter var(--dur) var(--ease); }
.reel-card:hover .reel-poster { transform: scale(1.05); }
.reel-card.playing .reel-poster { opacity: 0; visibility: hidden; }
.reel-card.playing .reel-tag { opacity: 0; }
.reel-card .reel-play {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(42,37,34,.45), transparent 55%);
  color: #fff; transition: opacity var(--dur) var(--ease);
}
.reel-card.playing .reel-play { opacity: 0; pointer-events: none; }
.reel-card .reel-play .play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--brand-deep);
  display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.reel-card:hover .reel-play .play-btn { transform: scale(1.08); background: #fff; }
.reel-card .reel-play .play-btn svg { width: 26px; height: 26px; margin-inline-start: 3px; }
.reel-card .reel-tag {
  position: absolute; top: .7rem; inset-inline-start: .7rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(250,246,241,.92); color: var(--brand-deep);
  font-size: .72rem; font-weight: 700;
}
.reel-card .reel-tag svg { width: 14px; height: 14px; }
.reels-nav {
  display: flex; justify-content: center; gap: .8rem; margin-top: 1.6rem;
}
.reels-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--charcoal);
  display: grid; place-items: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.reels-nav button:hover:not(:disabled) { background: var(--brand); border-color: var(--brand); color: #fff; }
.reels-nav button:disabled { opacity: .35; cursor: default; }
.reels-nav button svg { width: 20px; height: 20px; }

/* =============================================================
   FOOTER CREDIT  (Skylens — designer kept subtle)
   ============================================================= */
.footer-credit { margin-top: .5rem; font-size: .78rem; color: #8c8279; }
.footer-credit a { color: #b3a99f; font-weight: 700; }
.footer-credit a:hover { color: var(--blush-deep); }
.footer-credit .by { opacity: .45; font-size: .72rem; }
.footer-credit .by a { color: inherit; font-weight: 400; }

/* =============================================================
   DECORATIVE STICKERS  (flowers / leaves scattered site-wide)
   ============================================================= */
/* Small flower icon above every section heading */
.section-head { position: relative; }
.section-head::before {
  content: ""; display: block; width: 36px; height: 36px; margin: 0 auto .8rem;
  background: url("../assets/stickers/flower.svg") center/contain no-repeat;
  animation: sticker-sway 6s var(--ease) infinite;
}

/* Faint corner blooms — sit above the section background, below content */
.occasions, .story, .how-it-works, .trust-strip, #reels, #categories, .footer { position: relative; z-index: 0; }
.occasions, .how-it-works, .footer { overflow: hidden; }
.occasions::after, .story::after, .how-it-works::before, .footer::after, #categories::before {
  content: ""; position: absolute; pointer-events: none; z-index: -1;
  background-position: center; background-repeat: no-repeat; background-size: contain;
}
.occasions::after   { width: 190px; height: 190px; top: -34px; inset-inline-end: -34px; background-image: url("../assets/stickers/tulip.svg");  opacity: .12; transform: rotate(14deg); }
.story::after       { width: 150px; height: 150px; bottom: -20px; inset-inline-start: -18px; background-image: url("../assets/stickers/leaf.svg"); opacity: .16; transform: rotate(-12deg); }
.how-it-works::before { width: 160px; height: 160px; bottom: -30px; inset-inline-end: -30px; background-image: url("../assets/stickers/flower.svg"); opacity: .10; }
#categories::before { width: 130px; height: 130px; top: 8px; inset-inline-start: -28px; background-image: url("../assets/stickers/leaf.svg"); opacity: .14; transform: rotate(20deg); }
.footer::after      { width: 240px; height: 240px; bottom: -50px; inset-inline-start: -50px; background-image: url("../assets/stickers/flower.svg"); opacity: .06; }

@keyframes sticker-sway { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
@media (prefers-reduced-motion: reduce) { .section-head::before { animation: none; } }
@media (max-width: 700px) {
  .occasions::after, .story::after, .how-it-works::before, #categories::before { display: none; }
}
