/* ===== Hide reCAPTCHA badge (App Check runs in background) ===== */
.grecaptcha-badge { visibility: hidden !important; }

/* ===== i18n Loading Screen ===== */
.lang-loading body { opacity: 0; }
.lang-loading.lang-loading body { transition: opacity 0.15s ease; }
html:not(.lang-loading) body { opacity: 1; }

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Soft Rose Gold, Cream White & Charcoal Palette */
  --sand:          #fdf8f5;   /* Cream White — main background      */
  --sand-dark:     #e8cfc4;   /* Rose Gold Light — borders/dividers  */
  --sand-light:    #ffffff;   /* Pure White — card surfaces          */
  --sand-deep:     #c9957a;   /* Rose Gold — accent                  */

  /* Rose Gold Accent (replaces pink) */
  --pink:          #c9957a;   /* Rose Gold primary                   */
  --pink-light:    #f5ece7;   /* Cream section background            */
  --pink-deep:     #a8705a;   /* Deep Rose Gold — hover/price        */

  /* Charcoal Text */
  --ink:           #2c2a29;   /* Charcoal — headings & buttons       */
  --ink-soft:      #4a3f3c;   /* Warm Dark — body text               */
  --muted:         #736a66;   /* Rose Muted — secondary text (WCAG AA ~5:1 on --sand) */

  /* Surfaces */
  --white:         #ffffff;

  /* Wishlist heart */
  --heart-red:     #e0223a;   /* Filled heart — selected favorite    */

  /* Spacing */
  --section-pad:   90px;
  --container-max: 1100px;

  /* Ticker */
  --ticker-h: 38px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', sans-serif;
  background-color: var(--sand);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: box-shadow 0.4s ease;
}

/* Blur background lives on a pseudo-element so that backdrop-filter
   does NOT make .navbar a containing block for position:fixed children
   (the mobile nav overlay), which would break the overlay when scrolled. */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled::before {
  background: rgba(237, 227, 207, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar.scrolled {
  box-shadow: 0 1px 24px rgba(26, 20, 0, 0.08);
}

/* Ticker-aware: push navbar down by ticker height */
.has-ticker .navbar     { top: var(--ticker-h); }
.has-ticker .hero       { padding-top: 168px; }

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 12px;
}
/* The <nav> wrapper around .nav-links must not take up space in the grid —
   .nav-links itself is position:fixed so the wrapper is purely structural. */
.nav-container > nav { display: contents; }

.nav-side {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* In RTL grid, "start" of the inline axis is the right edge,
   so end-side group aligns start (right) and start-side aligns end (left). */
.nav-side-end   { justify-self: start; }
.nav-side-start { justify-self: end; }

.logo {
  font-family: 'Heebo', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  justify-self: center;
}

.logo span {
  font-weight: 300;
  letter-spacing: 1px;
}

/* ========== Side Drawer Menu (Charming aesthetic) ========== */
.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88%, 360px);
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 80px 0 32px;
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.24, 1);
  box-shadow: -12px 0 40px rgba(44, 42, 41, 0.12);
  overflow-y: auto;
  list-style: none;
  margin: 0;
  font-family: 'Assistant', sans-serif;
}
.nav-links.is-open { transform: translateX(0); }

/* Dedicated close (X) button injected by main.js — top-left of drawer
   (in RTL: physical left = the inner edge closest to the page) */
.nav-drawer-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-drawer-close:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.nav-links li { list-style: none; }

/* Default link rows */
.nav-links .nav-item-link a,
.nav-links .auth-nav-item a {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.3px;
  padding: 15px 26px;
  text-align: right;
  transition: color 0.2s ease, padding-right 0.2s ease;
}
.nav-links .nav-item-link a:hover {
  color: var(--pink-deep);
  padding-right: 32px;
}

/* Accent link (e.g. מבצעים) */
.nav-links .nav-link-accent a {
  color: var(--pink-deep);
  font-weight: 700;
}

/* Top row: auth state + lang side-by-side */
.nav-links .nav-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 24px 16px;
  border-bottom: 1px solid var(--sand-dark);
  margin-bottom: 10px;
}
.nav-links .nav-top-row .lang-dropdown { display: inline-block; }
.nav-links .nav-top-row .lang-dropdown-btn {
  font-size: 0.75rem;
  padding: 4px 12px;
  letter-spacing: 0.4px;
  border: 1px solid var(--sand-dark);
  background: transparent;
  border-radius: 50px;
  color: var(--ink-soft);
}
.nav-links .nav-top-row .nav-auth-slot {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.nav-links .nav-top-row .auth-nav-link {
  display: inline-block;
  background: transparent;
  color: var(--pink-deep);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--sand-dark);
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-links .nav-top-row .auth-nav-link:hover {
  background: var(--pink-deep);
  color: #fff;
  border-color: var(--pink-deep);
}
.nav-links .nav-top-row .auth-nav-user {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  white-space: nowrap;
  font-weight: 500;
}
.nav-links .nav-top-row .auth-nav-user strong {
  color: var(--pink-deep);
  font-weight: 700;
  margin-right: 4px;
}

/* Section header (e.g. "חנות") — non-clickable, eyebrow style */
.nav-links .nav-section-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pink-deep);
  text-transform: uppercase;
  padding: 22px 26px 10px;
  margin-top: 6px;
  border-top: 1px solid var(--sand-dark);
}

/* Expandable category row */
.nav-expand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 13px 26px;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.3px;
  cursor: pointer;
  text-align: right;
  transition: color 0.2s ease;
}
.nav-expand-btn:hover { color: var(--pink-deep); }

.nav-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--muted);
}
.nav-expand-btn[aria-expanded="true"] {
  color: var(--pink-deep);
}
.nav-expand-btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  color: var(--pink-deep);
}

/* Sub-list collapsed by default */
.nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.nav-item-expandable.is-expanded > .nav-sublist {
  max-height: 400px;
}
.nav-sublist li { list-style: none; }
.nav-sublist a {
  display: block;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 9px 42px;
  text-align: right;
  transition: color 0.2s ease, padding-right 0.2s ease;
}
.nav-sublist a:hover {
  color: var(--pink-deep);
  padding-right: 48px;
}


/* Backdrop behind the side drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 41, 0.45);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 42px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Assistant', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 20, 0, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-pink {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--white);
}

.btn-pink:hover {
  background: var(--pink);
  border-color: var(--pink);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 48px 90px;
  background:
    linear-gradient(rgba(253, 248, 245, 0.75), rgba(253, 248, 245, 0.75)),
    url('https://res.cloudinary.com/dhri2dbek/image/upload/f_auto,q_auto/v1774700866/1112_axxkwm.png') center / cover no-repeat;
  position: relative;
}

.hero-content { max-width: 700px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--muted);
}

.hero-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.85;
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0.85;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Section Shared ===== */
.section { padding: var(--section-pad) 0; }
.section-sand  { background: var(--sand); }
.section-light { background: var(--sand-light); }
.section-pink  { background: var(--pink-light); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--muted);
}

.section-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 56px;
  font-weight: 400;
  line-height: 1.9;
}

/* ===== About Section ===== */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.about-inner .about-sub {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-inner p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.about-inner p strong {
  color: var(--ink);
  font-weight: 700;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--sand-deep);
  margin: 32px auto;
  border-radius: 2px;
}

/* ===== Cards (Jewelry Shop) ===== */
.charm-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.card {
  background: var(--sand-light);
  border-radius: 22px;
  padding: 44px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 28px rgba(26, 20, 0, 0.07);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(26, 20, 0, 0.13);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.card-price {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 0.5px;
}

/* ===== Ornament ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
  opacity: 0.28;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: var(--ink);
}

.ornament-diamond {
  width: 5px;
  height: 5px;
  background: var(--ink);
  transform: rotate(45deg);
}

/* ===== Steps Section ===== */
.steps-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 56px;
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Flip even steps: image on right side visually */
.step-item:nth-child(even) {
  direction: ltr;
}

.step-item:nth-child(even) .step-text {
  direction: rtl;
}

.step-number {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  border-bottom: 1.5px solid var(--sand-dark);
  padding-bottom: 10px;
}

.step-text h3 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
}

.step-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

.step-image {
  border-radius: 22px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 8px 40px rgba(26, 20, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.step-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.step-image--1 { background: linear-gradient(135deg, #e8d8be 0%, #c8b090 100%); }
.step-image--2 { background: linear-gradient(135deg, #f0e4d2 0%, #d8c09c 100%); }
.step-image--3 { background: linear-gradient(135deg, #f5e8d4 0%, #e0c8a0 100%); }

/* ===== Bonus Section ===== */
.bonus-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.bonus-inner {
  background: var(--pink-light);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  box-shadow: 0 8px 48px rgba(26, 20, 0, 0.07);
}

.bonus-text {
  padding: 56px 52px;
  direction: rtl;
}

.bonus-text h2 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.18;
}

.bonus-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 28px;
}

.bonus-image {
  height: 360px;
  background: linear-gradient(135deg, #f0c8cc 0%, #e0a8b8 40%, #c898a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ===== Experience Section ===== */
.experience-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.experience-section .section-desc {
  margin-bottom: 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.experience-card {
  background: var(--sand);
  border-radius: 22px;
  padding: 42px 38px;
  box-shadow: 0 4px 24px rgba(26, 20, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 42px rgba(26, 20, 0, 0.11);
}

.experience-card-tag {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--sand-dark);
}

.experience-card h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.25;
}

.experience-card p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ===== Social Icons ===== */
.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 8px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.25s;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--ink-soft);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 150px 48px 90px;
  text-align: center;
  background: var(--sand);
}

.page-hero--with-bg {
  background:
    linear-gradient(rgba(253, 248, 245, 0.75), rgba(253, 248, 245, 0.75)),
    url('https://res.cloudinary.com/dhri2dbek/image/upload/f_auto,q_auto/v1773270811/sadna_paaqbb.png') center / cover no-repeat;
}

.page-hero .hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 18px;
}

.page-hero .hero-description {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== Workshop Gallery ===== */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.gallery-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 4px 28px rgba(26, 20, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(26, 20, 0, 0.14);
}

.gallery-img {
  width: 100%;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  position: relative;
  overflow: hidden;
}

.gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

.gallery-img-label {
  font-family: 'Heebo', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  position: absolute;
  bottom: 14px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
  white-space: nowrap;
}

.gallery-img--bracelets { background: linear-gradient(135deg, #e8cfc4 0%, #d4a896 50%, #c9957a 100%); }
.gallery-img--necklaces { background: linear-gradient(135deg, #f0e6d3 0%, #d4b896 50%, #c4a070 100%); }
.gallery-img--party     { background: linear-gradient(135deg, #f5dde0 0%, #e0a8b0 50%, #c98090 100%); }

.gallery-card-body {
  padding: 28px 28px 32px;
}

.gallery-card-body h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.gallery-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.gallery-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--sand-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ===== Workshop Steps (workshops page) ===== */
.workshop-steps {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

/* ===== Signup Form ===== */
.signup-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.form-wrapper {
  max-width: 700px;
  margin: 52px auto 0;
  background: var(--sand);
  border-radius: 24px;
  padding: 52px;
  box-shadow: 0 8px 48px rgba(26, 20, 0, 0.09);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.form-group label .required { color: var(--pink-deep); margin-right: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Assistant', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--sand-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  direction: rtl;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26, 20, 0, 0.07);
  background: var(--white);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1400' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-color: var(--sand-light);
  padding-left: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-submit { text-align: center; margin-top: 10px; }
.form-submit .btn { padding: 16px 60px; font-size: 1rem; }

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: 'Heebo', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 260px;
}

.footer-tagline {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand-dark);
  font-weight: 700;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--sand-dark);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.tiktok-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.3s, transform 0.2s;
}

.tiktok-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}

/* ===== Hamburger Menu ===== */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 500;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.22s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== WhatsApp Floating Action Button ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* Gallery card CTA button */
.gallery-card-body .btn {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/* Portfolio card CTA button */
.card .btn {
  margin-top: 22px;
  display: inline-block;
}

/* ===== Real Image Integration & Fade-in Animation ===== */
.step-image img,
.gallery-img img,
.bonus-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: imgFadeIn 0.8s ease 0.15s forwards;
}

@keyframes imgFadeIn {
  to { opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .step-item { grid-template-columns: 1fr; gap: 28px; }
  .step-item:nth-child(even) { direction: rtl; }
  .step-image { height: 260px; }

  .bonus-inner { grid-template-columns: 1fr; }
  .bonus-image { height: 240px; }

  .experience-grid { grid-template-columns: 1fr; gap: 20px; }

  .form-wrapper { padding: 40px 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .container, .nav-container { padding: 0 16px; }

  /* --- Hero: Mobile --- */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    text-align: center;
    padding: 120px 24px 72px;
    background:
      linear-gradient(rgba(253, 248, 245, 0.78), rgba(253, 248, 245, 0.78)),
      url('https://res.cloudinary.com/dhri2dbek/image/upload/f_auto,q_auto/v1774700866/1112_axxkwm.png') center / cover no-repeat;
  }

  .hero-content { max-width: 100%; width: 100%; }

  .hero-eyebrow { justify-content: center; }

  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4rem);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 32px;
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  /* --- Thumb-friendly buttons (all contexts) --- */
  .btn { min-height: 50px; padding: 13px 32px; }

  /* --- Page Hero (workshops.html) --- */
  .page-hero { padding: 140px 24px 64px; }

  /* --- Sections --- */
  .bonus-text { padding: 36px 24px; }
  .step-item { direction: rtl; }
  .step-image { height: 240px; }

  /* --- WhatsApp FAB mobile --- */
  .whatsapp-fab { width: 54px; height: 54px; bottom: 20px; right: 16px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* --- Footer brand: center on mobile --- */
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; margin-right: auto; margin-left: auto; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 52px; }

  .container, .nav-container { padding: 0 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 16px; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 3rem); }
  .hero-eyebrow { font-size: 0.68rem; gap: 8px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
}

/* ===== Hero Logo ===== */
.hero {
  flex-direction: column;
  gap: 0;
}

.hero-logo-wrap {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 12px 60px rgba(26, 20, 0, 0.28),
    0 0 0 8px rgba(201, 149, 122, 0.22),
    0 0 0 14px rgba(201, 149, 122, 0.08);
}

/* ===== About — Two-Column Layout ===== */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  position: relative;
  box-shadow: 0 16px 64px rgba(26, 20, 0, 0.13);
}

.about-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imgFadeIn 0.8s ease 0.2s forwards;
}

.about-text {
  direction: rtl;
}

.about-text .section-title {
  margin-bottom: 8px;
}

.about-sub {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.about-text p strong {
  color: var(--ink);
  font-weight: 700;
}

.about-divider {
  width: 44px;
  height: 2px;
  background: var(--sand-deep);
  margin: 24px 0;
  border-radius: 2px;
}

/* ===== Journey Section ===== */
.journey-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.journey-header {
  text-align: center;
  margin-bottom: 72px;
}

.journey-header .section-eyebrow {
  display: inline-flex;
}

.journey-header .section-desc {
  margin: 0 auto;
}

.journey-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.journey-step {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.journey-step--flip {
  grid-template-columns: 1fr 1.1fr;
  direction: ltr;
}

.journey-step--flip .journey-step-text {
  direction: rtl;
}

.journey-step-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 12px 56px rgba(26, 20, 0, 0.13);
}

.journey-step-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imgFadeIn 0.8s ease 0.1s forwards;
}

.journey-step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(44, 42, 41, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
  z-index: 1;
}

.journey-step--flip .journey-step-badge {
  right: auto;
  left: 20px;
}

.step-label {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  border-bottom: 1.5px solid var(--sand-dark);
  padding-bottom: 10px;
}

.journey-step-text h3 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.journey-step-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* Gift Stage */
.journey-gift {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  background: var(--pink-light);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(26, 20, 0, 0.08);
}

.journey-gift-img {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.journey-gift-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imgFadeIn 0.8s ease 0.15s forwards;
}

.journey-gift-text {
  padding: 48px 52px 48px 24px;
  direction: rtl;
}

.gift-badge {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.journey-gift-text h3 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.25;
}

.journey-gift-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* Journey CTA */
.journey-cta {
  text-align: center;
  margin-top: 64px;
}

.journey-cta-lead {
  font-family: 'Heebo', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.journey-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
}

.btn-whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: var(--section-pad) 0 calc(var(--section-pad) + 16px);
  background: var(--pink-light);
  overflow: hidden;
}

.testimonials-section .section-title {
  margin-bottom: 40px;
}

/* Smooth auto-scroll marquee — pause on hover/touch */
.tst-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to left, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, black 5%, black 95%, transparent);
}

.tst-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tstScroll 40s linear infinite;
}

.tst-marquee:hover .tst-marquee-track {
  animation-play-state: paused;
}

@keyframes tstScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Image-based testimonial cards (WhatsApp screenshots) */
.testimonial-card--img {
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(26, 20, 0, 0.1);
  background: var(--sand-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card--img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(201, 149, 122, 0.2);
}
.testimonial-card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .testimonial-card--img { width: 280px; height: 193px; }
  .tst-marquee-track { gap: 14px; }
}

@media (max-width: 375px) {
  .testimonial-card--img { width: 240px; height: 165px; }
  .tst-marquee-track { gap: 12px; }
}

/* ===== Gallery Collage ===== */
.collage-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}

.collage-header {
  margin-bottom: 48px;
}

.collage-header .section-title {
  margin-bottom: 0;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  padding: 0 12px;
}

.collage-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1;
  position: relative;
}

.collage-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.collage-item--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.collage-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imgFadeIn 0.8s ease 0.1s forwards;
  transition: transform 0.4s ease;
}

.collage-item:hover img {
  transform: scale(1.04);
}

/* ===== Shop Section ===== */
.shop-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.shop-section .section-desc {
  margin-bottom: 52px;
}

/* Tighter edge padding around product grids */
@media (max-width: 768px) {
  .shop-section .container,
  .sp-section .container { padding: 0 12px; }
}
@media (max-width: 375px) {
  .shop-section .container,
  .sp-section .container { padding: 0 8px; }
}

/* ===== Shop Shipping Bar ===== */
.shop-shipping-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--pink-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 16px;
  padding: 20px 36px;
  margin-bottom: 48px;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shipping-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.shipping-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.shipping-item span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.shipping-divider {
  width: 1px;
  height: 48px;
  background: var(--sand-dark);
  flex-shrink: 0;
}

/* Footer shipping info */
.footer-shipping {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-shipping p {
  margin: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.shop-card {
  background: var(--sand-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(26, 20, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(26, 20, 0, 0.13);
}

.shop-card--featured {
  border: 1.5px solid var(--sand-dark);
}

.shop-card-img {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: var(--pink-light);
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-slide--active {
  opacity: 1;
}

.shop-card:hover .product-slide--active {
  transform: scale(1.05);
}

.shop-card-img {
  cursor: zoom-in;
}

.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 248, 245, 0.88);
  border: none;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.shop-card:hover .img-arrow,
.img-arrow:focus {
  opacity: 1;
}

.img-arrow:hover {
  background: rgba(253, 248, 245, 1);
}

.img-arrow--prev { right: 10px; }
.img-arrow--next { left: 10px; }

@media (max-width: 768px) {
  .img-arrow { opacity: 1; width: 30px; height: 30px; font-size: 1.1rem; }
}

.shop-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 1;
}

.shop-card-badge--hot {
  background: var(--pink-deep);
}

.shop-card-badge--premium {
  background: var(--ink);
}

.shop-card-badge--sale {
  background: #dc2626;
}

.shop-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  direction: rtl;
}

.shop-card-title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}

.shop-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.shop-price-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-card-price {
  font-family: 'Heebo', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--pink-deep);
  letter-spacing: -0.5px;
}

.shop-shipping-note {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}

.shop-total-line {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--sand-dark);
  padding-top: 8px;
  margin-top: 2px;
}

/* Option Groups */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.option-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.radio-pill {
  position: relative;
}

.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill span {
  display: inline-block;
  padding: 4px 11px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
  line-height: 1.4;
}

.radio-pill input[type="radio"]:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.radio-pill span:hover {
  border-color: var(--ink);
}

.shop-card-body .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.9rem;
}

/* ===== Footer Social Row ===== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 12px;
}

.footer-wa-link:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.footer-inquiry-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.25s, transform 0.25s;
  text-decoration: none;
}
.footer-inquiry-link:hover {
  background: rgba(201, 149, 122, 0.25);
  transform: translateY(-2px);
}

/* ===== Responsive — New Sections ===== */
@media (max-width: 960px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    height: 320px;
  }

  .journey-step,
  .journey-step--flip {
    grid-template-columns: 1fr;
    direction: rtl;
    gap: 28px;
  }
  .journey-step--flip .journey-step-text { direction: rtl; }
  .journey-step-img { height: 280px; }
  .journey-step--flip .journey-step-badge { right: 20px; left: auto; }

  .journey-gift {
    grid-template-columns: 1fr;
    direction: rtl;
  }
  .journey-gift-text { padding: 36px 28px; order: 1; }
  .journey-gift-img { height: 260px; order: 2; }

  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-card-body { padding: 10px 12px 14px; gap: 5px; }
  .shop-card-title { font-size: 0.88rem; }
  .shop-card-desc { font-size: 0.72rem; }
  .shop-card-price { font-size: 1.05rem; }

  .shop-shipping-bar {
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
    align-items: flex-start;
  }

  .shipping-divider { width: 100%; height: 1px; }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collage-item--wide { grid-column: span 2; }
  .collage-item--tall { grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .hero-logo-img { width: 180px; height: 180px; }
  .hero-logo-wrap { margin-bottom: 20px; }

  .journey-steps { gap: 56px; }
  .journey-step-img { height: 240px; }


  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
    gap: 8px;
  }
  .collage-item--wide { grid-column: span 1; }
  .collage-item--tall { grid-row: span 1; }

  .shop-card-img { height: 220px; }
  .shop-card-body { padding: 22px 20px 28px; }
}

@media (max-width: 480px) {
  .journey-gift-img { height: 200px; }
  .collage-grid { grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 12px; }
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 20, 0, 0.93);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
  animation: lightboxIn 0.2s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  cursor: default;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-arrow--prev { right: 24px; }
.lightbox-arrow--next { left: 24px; }

@media (max-width: 768px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-arrow--prev { right: 10px; }
  .lightbox-arrow--next { left: 10px; }
}

/* ===== Personalisation Field ===== */
.personalisation-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.personalisation-group .option-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.45;
  display: block;
}

.personal-input {
  width: 100%;
  padding: 6px 12px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--sand);
  direction: rtl;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
}

.personal-input:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--sand-light);
}

.personal-input::placeholder {
  color: var(--muted);
}

/* ===== Workshop Packages ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.package-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: var(--pink-light);
  border-radius: 20px 20px 0 0;
  font-size: 2.8rem;
}

.package-card-header--gold {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--sand-dark) 100%);
}

.package-card--featured {
  box-shadow: 0 8px 40px rgba(201, 149, 122, 0.25);
  border: 1.5px solid var(--sand-dark);
}

.package-popular-badge {
  background: var(--pink);
  color: var(--sand-light);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.packages-grid .gallery-card-body {
  padding: 18px 20px 22px;
}
.packages-grid .gallery-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.packages-grid .gallery-card-body p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.packages-grid .gallery-card-body .btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--pink-light);
  padding: 110px 0;
}

.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-category {
  background: var(--sand-light);
  border-radius: 20px;
  border: 1px solid var(--sand-dark);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44, 42, 41, 0.05);
}

.faq-category-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-deep);
  padding: 20px 28px;
  margin: 0;
  border-bottom: 1px solid var(--sand-dark);
  background: var(--pink-light);
  letter-spacing: 0.01em;
}

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  text-align: right;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.faq-question[aria-expanded="true"] {
  color: var(--pink-deep);
  background: var(--pink-light);
}

/* Chevron icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease, background 0.25s ease;
}

/* Chevron — two legs */
.faq-icon::before {
  width: 7px;
  height: 2px;
  transform: translate(calc(-50% - 2px), -50%) rotate(45deg);
}

.faq-icon::after {
  width: 7px;
  height: 2px;
  transform: translate(calc(-50% + 2px), -50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--pink);
  border-color: var(--pink);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background: var(--sand-light);
  transform: translate(calc(-50% - 2px), -50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--sand-light);
  transform: translate(calc(-50% + 2px), -50%) rotate(45deg);
}

/* Collapse animation via max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.is-open {
  max-height: 300px;
}

.faq-answer > p {
  padding: 4px 28px 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  border-top: 1px solid var(--sand-dark);
}

@media (max-width: 768px) {
  .faq-section { padding: 80px 0; }
  .faq-question { font-size: 0.93rem; padding: 18px 20px; }
  .faq-answer > p { padding: 4px 20px 20px; }
  .faq-category-title { padding: 16px 20px; }
}

/* ===== Terms Page ===== */
.terms-hero {
  background: var(--sand-light);
  padding: 110px 0 44px;
  text-align: center;
  border-bottom: 1px solid var(--sand-dark);
}

.terms-hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  margin: 6px 0 4px;
}

.terms-hero-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Table of Contents */
.terms-toc-section {
  background: var(--sand-light);
  border-bottom: 1px solid var(--sand-dark);
  padding: 48px 0;
}

.terms-toc {
  max-width: 900px;
  margin: 0 auto;
}

.terms-toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 22px;
}

.terms-toc-group {
  margin-bottom: 24px;
}

.terms-toc-group:last-child {
  margin-bottom: 0;
}

.terms-toc-group-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.terms-toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 32px;
  padding-right: 0;
  list-style: none;
  counter-reset: none;
}

.terms-toc-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.terms-toc-list li a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px dashed var(--sand-dark);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding-bottom: 1px;
}

.terms-toc-list li a:hover {
  color: var(--pink-deep);
  border-color: var(--pink-deep);
}

/* Part headings (Terms / Privacy) */
.terms-part-heading {
  padding: 48px 0 24px;
  border-bottom: 2px solid var(--sand-dark);
  margin-bottom: 8px;
}

.terms-part-heading--privacy {
  margin-top: 24px;
  border-top: 1px solid var(--sand-dark);
  padding-top: 48px;
}

.terms-part-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.terms-part-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
}

/* Content blocks */
.terms-section {
  padding: 0 0 110px;
  background: var(--sand);
}

.terms-body {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--sand-dark);
  scroll-margin-top: 80px;
}

.terms-block:last-of-type {
  border-bottom: none;
}

.terms-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
}

.terms-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}

.terms-block p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0 0 12px;
}

.terms-block p:last-child {
  margin-bottom: 0;
}

.terms-block ul {
  margin: 8px 0 12px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-block ul li {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.75;
  list-style: disc;
}

.terms-block ul li strong {
  color: var(--ink);
  font-weight: 600;
}

/* Back to top */
.terms-back-top {
  padding: 40px 0 0;
  text-align: center;
}

.terms-back-top-link {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.terms-back-top-link:hover {
  color: var(--pink-deep);
  border-color: var(--pink-deep);
}

@media (max-width: 768px) {
  .terms-hero { padding: 90px 0 48px; }
  .terms-toc-section { padding: 36px 0; }
  .terms-toc-list { grid-template-columns: 1fr; gap: 8px; }
  .terms-section { padding: 0 0 80px; }
  .terms-body { padding: 0 4px; }
  .terms-block { padding: 28px 0; scroll-margin-top: 70px; }
  .terms-block h2 { font-size: 1.05rem; }
  .terms-part-title { font-size: 1.3rem; }
  .terms-part-heading--privacy { padding-top: 40px; }
}

@media (max-width: 375px) {
  .terms-hero { padding: 80px 0 36px; }
  .terms-hero-title { font-size: 1.6rem; }
  .terms-toc-title { font-size: 0.85rem; }
}

/* ===== Auth Modal ===== */

/* Overlay */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(44, 42, 41, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.auth-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.auth-modal {
  background: var(--sand-light);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px 40px 40px;
  box-shadow: 0 24px 80px rgba(44, 42, 41, 0.22);
  transform: scale(0.96) translateY(16px);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
}

.auth-overlay.is-open .auth-modal {
  transform: scale(1) translateY(0);
}

/* Close button (sits in top-left corner in RTL layout) */
.auth-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink-light);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.auth-modal-close:hover {
  background: var(--sand-dark);
  color: var(--ink);
}

/* Tab switcher */
.auth-tabs {
  display: flex;
  background: var(--pink-light);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 50px;
  padding: 9px 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.auth-tab--active {
  background: var(--sand-light);
  color: var(--pink-deep);
  box-shadow: 0 2px 8px rgba(44, 42, 41, 0.1);
}

/* Panel header */
.auth-panel-header { margin-bottom: 22px; }

.auth-panel-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin: 0 0 5px;
}

.auth-panel-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.auth-panel--hidden { display: none; }

/* Two-column row */
.auth-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Form field */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.auth-field label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.auth-field input {
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--sand);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
}

.auth-field input:focus {
  border-color: var(--pink);
  background: var(--sand-light);
}

.auth-field input::placeholder { color: var(--muted); }

/* Error */
.auth-error {
  font-size: 0.84rem;
  color: #c0392b;
  min-height: 1.4em;
  margin: 2px 0 8px;
  line-height: 1.4;
}

/* Submit button */
.auth-submit-btn {
  width: 100%;
  padding: 13px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  min-height: 48px;
  margin-top: 4px;
}

/* OR divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand-dark);
}

/* Google button */
.auth-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sand-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  padding: 10px 20px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
}

.auth-google-btn:hover {
  background: var(--sand);
  border-color: var(--pink);
}


/* Checkboxes */
.auth-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 8px;
}

.auth-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.auth-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--pink);
  margin-top: 2px;
  cursor: pointer;
}

.auth-checkbox-text {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.auth-checkbox-text a {
  color: var(--pink-deep);
  text-decoration: underline;
}

/* Success panel */
.auth-success {
  text-align: center;
  padding: 8px 0;
}

.auth-success-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 16px;
}

.auth-success .auth-panel-title  { margin-bottom: 6px; }
.auth-success .auth-panel-subtitle { margin-bottom: 28px; }

.auth-coupon {
  background: var(--pink-light);
  border: 2px dashed var(--sand-dark);
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 28px;
}

.auth-coupon-label {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.auth-coupon-code {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 5px;
  font-family: monospace;
  margin-bottom: 8px;
}

.auth-coupon-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* ── Navbar: auth item ─────────────────────────────────────── */

/* The pill login button — override .nav-links a defaults */
.nav-links .auth-nav-link {
  background: var(--pink-light);
  color: var(--pink-deep);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  border: 1.5px solid var(--sand-dark);
  transition: background 0.2s ease, border-color 0.2s ease;
  opacity: 1;
}

.nav-links .auth-nav-link:hover {
  background: var(--sand-dark);
  border-color: var(--pink);
  opacity: 1;
}

/* Remove the animated underline from the pill */
.nav-links .auth-nav-link::after { display: none; }

/* Logged-in state */
.auth-nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.auth-nav-user strong {
  color: var(--ink);
  font-weight: 600;
}

.auth-nav-logout {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--sand-dark);
  border-radius: 50px;
  padding: 3px 10px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.auth-nav-logout:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
  border-color: var(--pink);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .auth-modal {
    padding: 32px 22px 32px;
    border-radius: 20px;
    max-height: 88vh;
  }

  .auth-fields-row { grid-template-columns: 1fr; }

  .auth-panel-title { font-size: 1.2rem; }

  /* Keep the pill readable in the full-screen mobile nav overlay */
  .nav-links .auth-nav-link {
    font-size: 1rem;
    padding: 10px 28px;
  }

  .auth-nav-user  { font-size: 0.9rem; gap: 10px; }
  .auth-nav-logout { display: inline-block; font-size: 0.82rem; padding: 4px 12px; }
}

@media (max-width: 375px) {
  .auth-overlay { padding: 10px; }

  .auth-modal { padding: 28px 16px 28px; }

  .auth-coupon-code { font-size: 1.7rem; letter-spacing: 3px; }
}

/* ===== Catalog Loading & Empty States ===== */
.catalog-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.catalog-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--sand-dark);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: catalog-spin 0.75s linear infinite;
}

.catalog-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== Sale Price & Out-of-Stock ===== */
.shop-price-sale {
  color: var(--pink-deep);
  font-weight: 700;
}

.shop-price-original {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 4px;
}

.shop-sale-badge {
  display: inline-block;
  background: var(--pink-deep);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 50px;
  margin-right: 6px;
  vertical-align: middle;
}

.shop-card--oos {
  opacity: 0.72;
}

.shop-oos-badge {
  background: var(--sand-dark);
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.shop-order-btn--oos {
  background: var(--muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.shop-order-btn--oos:hover {
  background: var(--muted);
  transform: none;
  box-shadow: none;
}

/* ===== Hidden Admin Link ===== */
/* Hidden by default; JS adds .footer-admin-link--visible for admin email */
.footer-admin-link {
  display: none;
  margin-top: 10px;
  color: transparent;
  font-size: 0.6rem;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  text-decoration: none;
  user-select: none;
}
.footer-admin-link--visible {
  display: inline-block;
}
.footer-admin-link:hover {
  opacity: 0.5;
  color: var(--muted);
}

/* ===== E-commerce UI — Catalog v2 ===== */

/* fadein keyframe (used by injected modals/drawers) */
@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Nav three-column flanks (V9 centered-logo layout) */
.nav-start {
  display: flex;
  align-items: center;
  gap: 8px;
  /* RTL: items start from the right */
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  /* RTL: items pushed to the left */
}

/* Legacy .nav-actions — kept for any remaining references */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

/* Nav icon button */
.nav-icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.nav-icon-btn:hover {
  color: var(--pink-deep);
  transform: translateY(-1px);
}

/* Logged-in indicator dot */
.nav-icon-btn[data-logged-in="1"]::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  border: 1.5px solid var(--sand-light);
}

/* Cart badge pill */
.cart-badge,
.wishlist-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 50px;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid var(--sand-light);
  pointer-events: none;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-icon-btn { width: 34px; height: 34px; }
}

/* Product cards v2 — cursor pointer already set inline, hover handled by existing .shop-card styles */
.shop-card { cursor: pointer; }

/* Shop grid — 2 cols default, 3 cols on wide screens */
@media (min-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Clean card body — simpler padding since no radio groups */
.shop-card-body {
  padding: 16px 18px 18px;
}

/* ===== V7 SPA Views ===== */

/* All .v-section divs fill width */
.v-section {
  width: 100%;
}

/* Hide the home view on deep links (?product, ?view, ?payment) until JS routes */
html.view-routing #view-home { display: none; }

/* Shop filter pills */
.shop-filter-pill {
  background: var(--sand-light);
  border: 1.5px solid var(--sand-dark);
  color: var(--ink-soft);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: 'Assistant', sans-serif;
  white-space: nowrap;
}

.shop-filter-pill:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
}

.shop-filter-pill.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* ===== Shop Page (SPA view-shop) ===== */
.sp-section {
  min-height: 80vh;
  padding: 100px 0 120px;
  background: var(--sand);
}
/* Pages with the announcement ticker need extra top padding so the breadcrumb
   isn't hidden behind the fixed navbar + ticker (ticker 38px + navbar ≈ 70px). */
.has-ticker .sp-section {
  padding-top: 130px;
}

.sp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: 'Assistant', sans-serif;
  padding: 0;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.sp-back-btn:hover { color: var(--pink-deep); }

.sp-hero {
  margin-bottom: 32px;
}
.sp-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin: 8px 0 10px;
}
.sp-subtitle {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

/* Filter bar */
.sp-filter-bar {
  background: var(--sand-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sp-filter-row--secondary {
  justify-content: flex-start;
  gap: 14px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--sand-dark);
}

.sp-filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.sp-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-pill {
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  color: var(--ink-soft);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: 'Assistant', sans-serif;
  white-space: nowrap;
}
.sp-pill:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
}
.sp-pill--active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.sp-pill--star.sp-pill--active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Results row */
.sp-results-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sp-results-count {
  font-size: 0.88rem;
  color: var(--muted);
}
.sp-results-count strong { color: var(--ink); }

.sp-clear-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--pink-deep);
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  padding: 0;
  transition: opacity 0.2s;
}
.sp-clear-btn:hover { opacity: 0.7; }

/* Shop product grid — 2 cols mobile → 3 cols tablet → 4 cols desktop */
.sp-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .sp-shop-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 1100px) {
  .sp-shop-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

/* Shop card */
.sp-shop-card {
  background: transparent;
  border-radius: 14px;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.sp-shop-card:hover {
  transform: translateY(-3px);
}

.sp-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pink-light);
  border-radius: 14px;
}
.sp-card-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sp-card-img-wrap img.sp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.sp-card-img-wrap img.sp-slide--active {
  opacity: 1;
  position: static;
  pointer-events: auto;
}
.sp-shop-card:hover .sp-card-img-wrap img {
  transform: scale(1.04);
}

/* Image slider arrows */
.sp-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  line-height: 1;
}
.sp-shop-card:hover .sp-img-arrow {
  opacity: 1;
}
.sp-img-arrow:hover {
  background: rgba(255,255,255,1);
}
.sp-img-arrow--prev {
  right: 8px;
}
.sp-img-arrow--next {
  left: 8px;
}

/* Image dots */
.sp-img-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s;
}
.sp-shop-card:hover .sp-img-dots {
  opacity: 1;
}
.sp-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.sp-img-dot--active {
  background: #fff;
}

/* Mobile: always show arrows & dots */
@media (max-width: 768px) {
  .sp-img-arrow { opacity: 0.8; }
  .sp-img-dots  { opacity: 1; }
}
.sp-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.sp-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: 'Assistant', sans-serif;
}
.sp-card-badge--oos {
  background: var(--muted);
}

/* Wishlist heart on card image */
.sp-card-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  padding: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transition: transform 0.2s ease, color 0.2s ease;
}
.sp-card-fav svg {
  fill: rgba(255, 255, 255, 0.5);
}
.sp-card-fav:hover {
  transform: scale(1.12);
}
.sp-card-fav.is-fav {
  color: var(--heart-red);
}
.sp-card-fav.is-fav svg {
  fill: var(--heart-red);
}

/* Wishlist heart on the product detail page (next to product name) */
.pv-fav-btn {
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  line-height: 0;
}
.pv-fav-btn svg {
  fill: rgba(255, 255, 255, 0.5);
}
.pv-fav-btn:hover {
  color: var(--pink-deep);
  transform: scale(1.08);
}
.pv-fav-btn.is-fav {
  color: var(--heart-red);
}
.pv-fav-btn.is-fav svg {
  fill: var(--heart-red);
}

.sp-card-body {
  padding: 10px 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: right;
}

.sp-card-tagline {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-card-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
  text-align: right;
}

.sp-card-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.sp-card-price {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.97rem;
}
.sp-card-sale {
  font-weight: 700;
  color: var(--pink-deep);
  font-size: 0.97rem;
}
.sp-card-orig {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.82rem;
}
.sp-card-metal {
  background: var(--pink-light);
  color: var(--pink-deep);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}

.sp-card-add {
  margin-top: auto;
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Assistant', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 40px;
}
.sp-card-add:hover:not([disabled]) { background: var(--pink-deep); }
.sp-card-add--oos {
  background: var(--muted);
  cursor: default;
}

/* Ring info on shop card */
.sp-ring-note {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--pink-deep);
  background: var(--pink-light);
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  padding: 6px 10px;
  text-align: center;
  line-height: 1.35;
}
.sp-ring-sizes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.sp-ring-sizes-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}
.sp-ring-sizes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.sp-ring-size {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 50px;
  padding: 3px 9px;
  min-width: 28px;
  text-align: center;
  font-family: 'Assistant', sans-serif;
}
.sp-ring-size--out {
  color: var(--muted);
  background: transparent;
  text-decoration: line-through;
  border-style: dashed;
}

/* Product detail (catalog) — ring size selector */
/* ===== Product view — metal variant switcher (silver/gold) ===== */
.pv-metal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pv-metal-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pv-metal-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pv-metal-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  background: var(--sand-light);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.pv-metal-swatch:hover {
  transform: translateY(-1px);
  border-color: var(--pink);
}
.pv-metal-swatch.is-active {
  border-color: var(--pink);
  box-shadow: inset 0 0 0 1.5px var(--pink);
}
.pv-metal-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.55);
}
.pv-metal-swatch--gold .pv-metal-dot {
  background: linear-gradient(135deg, #f7e3b0 0%, #e6c068 45%, #c9972f 100%);
}
.pv-metal-swatch--silver .pv-metal-dot {
  background: linear-gradient(135deg, #ffffff 0%, #d9dde1 45%, #a7afb6 100%);
}
.pv-metal-swatch--rose .pv-metal-dot {
  background: linear-gradient(135deg, #f7d9cb 0%, #e4a888 45%, #c9957a 100%);
}
.pv-metal-swatch--other .pv-metal-dot {
  background: linear-gradient(135deg, #eeeeee 0%, #bbbbbb 100%);
}
.pv-metal-swatch.is-oos {
  opacity: 0.55;
}
.pv-metal-swatch.is-oos .pv-metal-name {
  text-decoration: line-through;
}

.pv-ring-note {
  background: var(--pink-light);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pink-deep);
  line-height: 1.5;
}
.pv-sizes {
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-sizes--shake { animation: pv-shake 0.4s ease; }
@keyframes pv-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.pv-sizes-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pv-sizes-title { font-weight: 700; color: var(--ink); font-size: 0.95rem; display: block; }
.pv-sizes-help  { font-size: 0.74rem; color: var(--muted); }

/* "מדריך מידות" link */
.pv-size-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink-deep);
  padding: 4px 8px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}
.pv-size-guide-btn:hover {
  background: var(--pink-light);
  color: var(--ink);
}

/* Custom dropdown — fully styled, replaces native <select> */
.pv-size-dd {
  position: relative;
  user-select: none;
}
.pv-size-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  padding: 11px 18px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: right;
}
.pv-size-trigger:hover { border-color: var(--pink); background: #fff; }
.pv-size-dd.is-open .pv-size-trigger {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(201,149,122,0.15);
  background: #fff;
}
.pv-size-current { color: var(--muted); font-weight: 500; }
.pv-size-current--filled { color: var(--ink); font-weight: 600; }
.pv-size-chev {
  color: var(--muted);
  transition: transform 0.25s ease, color 0.2s ease;
  flex-shrink: 0;
}
.pv-size-dd.is-open .pv-size-chev {
  transform: rotate(180deg);
  color: var(--pink-deep);
}

/* Options panel (Charming-styled, NOT native) */
.pv-size-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1.5px solid var(--sand-dark);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(44, 42, 41, 0.14);
  max-height: 280px;
  overflow-y: auto;
  animation: pv-fade-in 0.18s ease;
}
@keyframes pv-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pv-size-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.pv-size-option:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}
.pv-size-option--selected {
  background: var(--pink-light);
  color: var(--pink-deep);
  font-weight: 700;
}
.pv-size-option--out {
  color: var(--muted);
  cursor: not-allowed;
  background: transparent !important;
}
.pv-size-option--out:hover { background: transparent; color: var(--muted); }
.pv-size-out-tag {
  font-size: 0.72rem;
  background: #f3eae5;
  color: var(--muted);
  padding: 2px 9px;
  border-radius: 50px;
  font-weight: 600;
}

/* Size guide modal */
.pv-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 41, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pv-guide-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.pv-guide-overlay[hidden] { display: none; }
.pv-guide-modal {
  background: var(--sand);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(44, 42, 41, 0.2);
  animation: pv-guide-in 0.28s cubic-bezier(0.32, 0.72, 0.24, 1);
}
@keyframes pv-guide-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.pv-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--sand-dark);
  background: var(--sand-light);
  flex-shrink: 0;
}
.pv-guide-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.2px;
}
.pv-guide-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.pv-guide-close:hover { background: var(--pink-light); color: var(--pink-deep); }
.pv-guide-body {
  padding: 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pv-guide-section { display: flex; flex-direction: column; gap: 10px; }
.pv-guide-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sand-dark);
}
.pv-guide-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.pv-guide-list {
  margin: 0;
  padding-inline-start: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.pv-guide-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pv-guide-tips li {
  position: relative;
  padding-inline-start: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.pv-guide-tips li::before {
  content: '•';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--pink-deep);
  font-weight: 700;
}
.pv-guide-table-intro { font-size: 0.85rem; color: var(--muted); }
.pv-guide-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  background: #fff;
}
.pv-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.pv-guide-table thead th {
  background: var(--pink-light);
  color: var(--pink-deep);
  font-weight: 700;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--sand-dark);
  white-space: nowrap;
  font-size: 0.82rem;
}
.pv-guide-table tbody td {
  padding: 9px 6px;
  text-align: center;
  border-bottom: 1px solid var(--sand);
  color: var(--ink);
}
.pv-guide-table tbody tr:last-child td { border-bottom: none; }
.pv-guide-table tbody tr:nth-child(even) { background: var(--sand-light); }

/* Empty state */
.sp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Search input */
.sp-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sp-search-input {
  flex: 1;
  padding: 7px 14px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--sand);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.sp-search-input:focus { border-color: var(--pink); }
.sp-search-btn {
  padding: 7px 18px;
  border: 1.5px solid var(--pink);
  border-radius: 50px;
  background: var(--pink);
  color: #fff;
  font-family: 'Assistant', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.sp-search-btn:hover {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
}
.sp-card-sku {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Free-ship banner */
.sp-freeship {
  background: var(--pink-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.sp-freeship--done {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

/* Active nav link highlight (shop.html) */
.nav-link--active {
  color: var(--pink-deep);
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .sp-filter-bar { padding: 16px; }
  .sp-filter-row { flex-wrap: wrap; gap: 10px; }
  .sp-filter-row--secondary { gap: 10px; }
  .sp-shop-grid { gap: 14px; }
  .sp-card-name { font-size: 0.85rem; }
}

/* ===== V14: Sidebar Drawer, Card Enhancements, Slim Freeship ===== */

/* Slim free-ship bar */
.sp-freeship-slim {
  font-size: 0.82rem;
  padding: 7px 16px;
  text-align: center;
  background: var(--pink-light);
  border-bottom: 1px solid var(--sand-dark);
  margin-bottom: 20px;
  border-radius: 10px;
  color: var(--ink-soft);
}

/* Filter trigger row */
/* ===== Category Top Bar ===== */
.sp-cat-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 0 22px;
  margin-bottom: 10px;
}

.sp-cat-pill {
  flex-shrink: 0;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: 'Assistant', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease;
}
.sp-cat-pill::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.sp-cat-pill:hover {
  color: var(--ink);
}
.sp-cat-pill:hover::after {
  width: 100%;
}
.sp-cat-pill--active {
  color: var(--ink);
  font-weight: 700;
}
.sp-cat-pill--active::after {
  width: 100%;
  background: var(--pink);
}
.sp-cat-pill--active:hover {
  color: var(--ink);
}

/* "Back to all categories" — distinct, more prominent than the sub-category
   pills so it reads as a way out of the current category. */
.sp-cat-pill--back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--pink-light);
  color: var(--pink-deep);
  border: 1.5px solid var(--sand-dark);
  font-weight: 700;
  margin-inline-end: 6px;
}
.sp-cat-pill--back::after { display: none; }
.sp-cat-pill--back:hover {
  background: var(--pink);
  color: var(--sand-light);
  border-color: var(--pink);
}
.sp-back-arrow { flex-shrink: 0; }
/* Arrow points "back": left in LTR, right in RTL */
[dir="rtl"] .sp-back-arrow { transform: scaleX(-1); }

/* Mobile: wrap to multiple rows so all categories stay visible
   (previously used overflow-x scroll which hid the last category). */
@media (max-width: 768px) {
  .sp-cat-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 14px 4px 14px;
  }
  .sp-cat-pill {
    padding: 8px 12px;
    font-size: 0.84rem;
  }
}

/* ===== Sub-category row (under main category bar) ===== */
.sp-subcat-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 18px;
  margin: -4px 0 4px;
}
.sp-subcat-pill {
  padding: 5px 14px;
  border: 1px solid var(--sand-dark);
  border-radius: 50px;
  background: transparent;
  color: var(--ink-soft);
  font-family: 'Assistant', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.sp-subcat-pill:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
}
.sp-subcat-pill--active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sp-subcat-bar { gap: 6px; padding: 0 4px 14px; }
  .sp-subcat-pill { padding: 4px 12px; font-size: 0.76rem; }
}

.sp-filter-trigger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sp-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  padding: 9px 20px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.sp-filter-trigger:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

/* Sidebar drawer backdrop */
.sp-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.sp-drawer-backdrop--open {
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar drawer panel */
.sp-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 88vw;
  height: 100vh;
  background: var(--sand-light);
  z-index: 401;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -6px 0 28px rgba(44, 42, 41, 0.14);
  display: flex;
  flex-direction: column;
}
.sp-drawer--open {
  right: 0;
}

.sp-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--sand-dark);
  position: sticky;
  top: 0;
  background: var(--sand-light);
  z-index: 1;
}
.sp-drawer-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.sp-drawer-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.sp-drawer-close-btn:hover { background: var(--pink-light); }

.sp-drawer-body {
  padding: 8px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sp-drawer-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--sand-dark);
}
.sp-drawer-section-title {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sp-drawer-footer {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  margin-top: auto;
  border-top: 1px solid var(--sand-dark);
  position: sticky;
  bottom: 0;
  background: var(--sand-light);
}

/* Card quick-view button */
.sp-card-quickview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 2;
}
.sp-shop-card:hover .sp-card-quickview {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Customization badge */
.sp-custom-badge {
  font-size: 0.7rem;
  color: var(--pink-deep);
  background: var(--pink-light);
  padding: 5px 10px;
  text-align: center;
  line-height: 1.4;
  border-radius: 50px;
}

/* Material chip */
.sp-card-material {
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--sand-dark);
  padding: 2px 8px;
  border-radius: 50px;
}

/* ===== V14.1: Product Customization Field ===== */

.sp-custom-field {
  padding: 10px 14px 12px;
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
}

.sp-custom-field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}

.sp-custom-field-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
  cursor: default;
}

.sp-custom-optional {
  font-weight: 400;
  color: var(--muted);
}

/* Info icon + tooltip */
.sp-custom-info-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.sp-custom-info-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-dark);
  background: var(--sand-light);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.sp-custom-info-btn:hover,
.sp-custom-info-btn:focus {
  border-color: var(--pink);
  color: var(--pink-deep);
  outline: none;
}

.sp-custom-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.55;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  width: 200px;
  text-align: right;
  direction: rtl;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 20;
}
.sp-custom-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.sp-custom-info-wrap:hover .sp-custom-tooltip,
.sp-custom-info-btn:focus ~ .sp-custom-tooltip {
  opacity: 1;
}

/* Package card image header (V14.2) */
.package-card-header--img {
  padding: 12px;
  background: var(--pink-light);
  overflow: hidden;
}
.package-card-header--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

/* Textarea */
.sp-custom-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 10px;
  background: var(--sand-light);
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--ink-soft);
  direction: rtl;
  resize: none;
  line-height: 1.5;
  transition: border-color 0.2s;
  display: block;
}
.sp-custom-textarea::placeholder {
  color: var(--muted);
  font-size: 0.76rem;
}
.sp-custom-textarea:focus {
  outline: none;
  border-color: var(--pink);
}

/* Product view — breadcrumb */
.pv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-family: 'Assistant', sans-serif;
  line-height: 1;
}
.pv-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pv-breadcrumb a:hover {
  color: var(--pink-deep);
}
.pv-breadcrumb-sep {
  color: var(--muted);
  font-weight: 300;
  user-select: none;
}
.pv-breadcrumb-current {
  color: var(--muted);
  font-weight: 400;
}

/* Product view — 2-col on desktop, 1-col on mobile */
.pv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .pv-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== Product view loading skeleton ===== */
@keyframes pv-skel-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
.pv-skel-block {
  background: linear-gradient(90deg, var(--pink-light) 0%, var(--sand-dark) 50%, var(--pink-light) 100%);
  background-size: 200% 100%;
  border-radius: 12px;
  animation: pv-skel-pulse 1.4s ease-in-out infinite;
}
.pv-skel-img {
  aspect-ratio: 1;
  border-radius: 20px;
}
.pv-skel-line { height: 14px; margin-bottom: 14px; }
.pv-skel-line--title { height: 28px; width: 70%; margin-bottom: 18px; }
.pv-skel-line--price { height: 22px; width: 35%; margin-bottom: 22px; }
.pv-skel-line--short { width: 60%; }
.pv-skel-line--btn   { height: 48px; border-radius: 50px; margin-top: 18px; }


/* ===== Main wrapper (isolates CSS filters from fixed elements) ===== */
#main-wrapper {
  /* Acts as the filter target; fixed elements live outside this div */
  min-height: 100vh;
}

/* ===== Skip to content link (WCAG 2.4.1) ===== */
.skip-link {
  position: absolute;
  top: -60px;
  right: 16px;
  z-index: 100000;
  background: var(--pink-deep);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* ===== Accessibility Widget (Israeli Standard 5568 / WCAG 2.0 AA) ===== */

/* -- Widget container -- */
#a11y-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 8000;
  direction: rtl;
}

/* -- Toggle button (charcoal, neutral so it doesn't compete with brand) -- */
#a11y-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2c2a29;
  border: 2px solid #2c2a29;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(44, 42, 41, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #fff;
}
#a11y-toggle:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(44, 42, 41, 0.5);
}
#a11y-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #2c2a29;
}

/* -- Menu panel -- */
#a11y-menu {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 340px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

/* -- Menu header -- */
.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}
.a11y-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  font-family: 'Assistant', sans-serif;
  letter-spacing: 0.3px;
}
#a11y-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: #64748b;
  padding: 0 4px;
  border-radius: 6px;
  line-height: 1;
  font-family: 'Assistant', sans-serif;
  transition: background 0.2s, color 0.2s;
}
#a11y-close:hover { background: #f1f5f9; color: #1e293b; }
#a11y-close:focus-visible { outline: 2px solid #2c2a29; outline-offset: 2px; }

/* -- Scrollable body with sections -- */
.a11y-body {
  max-height: 420px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.a11y-body::-webkit-scrollbar { width: 4px; }
.a11y-body::-webkit-scrollbar-track { background: transparent; }
.a11y-body::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

/* -- Section -- */
.a11y-section {
  border-bottom: 1px solid #f1f5f9;
}
.a11y-section:last-child { border-bottom: none; }
.a11y-section-label {
  padding: 8px 14px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Assistant', sans-serif;
  background: #fafafa;
  border-bottom: 1px solid #f1f5f9;
}

/* -- Feature grid (3 columns per section) -- */
.a11y-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #f1f5f9;
}
.a11y-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 11px 6px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  transition: background 0.2s;
  min-height: 60px;
}
.a11y-btn:hover { background: #f8fafc; }
.a11y-btn.active { background: #f0f0f0; }
.a11y-btn:focus-visible { outline: 2px solid #2c2a29; outline-offset: -2px; }
.a11y-btn-icon {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  line-height: 1;
  font-family: 'Assistant', monospace;
}
.a11y-btn-label {
  font-size: 0.63rem;
  color: #64748b;
  text-align: center;
  line-height: 1.3;
  font-family: 'Assistant', sans-serif;
}
.a11y-btn.active .a11y-btn-icon  { color: #2c2a29; }
.a11y-btn.active .a11y-btn-label { color: #2c2a29; font-weight: 700; }

/* -- Footer -- */
.a11y-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  gap: 8px;
}
#a11y-reset,
#a11y-statement-btn {
  background: none;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  color: #64748b;
  transition: background 0.2s, border-color 0.2s;
}
#a11y-reset:hover,
#a11y-statement-btn:hover { background: #f1f5f9; border-color: #94a3b8; color: #1e293b; }
#a11y-reset:focus-visible,
#a11y-statement-btn:focus-visible { outline: 2px solid #2c2a29; outline-offset: 2px; }

/* -- Accessibility Statement Modal -- */
#a11y-statement-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#a11y-statement-modal[hidden] { display: none; }
.a11y-statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.a11y-statement-content {
  position: relative;
  background: var(--sand-light);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  direction: rtl;
}
.a11y-statement-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  border-radius: 8px;
  padding: 2px 8px;
  font-family: 'Assistant', sans-serif;
  transition: background 0.2s;
}
.a11y-statement-close:hover { background: var(--pink-light); color: var(--ink); }
.a11y-statement-close:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

/* ===== Accessibility Modifier Classes ===== */
/*
 * CRITICAL: CSS `filter` on <body> creates a new containing block which
 * breaks position:fixed children. All visual filters are applied to the
 * page content wrapper ONLY — #main-wrapper on the home page, #main-content
 * on the inner pages (shop/workshops/legal/terms) — keeping the accessibility
 * widget, WhatsApp FAB, cart drawer, and auth modal correctly fixed in the
 * viewport. accessibility.js targets the same element (see getTarget).
 */

/* Grayscale */
:is(#main-wrapper, #main-content).a11y-grayscale { filter: grayscale(100%); }

/* High contrast */
:is(#main-wrapper, #main-content).a11y-high-contrast {
  --sand:       #000000;
  --sand-dark:  #ffffff;
  --sand-light: #111111;
  --pink-light: #111111;
  --pink:       #ffff00;
  --sand-deep:  #ffff00;
  --pink-deep:  #ffff00;
  --ink:        #ffffff;
  --ink-soft:   #ffffff;
  --muted:      #cccccc;
  background:   #000000;
  color:        #ffffff;
}

/* Negative contrast (invert) */
:is(#main-wrapper, #main-content).a11y-negative-contrast { filter: invert(100%) hue-rotate(180deg); }

/* Light background */
:is(#main-wrapper, #main-content).a11y-light-background {
  --sand:       #ffffff;
  --sand-light: #ffffff;
  --pink-light: #fff8f5;
  background:   #ffffff;
}

/* Readable font */
:is(#main-wrapper, #main-content).a11y-readable-font,
:is(#main-wrapper, #main-content).a11y-readable-font h1,
:is(#main-wrapper, #main-content).a11y-readable-font h2,
:is(#main-wrapper, #main-content).a11y-readable-font h3,
:is(#main-wrapper, #main-content).a11y-readable-font h4,
:is(#main-wrapper, #main-content).a11y-readable-font p,
:is(#main-wrapper, #main-content).a11y-readable-font a,
:is(#main-wrapper, #main-content).a11y-readable-font button,
:is(#main-wrapper, #main-content).a11y-readable-font input,
:is(#main-wrapper, #main-content).a11y-readable-font select,
:is(#main-wrapper, #main-content).a11y-readable-font textarea,
:is(#main-wrapper, #main-content).a11y-readable-font label,
:is(#main-wrapper, #main-content).a11y-readable-font span,
:is(#main-wrapper, #main-content).a11y-readable-font li {
  font-family: Arial, Helvetica, sans-serif;
}

/* Line height */
:is(#main-wrapper, #main-content).a11y-line-height p,
:is(#main-wrapper, #main-content).a11y-line-height li,
:is(#main-wrapper, #main-content).a11y-line-height span,
:is(#main-wrapper, #main-content).a11y-line-height a,
:is(#main-wrapper, #main-content).a11y-line-height label {
  line-height: 2;
}

/* Letter spacing */
:is(#main-wrapper, #main-content).a11y-letter-spacing p,
:is(#main-wrapper, #main-content).a11y-letter-spacing li,
:is(#main-wrapper, #main-content).a11y-letter-spacing span,
:is(#main-wrapper, #main-content).a11y-letter-spacing a,
:is(#main-wrapper, #main-content).a11y-letter-spacing button,
:is(#main-wrapper, #main-content).a11y-letter-spacing label {
  letter-spacing: 0.12em;
}

/* Highlight links */
:is(#main-wrapper, #main-content).a11y-highlight-links a,
:is(#main-wrapper, #main-content).a11y-highlight-links [role="link"] {
  text-decoration: underline;
  outline: 2px solid var(--pink);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Highlight headings */
:is(#main-wrapper, #main-content).a11y-highlight-headings h1,
:is(#main-wrapper, #main-content).a11y-highlight-headings h2,
:is(#main-wrapper, #main-content).a11y-highlight-headings h3,
:is(#main-wrapper, #main-content).a11y-highlight-headings h4 {
  border-bottom: 3px solid var(--pink);
  padding-bottom: 4px;
}

/* Pause animations — on body to cover ALL elements including fixed UI */
body.a11y-pause-animations *,
body.a11y-pause-animations *::before,
body.a11y-pause-animations *::after {
  animation-duration:        0.001s;
  animation-delay:           0.001s;
  transition-duration:       0.001s;
  animation-iteration-count: 1;
}

/* Big cursors — on body so cursor applies everywhere */
body.a11y-big-cursor-white * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M5 3l28 16-12 2-7 12z' fill='white' stroke='black' stroke-width='2'/%3E%3C/svg%3E") 5 3, auto; }
body.a11y-big-cursor-black * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M5 3l28 16-12 2-7 12z' fill='black' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 5 3, auto; }

/* Reading guide — fixed horizontal line following cursor */
#a11y-reading-guide {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 149, 122, 0.7);
  pointer-events: none;
  z-index: 7999;
  transform: translateY(-1px);
  box-shadow: 0 0 8px rgba(201, 149, 122, 0.4);
}

/* Reading mask — two dimming panels above/below reading band */
.a11y-reading-mask-panel {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 7998;
  transition: height 0.05s linear;
}

/* Responsive: shift widget on mobile */
@media (max-width: 480px) {
  #a11y-widget { bottom: 16px; left: 16px; }
  #a11y-toggle { width: 46px; height: 46px; }
  #a11y-menu { width: 300px; }
}

/* ===== V9 — Promotional Pop-up (Welcome Banner) ===== */

#promo-popup {
  position: fixed;
  inset: 0;
  z-index: 7800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#promo-popup.promo-visible {
  opacity: 1;
  pointer-events: all;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 42, 41, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.promo-card {
  position: relative;
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  border-radius: 24px;
  padding: 48px 38px 38px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 28px 70px rgba(44, 42, 41, 0.22);
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  direction: rtl;
}
#promo-popup.promo-visible .promo-card {
  transform: translateY(0);
}

.promo-close-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  padding: 2px 10px;
  border-radius: 8px;
  line-height: 1;
  font-family: 'Assistant', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.promo-close-btn:hover { background: var(--pink-light); color: var(--ink); }
.promo-close-btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

.promo-deco {
  margin-bottom: 14px;
  line-height: 1;
  display: flex;
  justify-content: center;
  opacity: 0.85;
}

.promo-title {
  font-family: 'Heebo', 'Assistant', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.35;
  letter-spacing: 0.3px;
}

.promo-sub {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 28px;
  font-family: 'Assistant', sans-serif;
}
.promo-sub strong {
  color: var(--pink-deep);
  font-weight: 700;
}

.promo-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  min-height: 50px;
  margin-bottom: 14px;
  padding: 14px 20px;
}

.promo-later-btn {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s;
  display: inline-block;
}
.promo-later-btn:hover { color: var(--ink-soft); }
.promo-later-btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

@media (max-width: 480px) {
  .promo-card { padding: 42px 22px 30px; border-radius: 20px; }
  .promo-title { font-size: 1.2rem; }
  .promo-sub { font-size: 0.92rem; }
}

/* ===== Ticker Banner ===== */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ticker-h);
  background: var(--ink);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ticker-bar .announcement-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sand-light);
  font-family: 'Assistant', sans-serif;
  transition: opacity 0.5s ease;
}
.ticker-bar .announcement-text.fade-out {
  opacity: 0;
}

/* ===== Categories Section ===== */
.categories-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  border: none;
  padding: 0;
  background: var(--sand-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 149, 122, 0.28);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 0, 0.62) 0%, rgba(26, 20, 0, 0.06) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(168, 112, 90, 0.78) 0%, rgba(201, 149, 122, 0.14) 55%, transparent 100%);
}

.category-card-label {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Assistant', sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: right;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .categories-section { padding: 70px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { border-radius: 14px; }
  .category-card-label { font-size: 0.92rem; }
  .category-card:hover { transform: none; }
}

@media (max-width: 375px) {
  :root { --section-pad: 40px; }

  .categories-grid { gap: 10px; grid-template-columns: 1fr; }
  .category-card-label { font-size: 0.85rem; padding: 12px 14px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .testimonial-card { width: 260px; }
  .collage-grid { gap: 6px; grid-template-columns: repeat(2, 1fr); }
  .collage-item--wide { grid-column: span 1; }

  /* Hero */
  .hero { padding: 100px 20px 60px; }
  .hero-logo-img { width: 120px; height: 120px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Shop cards — readability + touch targets */
  .shop-card-body { padding: 12px 14px 16px; gap: 8px; }
  .shop-card-title { font-size: 0.9rem; }
  .shop-card-desc { font-size: 0.8rem; }
  .option-label { font-size: 0.78rem; }
  .radio-pill span { padding: 6px 13px; font-size: 0.82rem; }
  .shop-shipping-bar { padding: 14px 16px; gap: 12px; }

  /* Journey steps */
  .journey-step-img { height: 200px; }
  .step-image { height: 200px; }

  /* Checkout */
  .co-delivery-selector { grid-template-columns: 1fr; }
}


/* ===== V15.3 Checkout Form ===== */

/* Checkout layout */
.co-section { padding: 130px 0 110px; background: var(--sand); min-height: 80vh; }
@media (max-width: 768px) { .co-section { padding-top: 110px; } }
.co-secure-header { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--muted); margin-bottom: 28px; }
.co-form-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

/* Form panel */
.co-form-panel { display: flex; flex-direction: column; gap: 24px; }
.co-section-title { font-size: 0.78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.co-field-group { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--sand-light); border-radius: 16px; border: 1px solid var(--sand-dark); }
.co-fields-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.co-fields-row--equal { grid-template-columns: 1fr 1fr; }
.co-fields-row--three { grid-template-columns: 1fr 80px 90px; }
.co-fields-row--four { grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 8px; }
.co-field--narrow { width: 100px; }
.co-field { display: flex; flex-direction: column; gap: 4px; }
.co-label { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.co-input { padding: 11px 14px; border: 1.5px solid var(--sand-dark); border-radius: 10px; font-family: inherit; font-size: 0.9rem; color: var(--ink-soft); background: var(--sand); width: 100%; box-sizing: border-box; transition: border-color 0.2s; direction: rtl; }
.co-input:focus { outline: none; border-color: var(--pink); }

/* Delivery selector */
.co-delivery-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-delivery-option { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; border: 2px solid var(--sand-dark); border-radius: 14px; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: var(--sand-light); }
.co-delivery-option input[type="radio"] { display: none; }
.co-delivery-option--active { border-color: var(--pink); background: var(--pink-light); }
.co-delivery-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.co-delivery-cost { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.co-free-badge { color: var(--pink-deep); }

/* Terms */
.co-terms-row { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--ink-soft); }
.co-terms-row a { color: var(--pink-deep); }
.co-form-err { font-size: 0.82rem; color: #ef4444; min-height: 1.2rem; text-align: center; }

/* Submit button */
.co-submit-btn { width: 100%; min-height: 52px; font-size: 1rem; font-weight: 700; }

/* Trust icons */
.co-trust-icons { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.co-trust-badge { font-size: 0.74rem; font-weight: 700; color: var(--muted); border: 1px solid var(--sand-dark); border-radius: 6px; padding: 4px 10px; background: var(--sand-light); }

/* Address group: section header + "different address" toggle */
.co-addr-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.co-addr-other-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); user-select: none; }
.co-addr-other-toggle input { accent-color: var(--pink); width: 16px; height: 16px; cursor: pointer; margin: 0; }
.co-addr-other-toggle:hover { color: var(--pink-deep); }
.co-addr-hint { font-size: 0.78rem; color: var(--muted); margin: 0 0 14px; line-height: 1.5; }

/* Secure-payment trust note shown under the submit button */
.co-secure-note { margin-top: 18px; padding: 16px 18px; background: var(--sand-light); border: 1px solid var(--sand-dark); border-radius: 12px; text-align: center; }
.co-secure-note-row { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 0.92rem; }
.co-secure-note-row svg { color: var(--pink-deep); }
.co-secure-note-title { letter-spacing: 0.2px; }
.co-secure-note-body { margin: 8px 0 12px; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; max-width: 460px; margin-left: auto; margin-right: auto; }
.co-secure-note-cards { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.co-secure-card { font-size: 0.7rem; font-weight: 700; color: var(--muted); border: 1px solid var(--sand-dark); border-radius: 6px; padding: 3px 9px; background: var(--sand); letter-spacing: 0.3px; }

/* Pickup info card (shown when self-pickup selected) */
.co-pickup-card { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; background: #fff; border: 1px solid var(--sand-dark); border-radius: 12px; }
.co-pickup-row { display: flex; flex-direction: row; align-items: center; gap: 8px; font-size: 0.9rem; line-height: 1.4; }
.co-pickup-icon { flex-shrink: 0; color: var(--pink-deep); }
.co-pickup-label { font-weight: 700; color: var(--ink); white-space: nowrap; }
.co-pickup-value { color: var(--ink-soft); font-weight: 500; }
.co-pickup-phone { color: var(--ink); font-weight: 700; text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s; }
.co-pickup-phone:hover { color: var(--pink-deep); text-decoration: underline; }

/* Legal links footer */
.co-legal-links { margin-top: 16px; padding: 12px 8px; text-align: center; font-size: 0.78rem; color: var(--muted); display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 10px; }
.co-legal-links a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.co-legal-links a:hover { color: var(--pink-deep); text-decoration: underline; }
.co-legal-links span { color: var(--sand-dark); }

/* Summary panel */
.co-summary-panel { position: sticky; top: 100px; background: var(--sand-light); border: 1px solid var(--sand-dark); border-radius: 20px; padding: 24px; }
.co-summary-header { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.co-summary-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.co-summary-item { display: flex; align-items: center; gap: 12px; }
.co-summary-item-img { position: relative; width: 52px; height: 52px; border-radius: 8px; overflow: hidden; background: var(--pink-light); flex-shrink: 0; }
.co-summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.co-summary-item-qty { position: absolute; top: -6px; left: -6px; background: var(--ink); color: #fff; border-radius: 50%; width: 20px; height: 20px; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.co-summary-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.co-summary-item-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.co-summary-item-note { font-size: 0.74rem; color: var(--pink-deep); font-style: italic; }
.co-summary-item-price { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); flex-shrink: 0; }
.co-summary-totals { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.co-summary-row { display: flex; justify-content: space-between; color: var(--ink-soft); }
.co-summary-divider { border: none; border-top: 1.5px solid var(--sand-dark); margin: 4px 0; }
.co-summary-vat { font-size: 0.78rem; color: var(--muted); }
.co-summary-total { font-size: 1rem; font-weight: 700; color: var(--ink); }
.co-freeship-note { font-size: 0.8rem; color: var(--pink-deep); text-align: center; margin-top: 10px; padding: 8px; background: var(--pink-light); border-radius: 8px; }

/* Thank-you page */
.co-ty-section { min-height: 80vh; padding: 140px 0 120px; background: var(--sand); display: flex; align-items: flex-start; justify-content: center; position: relative; overflow: hidden; }
.co-ty-wrap { text-align: center; max-width: 480px; padding: 0 20px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.co-ty-checkmark { width: 80px; height: 80px; border-radius: 50%; background: #d1fae5; border: 3px solid #34d399; color: #065f46; font-size: 2.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.co-ty-title { font-size: 1.8rem; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.co-ty-subtitle { font-size: 0.95rem; color: var(--muted); margin: 0 0 28px; line-height: 1.7; }
.co-ty-order-id { font-size: 0.9rem; color: var(--ink-soft); background: var(--pink-light); border: 1px solid var(--sand-dark); border-radius: 10px; padding: 12px 20px; margin-bottom: 28px; display: inline-block; }
.co-ty-wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-bottom: 14px; min-height: 52px; font-size: 0.97rem; }
.co-ty-shop-btn { width: 100%; }

/* Confetti */
.co-ty-confetti { position: absolute; inset: 0; pointer-events: none; }
.co-confetti-piece { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: co-fall 3s ease-in forwards; }
.co-confetti-1  { left: 10%; background: #c9957a; animation-delay: 0s;    animation-duration: 2.8s; }
.co-confetti-2  { left: 20%; background: #f5ece7; animation-delay: .2s;   animation-duration: 3.1s; }
.co-confetti-3  { left: 33%; background: #a8705a; animation-delay: .4s;   animation-duration: 2.6s; }
.co-confetti-4  { left: 45%; background: #e8cfc4; animation-delay: .1s;   animation-duration: 3.3s; }
.co-confetti-5  { left: 55%; background: #c9957a; animation-delay: .5s;   animation-duration: 2.9s; }
.co-confetti-6  { left: 65%; background: #fdf8f5; animation-delay: .3s;   animation-duration: 3.0s; }
.co-confetti-7  { left: 75%; background: #a8705a; animation-delay: .7s;   animation-duration: 2.7s; }
.co-confetti-8  { left: 85%; background: #e8cfc4; animation-delay: .6s;   animation-duration: 3.2s; }
.co-confetti-9  { left: 22%; background: #c9957a; animation-delay: .9s;   animation-duration: 2.5s; }
.co-confetti-10 { left: 50%; background: #a8705a; animation-delay: .8s;   animation-duration: 3.4s; }
.co-confetti-11 { left: 70%; background: #f5ece7; animation-delay: 1.0s;  animation-duration: 2.8s; }
.co-confetti-12 { left: 90%; background: #c9957a; animation-delay: 1.1s;  animation-duration: 3.0s; }
@keyframes co-fall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Mobile */
@media (max-width: 768px) {
  .co-form-layout { grid-template-columns: 1fr; gap: 24px; }
  .co-summary-panel { position: static; order: -1; }
  .co-delivery-selector { grid-template-columns: 1fr; }
  .co-fields-row { grid-template-columns: 1fr 90px; }
  .co-fields-row--equal { grid-template-columns: 1fr 1fr; }
  .co-fields-row--three { grid-template-columns: 1fr 70px 80px; gap: 8px; }
  .co-fields-row--four { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ===== Legal Page ===== */

.legal-hero {
  background: var(--sand-light);
  padding: 116px 0 44px;
  text-align: center;
  border-bottom: 1px solid var(--sand-dark);
}
.legal-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.legal-hero-title {
  font-family: 'Assistant', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}
.legal-hero-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sticky anchor sub-nav */
.legal-subnav {
  position: sticky;
  top: 74px;
  z-index: 40;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-dark);
}
.legal-subnav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.legal-subnav-list::-webkit-scrollbar { display: none; }
.legal-subnav-link {
  display: block;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.legal-subnav-link:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Main layout */
.legal-main {
  padding: 72px 0 100px;
  background: var(--sand);
}
.legal-container {
  max-width: 860px;
}

/* Sections */
.legal-section {
  margin-bottom: 72px;
  scroll-margin-top: 140px;
}
.legal-section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand-dark);
}
.legal-section-number {
  font-family: 'Assistant', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  flex-shrink: 0;
}
.legal-section-title {
  font-family: 'Assistant', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.legal-section-body {
  color: var(--ink-soft);
  line-height: 1.8;
}
.legal-section-body p {
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.legal-h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.6rem;
}
.legal-h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.4rem 0 0.4rem;
}
.legal-list {
  padding-right: 1.4rem;
  margin-bottom: 1rem;
}
.legal-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Former cards/callouts — flattened to plain document text for a uniform look */
.legal-grid-2 {
  display: block;
  margin: 1rem 0;
}
.legal-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 1.4rem 0;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.legal-card strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.legal-card p { margin: 0; }

.legal-note {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 1rem 0 1.4rem;
}

.legal-warning,
.legal-warning--critical {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 1.4rem 0;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.legal-warning strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.legal-warning p { margin: 0 0 0.6rem; }

/* Bottom CTA */
.legal-cta {
  text-align: center;
  padding: 36px 28px;
  background: var(--sand-light);
  border-radius: 12px;
  border: 1px solid var(--sand-dark);
  margin-top: 24px;
}
.legal-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-hero { padding: 100px 0 40px; }
  .legal-subnav { top: 0; }
  .legal-grid-2 { grid-template-columns: 1fr; }
  .legal-section { margin-bottom: 52px; }
  .legal-section-title { font-size: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}

/* ===== Footer Policy Buttons ===== */
.footer-policy-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.footer-policy-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy-btn:hover {
  color: var(--sand);
}

/* ===== Language Dropdown ===== */
.lang-dropdown {
  position: relative;
  display: inline-flex;
}
.lang-dropdown-btn {
  background: none;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Assistant', sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 3px;
}
.lang-dropdown-btn::after {
  content: '';
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
}
.lang-dropdown-btn:hover,
.lang-dropdown.open .lang-dropdown-btn {
  background: var(--pink-light);
  border-color: var(--pink);
  color: var(--pink-deep);
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand-light);
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  z-index: 100;
  min-width: 110px;
  overflow: hidden;
}
.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}
.lang-dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  transition: background 0.15s;
  text-align: right;
}
.lang-dropdown-menu button:hover {
  background: var(--pink-light);
}
.lang-dropdown-menu button.active {
  color: var(--pink-deep);
  background: var(--pink-light);
}
.lang-dropdown-menu button + button {
  border-top: 1px solid var(--sand-dark);
}
.lang-toggle-desktop { display: none; }
.lang-toggle-mobile  { display: block; text-align: center; padding: 8px 0; }
@media (max-width: 768px) {
  .lang-dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
  }
}

/* ===== Form Validation Errors ===== */
.form-field-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  min-height: 0;
  margin-top: 2px;
}
.form-field-error:empty { display: none; }

/* ===== Inquiry Type Selector ===== */
.inquiry-type-selector {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.inquiry-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: 14px;
  background: var(--sand-light);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.inquiry-type-btn:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}
.inquiry-type-btn.active {
  border-color: var(--pink);
  background: var(--pink-light);
  color: var(--pink-deep);
  box-shadow: 0 2px 10px rgba(201, 149, 122, 0.18);
}
.inquiry-type-btn svg {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .inquiry-type-selector { gap: 8px; }
  .inquiry-type-btn { padding: 12px 10px; font-size: 0.84rem; }
}

/* ===== Inquiry Success Popup ===== */
.inquiry-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 42, 41, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.inquiry-success-overlay.visible { opacity: 1; }
.inquiry-success-card {
  background: var(--sand-light);
  border-radius: 22px;
  padding: 48px 36px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.inquiry-success-overlay.visible .inquiry-success-card { transform: translateY(0); }
.inquiry-success-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--pink-light);
  color: var(--ink-soft);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.inquiry-success-close:hover { background: var(--sand-dark); }
.inquiry-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--sand-light);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.inquiry-success-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.inquiry-success-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 24px;
}
.inquiry-success-btn {
  min-width: 140px;
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(44, 42, 41, 0.96);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner-text {
  color: #f5ece7;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
}
.cookie-banner-text a {
  color: var(--sand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: #e0b99a;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn-accept {
  background: var(--sand-deep);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 26px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
}
.cookie-btn-accept:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
}
.cookie-btn-settings,
.cookie-btn-reject {
  background: transparent;
  color: #d4c4b8;
  border: 1.5px solid rgba(212, 196, 184, 0.4);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.cookie-btn-settings:hover,
.cookie-btn-reject:hover {
  border-color: var(--sand-deep);
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(44, 42, 41, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--sand);
  border-radius: 20px;
  max-width: 480px;
  width: calc(100% - 32px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.cookie-modal-overlay.is-visible .cookie-modal {
  transform: translateY(0);
}
.cookie-modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--sand-dark);
}
.cookie-modal-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.cookie-modal-header p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.cookie-modal-body {
  padding: 8px 28px;
}
.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.cookie-category-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.cookie-category-locked {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--pink-light);
  padding: 3px 10px;
  border-radius: 50px;
}
.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--sand-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--sand-deep);
}
.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(-18px);
}
.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.5;
  cursor: default;
}
.cookie-category-desc {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 8px;
  display: none;
}
.cookie-category.is-open .cookie-category-desc {
  display: block;
}
.cookie-category-head::before {
  content: '';
  width: 6px;
  height: 6px;
  border-left: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.cookie-category.is-open .cookie-category-head::before {
  transform: rotate(135deg);
}
.cookie-modal-footer {
  padding: 16px 28px 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-save-btn {
  flex: 1;
  background: var(--sand-deep);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 20px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-save-btn:hover {
  background: var(--pink-deep);
}
.cookie-accept-all-btn {
  background: transparent;
  color: var(--sand-deep);
  border: 1.5px solid var(--sand-deep);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cookie-accept-all-btn:hover {
  background: var(--sand-deep);
  color: #fff;
}

/* Cookie Settings Panel (in-page, legal.html) — the only boxed element, collapsible */
.cookie-settings-panel {
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 1.6rem 0;
}
details.cookie-settings-panel > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
details.cookie-settings-panel > summary::-webkit-details-marker { display: none; }
details.cookie-settings-panel > summary::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
details.cookie-settings-panel[open] > summary::after {
  transform: rotate(-135deg);
}
details.cookie-settings-panel > summary + * {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .cookie-banner { padding: 16px 16px; gap: 10px; }
  .cookie-banner-text { font-size: 0.78rem; }
  .cookie-btn-accept { padding: 8px 20px; font-size: 0.82rem; }
  .cookie-btn-settings, .cookie-btn-reject { padding: 7px 16px; font-size: 0.78rem; }
  .cookie-settings-panel { padding: 18px 16px; }
}

/* ===== Utility classes (replaces Tailwind CDN) ===== */
.object-cover { object-fit: cover; }
.rounded-lg   { border-radius: 0.5rem; }

/* ===== GPU-accelerated animations ===== */
.journey-step-img img,
.collage-item img,
.category-card img,
.hero-logo-img {
  will-change: transform, opacity;
}

/* ===== LTR overrides ===== */
[dir="ltr"] .nav-links li a::after { left: 0; right: auto; }
[dir="ltr"] .footer-grid { direction: ltr; }
[dir="ltr"] .testimonials-track { direction: ltr; }

/* Mobile nav drawer — left-align every row in English (default design is RTL/right) */
[dir="ltr"] .nav-links .nav-item-link a,
[dir="ltr"] .nav-links .auth-nav-item a,
[dir="ltr"] .nav-links .nav-section-header,
[dir="ltr"] .nav-expand-btn,
[dir="ltr"] .nav-sublist a { text-align: left; }
[dir="ltr"] .nav-links .nav-item-link a:hover { padding-right: 26px; padding-left: 32px; }
[dir="ltr"] .nav-sublist a:hover { padding-right: 42px; padding-left: 48px; }

/* ===== Wishlist Drawer ===== */
.wl-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 41, 0.42);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.wl-backdrop--open { opacity: 1; }

.wl-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88%, 360px);
  background: var(--sand-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(44, 42, 41, 0.14);
  font-family: 'Assistant', 'Heebo', sans-serif;
}
.wl-drawer--open { transform: translateX(0); }

[dir="ltr"] .wl-drawer { right: auto; left: 0; transform: translateX(-105%); }
[dir="ltr"] .wl-drawer.wl-drawer--open { transform: translateX(0); }

.wl-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--sand-dark);
  background: var(--sand-light);
}
.wl-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.wl-close:hover { background: var(--pink-light); }

.wl-title {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.wl-title-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink-deep);
}
.wl-title-count {
  font-size: 0.95rem;
  font-weight: 700;
}

.wl-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px 24px;
}

.wl-empty {
  text-align: center;
  padding: 48px 20px 24px;
  color: var(--muted);
}
.wl-empty-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 16px 0 6px;
}
.wl-empty-sub {
  font-size: 0.88rem;
  margin: 0 0 22px;
  line-height: 1.5;
}
.wl-empty-cta {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 50px;
  background: var(--pink-deep);
  color: var(--sand-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wl-empty-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.wl-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.wl-item:last-child { border-bottom: none; }

.wl-item-img {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
  flex-shrink: 0;
}
.wl-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--muted);
}

.wl-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding-inline-end: 28px;
}
.wl-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wl-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 8px;
}
.wl-item-add {
  border: 1px solid var(--pink-deep);
  background: transparent;
  color: var(--pink-deep);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}
.wl-item-add:hover {
  background: var(--pink-deep);
  color: var(--sand-light);
  transform: translateY(-1px);
}

.wl-item-remove {
  position: absolute;
  top: 12px;
  inset-inline-end: 0;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.wl-item-remove:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.wl-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--sand-light);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: 'Assistant', sans-serif;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}
.wl-toast--show { opacity: 1; }

@media (max-width: 480px) {
  .wl-item { grid-template-columns: 80px 1fr; }
  .wl-item-img { width: 80px; height: 80px; }
}

/* ===== Workshop Tracks (compact 2x2) ===== */
.ws-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 52px auto 0;
}
.ws-track-card {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 18px;
  padding: 24px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ws-track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 20, 0, 0.1);
  border-color: var(--pink);
}
.ws-track-card--featured {
  border-color: var(--pink);
  background: var(--pink-light);
}
.ws-track-time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink-deep);
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.ws-track-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.ws-track-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.ws-track-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sand-light);
  background: var(--pink);
  border-radius: 50px;
  padding: 4px 14px;
  box-shadow: 0 4px 12px rgba(201, 149, 122, 0.4);
}
.ws-tracks-gift {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 22px auto 0;
  padding: 14px 22px;
  background: var(--pink-light);
  border: 1px dashed var(--pink);
  border-radius: 16px;
}
.ws-tracks-gift-icon { font-size: 1.3rem; line-height: 1; }
.ws-tracks-gift p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.ws-tracks-cta {
  text-align: center;
  margin-top: 28px;
}
@media (max-width: 480px) {
  .ws-tracks { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== Workshop Dynamic Sections (creations + process videos) ===== */
.ws-creations-section {
  padding: var(--section-pad) 0;
  background: var(--sand-light);
}
.ws-videos-section {
  padding: var(--section-pad) 0;
  background: var(--pink-light);
}
.ws-dyn-header {
  text-align: center;
  margin-bottom: 8px;
}
.ws-dyn-header .section-eyebrow { display: inline-flex; }
.ws-dyn-header .section-desc { margin: 0 auto 0; }

.ws-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.ws-video-card {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  box-shadow: 0 6px 26px rgba(26, 20, 0, 0.12);
}
.ws-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ws-creations-section .collage-grid { margin-top: 48px; }

@media (max-width: 768px) {
  .ws-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .ws-videos-grid { grid-template-columns: 1fr; }
}

/* ===== Product View — Related Rows (similar + best sellers) ===== */
.pv-related-wrap {
  background: var(--sand-light);
  padding: 64px 0 80px;
}
.pv-related + .pv-related { margin-top: 56px; }

.pv-related .section-eyebrow { margin-bottom: 10px; }

.pv-related-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.pv-related-scroller { position: relative; }

.pv-related-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pv-related-track::-webkit-scrollbar { display: none; }

.pv-related-track .sp-shop-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
}

.pv-rel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--sand-dark);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(201, 149, 122, 0.18);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pv-rel-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.pv-rel-arrow--prev { right: -14px; }
.pv-rel-arrow--next { left: -14px; }

@media (max-width: 768px) {
  .pv-related-wrap { padding: 48px 0 60px; }
  .pv-related + .pv-related { margin-top: 40px; }
  .pv-related-track { gap: 10px; }
  .pv-related-track .sp-shop-card { flex-basis: min(46vw, 210px); }
  .pv-rel-arrow { display: none; }
}
