/** Shopify CDN: Minification failed

Line 115:16 Unexpected "@keyframes"

**/
/* Voombaza Shopify Theme — preserved from Next.js design */

:root {
  --gold: #FFD700;
  --gold-light: #D8BC8E;
  --gold-dark: #8B6914;
  --black: #0D0D0D;
  --warm-white: #FAF9F7;
  --off-white: #F2EFE9;
  --sand: #E6E0D6;
  --muted: #6B6868;
  --sale: #E8605A;
  --header-height: 68px;
  --announcement-height: 36px;
}

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

html { scroll-behavior: smooth; }

html[lang="ar"],
html[dir="rtl"] {
  direction: rtl;
}

html[lang="ar"] .nav-link::after,
html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

body {
  background: var(--warm-white);
  color: var(--black);
  font-family: var(--font-body-family), Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Grid utilities (replaces Tailwind) */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none !important; }
}

@media (max-width: 767px) {
  .hidden-mobile { display: none !important; }
  .mobile-only { display: block; }
}
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Animations */
@keyframes letterIn {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes progressLine {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] @keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* Buttons */
.btn-gold, .btn-white, .btn-outline-white, .btn-black, .btn-outline-black {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-align: center;
}
.btn-gold, .btn-black {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover, .btn-black:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-white {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.btn-white:hover { background: transparent; color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-black {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-black:hover { background: var(--gold); color: var(--black); }

/* Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(255,255,255,0.97);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand);
}
.site-header:not(.is-scrolled) .site-header__nav-link { color: var(--black); }
.site-header.is-scrolled .site-header__nav-link { color: var(--black); }
.site-header.is-scrolled .site-header__logo,
.site-header.is-scrolled .site-header__icon { color: var(--black); }

.announcement-bar {
  background: var(--black);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--warm-white);
  text-transform: uppercase;
}
.site-header.is-scrolled .announcement-bar { display: none; }

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.site-header__nav-left {
  flex:1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.site-header__nav-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.site-header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}
.site-header__menu--secondary {
  gap: 1.25rem;
}
.site-header__menu-item {
  position: static;
  flex-shrink: 0;
}
.site-header__currency {
  background: none;
  border: none;
  font-size: 0.65rem;
  cursor: pointer;
  color: inherit;
  letter-spacing: 0.08em;
}
.site-header__logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  transition: color 0.4s;
  color: #fff;
}
.nav-link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link__chevron {
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.has-mega-menu:hover .nav-link__chevron,
.has-mega-menu.is-open .nav-link__chevron {
  transform: rotate(180deg);
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-link--sale { color: var(--sale) !important; }

.site-header__icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-header__icon {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 4px;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.4s;
  text-decoration: none;
}
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.5rem;
  font-weight: 800;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[dir="rtl"] .cart-count { right: auto; left: -2px; }

/* Language switcher */
.lang-switcher__select {
  background: none;
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: inherit;
  padding: 0.25rem 0.15rem;
  max-width: 3.5rem;
}

/* Mega menu portal — panels sit below header, outside narrow <li> */
.mega-menu-portal {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  pointer-events: none;
}
.mega-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--sand);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  padding: 0 0 1.5rem;
}
.mega-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu-portal:has(.mega-menu.is-active) {
  pointer-events: auto;
}
/* Invisible bridge — closes gap between nav link and panel */
.mega-menu__bridge {
  display: block;
  height: 14px;
  width: 100%;
  background: transparent;
}
.mega-menu__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 1rem 0;
}
.mega-menu__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem 2.5rem;
}
.mega-menu__grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.mega-menu__column {
  min-width: 0;
}
.mega-menu__parent {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.mega-menu__parent:hover .mega-menu__parent-title {
  color: var(--gold);
}
.mega-menu__thumb {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sand);
}
.mega-menu__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mega-menu__parent:hover .mega-menu__thumb img {
  transform: scale(1.05);
}
.mega-menu__parent-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mega-menu__children {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.mega-menu__child-link {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mega-menu__child-link:hover {
  color: var(--gold);
}
.mega-menu__view-all {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.mega-menu__footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand);
  text-align: center;
}

/* Tablet: compact mega menu grid */
@media (max-width: 1024px) {
  .mega-menu__grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.25rem 1.5rem;
  }
  .mega-menu__inner {
    padding: 0 1.25rem;
  }
  .mega-menu__thumb {
    aspect-ratio: 1/1;
  }
}

/* Wishlist */
.product-card-wrap {
  position: relative;
}
.wishlist-btn {
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
html[dir="rtl"] .wishlist-btn {
  right: auto;
  left: 0.65rem;
}
.wishlist-btn:hover { transform: scale(1.05); }
.wishlist-btn.is-active {
  background: var(--gold);
  color: var(--black);
}
.wishlist-btn.is-active .wishlist-btn__icon { fill: currentColor; }
.wishlist-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.5rem;
  font-weight: 800;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[dir="rtl"] .wishlist-count { right: auto; left: -2px; }
.wishlist-page { padding-top: calc(var(--header-height) + 2rem); }
.wishlist-page__header { text-align: center; margin-bottom: 3rem; }
.wishlist-page__intro {
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.wishlist-page__grid { gap: 2.5rem 1.25rem; }
.wishlist-page__loading {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}
.wishlist-page__empty {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--sand);
  background: var(--off-white);
}
.wishlist-page__empty-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.wishlist-page__empty-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.wishlist-page__empty-text {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.wishlist-card__remove {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[dir="rtl"] .wishlist-card__remove { left: auto; right: 0.65rem; }
.wishlist-card__remove:hover { background: var(--sale); }
.product-gallery { position: relative; }
.product-gallery__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
html[dir="rtl"] .product-gallery__wishlist { right: auto; left: 1rem; }

/* Mobile: hide desktop mega menu (use mobile accordion in drawer) */
@media (max-width: 767px) {
  .mega-menu-portal {
    display: none !important;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__nav {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
}
.mobile-menu__link {
  display: block;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--sand);
}
.mobile-menu__link--secondary {
  color: var(--gold);
  font-size: 1rem;
}
.mobile-menu__group {
  border-bottom: 1px solid var(--sand);
}
.mobile-menu__group summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 0;
  color: var(--black);
}
.mobile-menu__group summary::-webkit-details-marker { display: none; }
.mobile-menu__sub {
  padding: 0 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mobile-menu__sub--nested {
  padding-left: 1rem;
}
.mobile-menu__sublink {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding: 0.4rem 0;
  letter-spacing: 0.06em;
}
.mobile-menu__grandchild {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.3rem 0;
}
.mobile-menu__grandchild--all {
  font-weight: 600;
  color: var(--gold);
}
.mobile-menu__localization {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

/* Section typography */
.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Product card */
.img-zoom { overflow: hidden; }
.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-zoom:hover img { transform: scale(1.07); }

.prod-img {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 1rem;
}
.prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.75s ease;
}
.product-card:hover .prod-img img { transform: scale(1.06); }
.product-card .add-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.product-card:hover .add-btn { opacity: 1; transform: translateY(0); }

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.65rem;
  text-transform: uppercase;
}
html[dir="rtl"] .product-badge { left: auto; right: 0.75rem; }
.product-badge--gold { background: var(--gold); color: var(--black); }
.product-badge--sale { background: var(--sale); color: #fff; }

.filter-tab {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--sand);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { border-color: var(--gold); background: var(--gold); color: var(--black); }

/* Category card */
.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.45s;
}
.cat-card:hover .cat-overlay { background: rgba(0,0,0,0.52); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card .cat-gold-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.45s;
  margin-top: 0.5rem;
}
.cat-card:hover .cat-gold-line { width: 40px; }

/* Horizontal scroll */
.h-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll > * { scroll-snap-align: start; flex-shrink: 0; }

/* Footer */
.footer-link { color: var(--gold); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-legal-link { color: rgba(255,255,255,0.25); font-size: 0.72rem; text-decoration: none; }
.footer-legal-link:hover { color: rgba(255,255,255,0.65); }
.footer-social { color: rgba(255,255,255,0.5); transition: color 0.2s; display: flex; }
.footer-social:hover { color: var(--gold); }

.nl-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #C9C3BA;
  color: var(--black);
  padding: 0.75rem 0;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}
.nl-input:focus { border-bottom-color: var(--gold); }

.insta-item .insta-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  background: rgba(13,13,13,0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* Hero */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--sand);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s;
  z-index: 0;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.72) 100%);
}
.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--announcement-height));
}
.hero-slide__content--center { justify-content: center; text-align: center; }
.hero-slide__content--left { justify-content: flex-start; padding-left: 6rem; padding-right: 2rem; text-align: left; }
html[dir="rtl"] .hero-slide__content--left {
  padding-left: 2rem;
  padding-right: 6rem;
  text-align: right;
}
.hero-indicators {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
html[dir="rtl"] .hero-indicators { right: auto; left: 2.5rem; }

/* Loading screen */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}
.loading-screen.is-hidden { transform: translateY(-100%); pointer-events: none; }
.loading-screen.is-done { display: none; }

/* Product page */
.product-page {
  padding: calc(var(--header-height) + 3rem) 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .product-page__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.product-gallery__main {
  aspect-ratio: 3/4;
  background: var(--sand);
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px;
  aspect-ratio: 3/4;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: var(--sand);
}
.product-gallery__thumb.is-active { border-color: var(--gold); }

.variant-picker__option {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.variant-picker__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.variant-btn {
  min-width: 44px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--sand);
  background: transparent;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
.variant-btn:hover,
.variant-btn.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.variant-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--sand);
  width: fit-content;
  margin-bottom: 1.5rem;
}
.quantity-selector button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
}
.quantity-selector input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  font-size: 0.9rem;
  background: transparent;
}
html[dir="rtl"] .quantity-selector input {
  border-left: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
}

.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--sand);
  padding: 1rem 1.5rem;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .sticky-atc.is-visible { display: flex; }
}

/* Collection */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand);
}
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .collection-layout { grid-template-columns: 1fr; }
  .collection-filters { display: none; }
  .collection-filters.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: var(--warm-white);
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
  }
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--warm-white);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
html[dir="rtl"] .cart-drawer__panel {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }

/* Search overlay */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(250,249,247,0.98);
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem 2rem;
}
.search-modal.is-open { display: flex; }

/* Page templates */
.page-section {
  padding: calc(var(--header-height) + 4rem) 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}
.page-section h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.5rem 0;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* 404 */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

/* Customer */
.customer-page {
  padding: calc(var(--header-height) + 4rem) 2rem 6rem;
  max-width: 480px;
  margin: 0 auto;
}
.customer-form input,
.customer-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  background: #fff;
}
.customer-form label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.lang-switcher a {
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  opacity: 0.6;
}
.lang-switcher a.is-active { opacity: 1; color: var(--gold); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }


/* Contact form */
.contact-page__intro {
  color: var(--muted);
  margin: 1rem 0 2.5rem;
  line-height: 1.8;
}
.contact-form.contact-form .contact-form__input,
.contact-form.contact-form .contact-form__textarea {
  margin-bottom: 0;
}
.contact-form__field {
  margin-bottom: 1.25rem;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  font-size: 0.9rem;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 0.35rem;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form__input--error,
.contact-form__textarea.contact-form__input--error {
  border-color: #E8605A;
}
.contact-form__field-error {
  color: #E8605A;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  line-height: 1.4;
}
.contact-form__field-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.contact-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.75em;
}
.contact-form__errors {
  background: rgba(232, 96, 90, 0.08);
  border: 1px solid rgba(232, 96, 90, 0.35);
  color: #c0392b;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.contact-form__submit {
  width: 100%;
}
.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.contact-form__success {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--sand);
  background: var(--off-white);
}
.contact-form__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form__success-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.contact-form__success-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

