/* ZENOVIA refined luxury styling system */
:root {
  --ivory-primary: #f5f1e8;
  --ivory-warm: #faf8f3;
  --stone: #e9e2d5;
  --border-warm: #d9d0c2;
  --olive-deep: #17251e;
  --olive-secondary: #26382f;
  --charcoal: #252824;
  --body-soft: #625f57;
  --gold-muted: #b59043;
  --gold-dark: #8d6b2e;
  --gold-primary: var(--gold-muted);
  --gold-light: #d8bd7b;
  --ivory: var(--ivory-primary);
  --bg-dark: var(--ivory-primary);
  --bg-deep: var(--stone);
  --bg-panel: var(--ivory-warm);
  --bg-panel-soft: var(--ivory-primary);
  --border-soft: var(--border-warm);
  --border-gold: rgba(141, 107, 46, 0.22);
  --shadow-soft: 0 16px 40px rgba(40, 35, 26, 0.1);
  --shadow-deep: 0 22px 46px rgba(40, 35, 26, 0.14);
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(180deg, var(--ivory-warm) 0%, var(--ivory-primary) 55%, #f1ebdf 100%);
  color: var(--charcoal);
  line-height: 1.55;
  overflow-x: hidden;
}

a,
button,
select {
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

::selection {
  background: var(--olive-deep);
  color: var(--ivory-warm);
}

.font-serif-luxury {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
}

.text-gold-gradient {
  background: none;
  color: var(--gold-dark);
  -webkit-text-fill-color: currentColor;
}

.text-gold-subtle {
  background: none;
  color: var(--gold-dark);
  -webkit-text-fill-color: currentColor;
}

.bg-gold-gradient {
  background: var(--olive-deep);
}

.bg-gold-gradient-hover:hover {
  background: var(--olive-secondary);
}

.bg-gold-subtle {
  background: linear-gradient(135deg, rgba(201, 165, 74, 0.12) 0%, rgba(201, 165, 74, 0.03) 100%);
}

.logo-jewel-frame {
  position: relative;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(232, 213, 154, 0.2) 0%, rgba(23, 33, 28, 0.94) 68%, rgba(8, 11, 10, 1) 100%);
  border: 1px solid rgba(232, 213, 154, 0.26);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(232, 213, 154, 0.12);
  padding: 4px;
}

.logo-jewel-frame:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 213, 154, 0.42);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(232, 213, 154, 0.2);
}

.glass-panel {
  background: linear-gradient(180deg, rgba(19, 28, 23, 0.94) 0%, rgba(13, 19, 16, 0.86) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.glass-panel-hover {
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-hover:hover {
  border-color: rgba(201, 165, 74, 0.24);
  transform: translateY(-6px);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.62);
}

.glass-navbar {
  background: rgba(8, 11, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(242, 234, 216, 0.08);
}

.site-topbar {
  border-bottom-color: rgba(201, 165, 74, 0.14);
  box-shadow: none;
}

.site-topbar strong {
  color: var(--ivory);
  font-weight: 600;
}

.site-header-brand {
  min-width: 0;
}

.site-header-brand-wordmark {
  font-size: 1.8rem;
}

.site-header-controls {
  min-width: 0;
}

.nav-link-main {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: rgba(232, 226, 211, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-link-main:hover,
.nav-link-main:focus-visible {
  color: var(--ivory);
  background: rgba(242, 234, 216, 0.04);
  outline: none;
}

.nav-link-main i {
  width: 0.9rem;
  height: 0.9rem;
  color: rgba(232, 213, 154, 0.7);
}

.nav-link-accent {
  color: rgba(232, 213, 154, 0.92);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 14rem;
  padding: 0.8rem;
  border-radius: 1.25rem;
  background: rgba(10, 15, 13, 0.98);
  border: 1px solid rgba(242, 234, 216, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.95rem;
  color: rgba(232, 226, 211, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  color: var(--ivory);
  background: rgba(242, 234, 216, 0.05);
  outline: none;
}

.nav-utility-select {
  min-height: 44px;
  background: rgba(14, 20, 17, 0.9);
  border-color: rgba(242, 234, 216, 0.1);
  box-shadow: none;
}

.nav-utility-select:focus {
  box-shadow: 0 0 0 3px rgba(201, 165, 74, 0.12);
}

.nav-cart-btn {
  min-width: 44px;
  min-height: 44px;
  background: rgba(14, 20, 17, 0.9);
  border-color: rgba(242, 234, 216, 0.12);
  box-shadow: none;
}

.nav-cart-btn:hover {
  border-color: rgba(201, 165, 74, 0.32);
}

.mobile-nav-panel {
  background: rgba(9, 13, 11, 0.97);
  border-top: 1px solid rgba(242, 234, 216, 0.08);
}

.mobile-nav-link,
.mobile-nav-summary,
.mobile-nav-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  color: rgba(232, 226, 211, 0.86);
}

.mobile-nav-link {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(242, 234, 216, 0.05);
}

.mobile-nav-group {
  border-bottom: 1px solid rgba(242, 234, 216, 0.05);
}

.mobile-nav-group summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group[open] .mobile-nav-summary i {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  padding: 0.1rem 0 0.75rem 1rem;
}

.mobile-nav-sublink {
  padding: 0.65rem 0;
  color: rgba(232, 226, 211, 0.68);
  font-size: 0.78rem;
}

.mobile-nav-sublink:hover,
.mobile-nav-link:hover,
.mobile-nav-summary:hover {
  color: var(--ivory);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 234, 216, 0.12);
  background: rgba(242, 234, 216, 0.04);
  color: rgba(242, 234, 216, 0.9);
}

.hero-title {
  text-wrap: balance;
}

.hero-title-middle {
  color: rgba(242, 234, 216, 0.88);
  font-size: 0.56em;
  font-weight: 600;
  line-height: 1.12;
}

.hero-title-bottom {
  display: inline-block;
  margin-top: 0.1em;
}

.hero-proof-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  background: rgba(14, 20, 17, 0.72);
  border: 1px solid rgba(242, 234, 216, 0.08);
}

.hero-proof-card i {
  color: var(--gold-light);
}

.hero-primary-cta,
.hero-secondary-cta {
  min-height: 48px;
}

.hero-secondary-cta {
  border: 1px solid rgba(242, 234, 216, 0.12);
  background: rgba(14, 20, 17, 0.68);
}

.hero-secondary-cta:hover {
  border-color: rgba(201, 165, 74, 0.22);
  background: rgba(18, 26, 22, 0.9);
}

.hero-visual-frame {
  width: 100%;
  max-width: 34rem;
  padding: 1rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(16, 23, 19, 0.94) 0%, rgba(10, 15, 13, 0.88) 100%);
  border: 1px solid rgba(242, 234, 216, 0.08);
  box-shadow: var(--shadow-deep);
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 33rem;
  border-radius: 1.65rem;
  background: #070a09;
}

.hero-visual-pill {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(9, 13, 11, 0.78);
  border: 1px solid rgba(242, 234, 216, 0.12);
  color: rgba(242, 234, 216, 0.86);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual-note {
  border: 1px solid rgba(242, 234, 216, 0.08);
  background: rgba(11, 16, 13, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 1.6rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.catalog-filter-btn {
  min-height: 44px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 234, 216, 0.08);
  background: rgba(18, 26, 22, 0.72);
  color: rgba(232, 226, 211, 0.76);
  box-shadow: none;
}

.catalog-filter-btn:hover {
  border-color: rgba(201, 165, 74, 0.18);
  color: var(--ivory);
}

.catalog-filter-btn.is-active {
  background: linear-gradient(135deg, #ecd79a 0%, #cfa74b 58%, #8c6a1b 100%);
  border-color: transparent;
  color: #0b100d;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.product-card {
  background: linear-gradient(180deg, rgba(18, 26, 22, 0.98) 0%, rgba(13, 19, 16, 0.96) 100%);
  border: 1px solid rgba(242, 234, 216, 0.08);
  box-shadow: var(--shadow-soft);
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 14, 12, 0.8);
  color: rgba(242, 234, 216, 0.92);
  border: 1px solid rgba(242, 234, 216, 0.12);
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__media {
  position: relative;
  height: 22rem;
  background: #0b0f0d;
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 11, 0.04) 0%, rgba(9, 13, 11, 0.16) 50%, rgba(9, 13, 11, 0.82) 100%);
}

.product-card__quickview {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(9, 13, 11, 0.82);
  border: 1px solid rgba(242, 234, 216, 0.12);
  color: rgba(242, 234, 216, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translateY(0);
}

.product-card__eyebrow {
  color: rgba(216, 192, 122, 0.88);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-card__title {
  color: var(--ivory);
  font-size: 2rem;
  line-height: 1.02;
}

.product-card__title:hover {
  color: #f8f2e5;
}

.product-card__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 234, 216, 0.08);
}

.product-card__cta {
  min-height: 50px;
  border-radius: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.product-card__cta:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.modal-product__media {
  border: 1px solid rgba(242, 234, 216, 0.08);
  background: rgba(10, 15, 13, 0.94);
}

.border-gold-glow {
  border: 1px solid rgba(201, 165, 74, 0.24);
  box-shadow: inset 0 0 12px rgba(201, 165, 74, 0.05);
}

.badge-gold {
  background: rgba(201, 165, 74, 0.13);
  border: 1px solid rgba(201, 165, 74, 0.24);
  color: #ecddb0;
}

.badge-emerald {
  background: rgba(97, 151, 112, 0.12);
  border: 1px solid rgba(97, 151, 112, 0.28);
  color: #9fd1ae;
}

.img-luxury-container {
  overflow: hidden;
  position: relative;
}

.img-luxury-container img {
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-luxury-container:hover img {
  transform: scale(1.04);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #0a0d0c;
}

::-webkit-scrollbar-thumb {
  background: #203027;
  border-radius: 4px;
  border: 1px solid rgba(201, 165, 74, 0.14);
}

::-webkit-scrollbar-thumb:hover {
  background: #c9a54a;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

.animate-shimmer {
  position: relative;
  overflow: hidden;
}

.animate-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(243, 229, 171, 0.14), transparent);
  animation: shimmer 4.8s infinite;
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(201, 165, 74, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(201, 165, 74, 0.12);
  }
}

.gold-pulse {
  animation: goldPulse 7s ease-in-out infinite;
}

#featured-categories,
#regional-collections,
#collection,
#why-us,
#lab,
#story,
#faq {
  padding-top: 5.75rem;
  padding-bottom: 5.75rem;
}

#cartDrawer {
  background: #0d1210;
  border-left-color: rgba(242, 234, 216, 0.1);
}

#cartFooter {
  border-top-color: rgba(242, 234, 216, 0.08);
}

@media (min-width: 1024px) {
  #featured-categories,
  #regional-collections,
  #collection,
  #why-us,
  #lab,
  #story,
  #faq {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.regional-collections-section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 130, 78, 0.12), transparent 26rem),
    linear-gradient(180deg, #0a0e0c 0%, #101813 50%, #090d0b 100%);
  border-top: 1px solid rgba(242, 234, 216, 0.07);
  border-bottom: 1px solid rgba(242, 234, 216, 0.07);
}

.regional-collections-heading {
  max-width: 44rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.regional-collections-kicker {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-primary);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.regional-collections-heading h2 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
}

.regional-collections-heading p {
  max-width: 38rem;
  margin: 1.1rem auto 0;
  color: rgba(232, 226, 211, 0.64);
  font-size: 0.95rem;
  line-height: 1.75;
}

.regional-collections-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.regional-collection-card {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(242, 234, 216, 0.09);
  border-radius: 1.75rem;
  background: #0b100d;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.regional-collection-card:nth-child(1),
.regional-collection-card:nth-child(2) {
  grid-column: span 6;
}

.regional-collection-card:nth-child(3),
.regional-collection-card:nth-child(4),
.regional-collection-card:nth-child(5) {
  grid-column: span 4;
}

.regional-collection-card img,
.regional-collection-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.regional-collection-card img {
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03) brightness(0.76);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.regional-collection-card__overlay {
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.04) 12%, rgba(5, 8, 6, 0.88) 100%);
}

.regional-collection-card--kilis img {
  filter: sepia(0.16) saturate(0.68) contrast(1.08) brightness(0.74);
}

.regional-collection-card--kahramanmaras img {
  filter: sepia(0.08) saturate(0.72) contrast(1.02) brightness(0.73);
}

.regional-collection-card--hatay img {
  filter: sepia(0.12) saturate(0.7) hue-rotate(8deg) brightness(0.7);
}

.regional-collection-card--mut img {
  filter: saturate(0.68) hue-rotate(-8deg) contrast(1.05) brightness(0.73);
}

.regional-collection-card__content {
  position: absolute;
  right: 1.75rem;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 1;
}

.regional-collection-card__content > span {
  color: rgba(236, 221, 176, 0.86);
  font-family: 'Cinzel', serif;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.regional-collection-card__content h3 {
  margin-top: 0.75rem;
  color: var(--ivory);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 700;
  line-height: 0.95;
}

.regional-collection-card__content p {
  max-width: 28rem;
  margin-top: 0.75rem;
  color: rgba(242, 234, 216, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.regional-collection-card__content a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.regional-collection-card__content a i {
  width: 1rem;
  height: 1rem;
  transition: transform 0.24s ease;
}

.regional-collection-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
}

.regional-collection-card:hover .regional-collection-card__content a i {
  transform: translate(0.18rem, -0.18rem);
}

.product-card__cta--pending {
  background: rgba(242, 234, 216, 0.08);
  color: var(--ivory);
  border: 1px solid rgba(242, 234, 216, 0.12);
  box-shadow: none;
}

.product-card__cta--pending:hover {
  background: rgba(201, 165, 74, 0.13);
  border-color: rgba(201, 165, 74, 0.26);
  color: var(--gold-light);
}

.modal-product__pending {
  padding: 1.25rem;
  border: 1px solid rgba(236, 221, 176, 0.12);
  border-radius: 1.25rem;
  background: rgba(242, 234, 216, 0.04);
  color: rgba(232, 226, 211, 0.66);
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .regional-collections-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .regional-collections-heading {
    margin-bottom: 2.25rem;
  }

  .regional-collections-grid {
    grid-template-columns: 1fr;
  }

  .regional-collection-card:nth-child(n) {
    grid-column: span 1;
    min-height: 21rem;
  }

  .regional-collection-card__content {
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
  }
}

@media (max-width: 1279px) {
  .hero-visual-card {
    min-height: 30rem;
  }
}

@media (max-width: 1023px) {
  .hero-visual-frame {
    max-width: 30rem;
  }

  .product-card__media {
    height: 20.5rem;
  }
}

@media (max-width: 767px) {
  .site-topbar {
    font-size: 0.68rem;
  }

  .site-header-brand {
    gap: 0.65rem;
  }

  .site-header-brand-wordmark {
    font-size: 1.35rem;
  }

  .site-header-brand .logo-jewel-frame {
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-header-controls {
    gap: 0.5rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-kicker {
    width: 100%;
  }

  .hero-proof-card {
    padding: 0.9rem;
  }

  .hero-visual-card {
    min-height: 28rem;
  }

  .product-card__title {
    font-size: 1.85rem;
  }
}

@media (max-width: 420px) {
  .site-header-brand-wordmark {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  .site-header-brand .logo-jewel-frame {
    width: 2.4rem;
    height: 2.4rem;
  }

  .site-header-controls {
    gap: 0.35rem;
  }

  .site-header-controls .nav-cart-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0.55rem;
  }
}

@media (max-width: 390px) {
  .mobile-cart-trigger {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-visual-card {
    min-height: 24rem;
  }

  .product-card__media {
    height: 19rem;
  }

  .catalog-filter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Light component theme integrated with the legacy component hooks above. */
.site-topbar {
  background: var(--olive-deep);
  border-bottom: 1px solid rgba(181, 144, 67, 0.28);
}

.site-topbar strong,
.site-topbar .text-amber-200\/90,
.site-topbar .text-amber-200\/80 { color: var(--ivory-primary); }
.site-topbar .text-zinc-300,
.site-topbar .text-zinc-600 { color: rgba(245, 241, 232, 0.72); }

.glass-navbar {
  background: rgba(250, 248, 243, 0.92);
  border-bottom-color: var(--border-warm);
  box-shadow: 0 8px 24px rgba(48, 42, 30, 0.06);
}

.logo-jewel-frame {
  background: var(--olive-deep);
  border-color: rgba(181, 144, 67, 0.48);
  box-shadow: 0 8px 18px rgba(23, 37, 30, 0.16);
}

.site-header-brand-wordmark,
.nav-link-main { color: var(--olive-deep); }
.brand-subtitle,
.nav-link-main i,
.nav-link-accent { color: var(--gold-dark); }
.nav-link-main:hover,
.nav-link-main:focus-visible { background: rgba(23, 37, 30, 0.055); color: var(--olive-deep); }

.nav-dropdown-menu {
  background: var(--ivory-warm);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-deep);
}

.nav-dropdown-item { color: var(--charcoal); }
.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible { background: #eee8dc; color: var(--olive-deep); }

.nav-utility-select,
.nav-cart-btn {
  background: var(--ivory-warm);
  border-color: var(--border-warm);
  color: var(--olive-deep);
}

.nav-utility-select:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--olive-secondary);
  box-shadow: 0 0 0 3px rgba(181, 144, 67, 0.13);
}

.mobile-nav-panel { background: var(--ivory-warm); border-top-color: var(--border-warm); }
.mobile-nav-link,
.mobile-nav-summary,
.mobile-nav-sublink { color: var(--olive-deep); }
.mobile-nav-link,
.mobile-nav-group { border-bottom-color: rgba(217, 208, 194, 0.75); }

#hero {
  background: radial-gradient(circle at 12% 18%, rgba(181, 144, 67, 0.14), transparent 27rem), linear-gradient(135deg, var(--ivory-primary), var(--ivory-warm) 58%, #eee7da);
}

#hero .text-slate-100,
#hero .text-white { color: var(--olive-deep); }
#hero .text-zinc-300,
#hero .text-zinc-400 { color: var(--body-soft); }
.hero-kicker { background: rgba(181, 144, 67, 0.1); border-color: rgba(141, 107, 46, 0.25); color: var(--gold-dark); }
.hero-title-middle { color: var(--charcoal); }
.hero-title-bottom { color: var(--gold-dark); }
.hero-proof-card { background: rgba(250, 248, 243, 0.82); border-color: var(--border-warm); box-shadow: 0 8px 20px rgba(48, 42, 30, 0.05); }
.hero-proof-card i { color: var(--gold-dark); }
.hero-proof-card .text-zinc-200 { color: var(--charcoal); }
.hero-primary-cta,
.product-card__cta { background: var(--olive-deep); color: var(--ivory-warm); box-shadow: 0 10px 20px rgba(23, 37, 30, 0.14); }
.hero-primary-cta:hover,
.product-card__cta:hover { background: var(--olive-secondary); }
.hero-secondary-cta { background: transparent; border-color: var(--olive-deep); color: var(--olive-deep); }
.hero-secondary-cta:hover { background: rgba(23, 37, 30, 0.055); border-color: var(--olive-secondary); }
.hero-visual-frame { padding: 0.65rem; background: #ded5c5; border-color: rgba(141, 107, 46, 0.18); box-shadow: var(--shadow-deep); }
.hero-visual-pill,
.hero-visual-note { background: rgba(23, 37, 30, 0.86); border-color: rgba(245, 241, 232, 0.18); color: var(--ivory-warm); box-shadow: 0 12px 28px rgba(23, 37, 30, 0.18); }
.hero-visual-note .text-white { color: var(--ivory-warm); }
.hero-visual-note .text-zinc-300 { color: rgba(245, 241, 232, 0.72); }

#hero + section { background: var(--stone); border-color: var(--border-warm); }
#hero + section .text-slate-100 { color: var(--olive-deep); }
#hero + section .text-zinc-400 { color: var(--body-soft); }
#featured-categories,
#lab,
#faq { background: var(--ivory-warm); }
#collection { background: var(--ivory-primary); }
#why-us { background: var(--stone); }
#story { background: #f1ebdf; }

#featured-categories .text-slate-100,
#collection .text-slate-100,
#why-us .text-slate-100,
#lab .text-slate-100,
#story .text-slate-100,
#faq .text-slate-100 { color: var(--olive-deep); }

#featured-categories .text-zinc-400,
#collection .text-zinc-400,
#why-us .text-zinc-400,
#lab .text-zinc-400,
#story .text-zinc-400,
#faq .text-zinc-400,
#featured-categories .text-zinc-300,
#collection .text-zinc-300,
#why-us .text-zinc-300,
#lab .text-zinc-300,
#story .text-zinc-300,
#faq .text-zinc-300 { color: var(--body-soft); }

#featured-categories .text-amber-400,
#collection .text-amber-400,
#why-us .text-amber-400,
#lab .text-amber-400,
#story .text-amber-400,
#faq .text-amber-400 { color: var(--gold-dark); }

.glass-panel,
.product-card { background: var(--ivory-warm); border-color: var(--border-warm); box-shadow: var(--shadow-soft); backdrop-filter: none; }
.glass-panel-hover:hover { border-color: rgba(141, 107, 46, 0.42); transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.product-card__media { background: #e6ded1; }
.product-card__media::after { background: linear-gradient(180deg, rgba(245, 241, 232, 0.02) 36%, rgba(23, 37, 30, 0.26) 100%); }
.product-card__badge,
.product-card__quickview { background: rgba(250, 248, 243, 0.94); border-color: var(--border-warm); color: var(--olive-deep); }
.product-card__eyebrow { color: var(--gold-dark); }
.product-card__title { color: var(--olive-deep); }
.product-card__title:hover { color: var(--olive-secondary); }
.product-card__controls { border-top-color: var(--border-warm); }
.modal-product__media { background: var(--ivory-primary); border-color: var(--border-warm); }
.modal-product__pending { background: var(--stone); border-color: var(--border-warm); color: var(--body-soft); }
.badge-gold { background: rgba(181, 144, 67, 0.11); border-color: rgba(141, 107, 46, 0.25); color: var(--gold-dark); }
.border-gold-glow { border-color: rgba(141, 107, 46, 0.24); box-shadow: none; }
.animate-shimmer::after,
.gold-pulse { animation: none; }

.regional-collections-section { background: radial-gradient(circle at 12% 18%, rgba(181, 144, 67, 0.18), transparent 28rem), linear-gradient(145deg, var(--olive-deep), #203129 58%, #16231d); border-color: rgba(181, 144, 67, 0.24); }
.regional-collection-card { border-color: rgba(245, 241, 232, 0.18); box-shadow: 0 18px 34px rgba(9, 18, 13, 0.22); }
.regional-collection-card img { filter: saturate(0.88) contrast(1.01) brightness(0.9); }
.regional-collection-card__overlay { background: linear-gradient(180deg, rgba(23, 37, 30, 0.03) 20%, rgba(15, 28, 22, 0.82) 100%); }
.regional-collection-card__content a { color: #eadcb9; }

input,
textarea,
select { background: var(--ivory-warm); border-color: var(--border-warm); color: var(--charcoal); }
input::placeholder,
textarea::placeholder { color: #918b80; }

#cartDrawer,
#cartFooter,
#productModal .glass-panel { background: var(--ivory-warm); border-color: var(--border-warm); color: var(--charcoal); }
#cartDrawer .text-white,
#productModal .text-white,
#cartDrawer .text-slate-100,
#productModal .text-slate-100 { color: var(--olive-deep); }
#cartDrawer .text-zinc-400,
#productModal .text-zinc-400,
#cartDrawer .text-zinc-300,
#productModal .text-zinc-300 { color: var(--body-soft); }
#cartDrawer .bg-zinc-900,
#cartDrawer .bg-zinc-950,
#productModal .bg-zinc-900,
#productModal .bg-zinc-950 { background: #f1ebdf; border-color: var(--border-warm); }

footer { background: var(--olive-deep); border-top-color: rgba(181, 144, 67, 0.28); }
footer .text-white,
footer .text-slate-100 { color: var(--ivory-primary); }
footer .text-zinc-400,
footer .text-zinc-300 { color: rgba(245, 241, 232, 0.68); }
footer .text-amber-300,
footer .text-amber-400 { color: #d8bd7b; }
footer .bg-zinc-900 { background: rgba(245, 241, 232, 0.055); border-color: rgba(245, 241, 232, 0.13); }

html[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
html[dir="rtl"] .font-serif-luxury,
html[dir="rtl"] .font-cinzel { font-family: Tahoma, Arial, sans-serif; letter-spacing: 0; }
html[dir="rtl"] .nav-dropdown-menu { right: 50%; left: auto; transform: translate(50%, 10px); }
html[dir="rtl"] .nav-dropdown:hover .nav-dropdown-menu,
html[dir="rtl"] .nav-dropdown:focus-within .nav-dropdown-menu { transform: translate(50%, 0); }
html[dir="rtl"] .mobile-nav-submenu { padding-right: 1rem; padding-left: 0; }
html[dir="rtl"] .hero-visual-pill { right: 1.25rem; left: auto; }
html[dir="rtl"] .product-card__quickview { right: auto; left: 1rem; }
html[dir="rtl"] #cartDrawer { right: auto; left: 0; border-right: 1px solid var(--border-warm); border-left: 0; }
html[dir="rtl"] #cartDrawer.translate-x-full { transform: translateX(-100%); }
html[dir="rtl"] [data-lucide="arrow-right"],
html[dir="rtl"] [data-lucide="arrow-up-right"],
html[dir="rtl"] [data-lucide="chevron-right"] { transform: scaleX(-1); }

.language-selector {
  position: relative;
  z-index: 50;
  display: inline-block;
  min-inline-size: 4.5rem;
  color: var(--olive-deep);
}

.language-selector__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  inline-size: 100%;
  min-block-size: 44px;
  padding: 0.55rem 0.72rem;
  border: 1px solid var(--border-warm);
  border-radius: 0.75rem;
  background: var(--ivory-warm);
  color: var(--olive-deep);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 1px 0 rgba(37, 40, 36, 0.03);
}

.language-selector__trigger::-webkit-details-marker { display: none; }

.language-selector__trigger:focus-visible,
.language-selector[open] .language-selector__trigger {
  border-color: var(--olive-secondary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(181, 144, 67, 0.13);
}

.language-selector__chevron {
  inline-size: 0.42rem;
  block-size: 0.42rem;
  border-inline-end: 1.5px solid currentColor;
  border-block-end: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 160ms ease;
}

.language-selector[open] .language-selector__chevron { transform: translateY(0.12rem) rotate(225deg); }

.language-selector__menu {
  position: absolute;
  inset-block-start: calc(100% + 0.55rem);
  inset-inline-end: 0;
  display: grid;
  min-inline-size: 12rem;
  overflow: hidden;
  padding: 0.35rem;
  border: 1px solid var(--border-warm);
  border-radius: 0.9rem;
  background: var(--ivory-warm);
  box-shadow: 0 14px 30px rgba(27, 37, 30, 0.14);
}

.language-selector:not([open]) .language-selector__menu { display: none; }

.language-selector__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-block-size: 44px;
  padding: 0.62rem 0.8rem;
  border-radius: 0.62rem;
  color: var(--olive-deep);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-selector__option:hover,
.language-selector__option:focus-visible { background: rgba(23, 37, 30, 0.07); outline: 0; }

.language-selector__option:focus-visible { box-shadow: inset 0 0 0 2px var(--olive-secondary); }

.language-selector__option[aria-current="page"] { background: var(--olive-deep); color: var(--ivory-warm); }

.language-selector__name[lang="ar"] { direction: rtl; text-align: start; }

.language-selector__code {
  direction: ltr;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  opacity: 0.7;
}

html[dir="rtl"] .language-selector__menu { text-align: start; }

@media (max-width: 640px) {
  .mobile-nav-panel .language-selector {
    display: block;
    inline-size: 100%;
  }

  .mobile-nav-panel .language-selector__trigger { justify-content: space-between; }

  .mobile-nav-panel .language-selector__menu {
    position: static;
    inline-size: 100%;
    min-inline-size: 0;
    margin-block-start: 0.5rem;
  }
}

::-webkit-scrollbar-track { background: var(--ivory-primary); }
::-webkit-scrollbar-thumb { background: var(--olive-secondary); border-color: rgba(181, 144, 67, 0.26); }
