:root {
  --page-bg: #FFFDF8;
  --cream: #FEFCF7;
  --soft-cream: #FAF6EE;
  --warm-white: #FFFDF8;
  --card-bg: #FFFFFF;
  --sage: #7E8868;
  --sage-dark: #5F684E;
  --sage-light: #A8AF96;
  --gold: #B9955B;
  --text: #2F2F2B;
  --muted: #8A8378;
  --border: #EFE7D9;
  --white: #FFFFFF;
  --shadow-soft: 0 18px 42px rgba(126, 136, 104, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container-max: 1320px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Tajawal", sans-serif;
}

body.is-ltr { font-family: "Inter", system-ui, sans-serif; }
body.xenah-no-scroll { overflow: hidden; touch-action: none; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.xenah-container {
  width: min(calc(100% - 32px), var(--container-max));
  margin-inline: auto;
}

.xenah-topbar {
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.93rem;
}

.xenah-topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.xenah-topbar-message { margin: 0; }
.xenah-topbar-links { display: flex; align-items: center; gap: 22px; }

.xenah-main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 221, 202, 0.92);
}

.xenah-header-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "actions logo nav";
  align-items: center;
  column-gap: 18px;
}

body.is-ltr .xenah-header-grid { grid-template-areas: "nav logo actions"; }

.xenah-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
}

body.is-ltr .xenah-nav { justify-content: flex-start; }

.xenah-nav-link {
  position: relative;
  padding: 8px 0;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.xenah-nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 2px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.xenah-nav-link:hover::after,
.xenah-nav-link.is-active::after { transform: scaleX(1); }

.xenah-logo-wrap {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.xenah-logo-wrap img {
  max-height: 62px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.xenah-header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
}

body.is-ltr .xenah-header-actions { justify-content: flex-end; }

.xenah-search {
  height: 48px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 16px;
  box-shadow: 0 8px 20px rgba(185, 149, 91, 0.05);
}

.xenah-search-desktop {
  width: min(100%, 300px);
  flex: 0 1 300px;
}

.xenah-search-icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex: 0 0 auto;
}

.xenah-search-icon svg,
.xenah-icon-btn svg { width: 100%; height: 100%; display: block; }

.xenah-search-input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  color: var(--text);
}

.xenah-action-icons { display: flex; align-items: center; gap: 10px; }

.xenah-icon-btn,
.xenah-lang-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.xenah-icon-btn:hover,
.xenah-lang-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: var(--warm-white);
}

.xenah-icon-btn svg { width: 20px; height: 20px; }

.xenah-cart-counter {
  position: absolute;
  top: -4px;
  inset-inline-end: -3px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
}

.xenah-header-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.xenah-lang-toggle {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.xenah-mobile-menu-btn,
.xenah-mobile-search-row,
.xenah-mobile-drawer,
.xenah-search-toggle { display: none; }

.xenah-notification {
  background: linear-gradient(90deg, rgba(246, 241, 232, 0.96), rgba(238, 230, 215, 0.82));
  border-bottom: 1px solid var(--border);
}

.xenah-notification p {
  margin: 0;
  padding: 12px 0;
  text-align: center;
  color: var(--sage-dark);
  font-weight: 600;
}

.xenah-hero {
  padding: 18px 0 28px;
}

.xenah-hero-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.xenah-slider-track-wrap,
.hero-viewport {
  overflow: hidden;
  border-radius: 12px;
}

.xenah-slider-track,
.hero-track {
  display: flex;
  direction: ltr;
  transform: translateX(0%);
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  cursor: grab;
}

.xenah-slider-track.is-dragging,
.hero-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.xenah-slide,
.hero-slide {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(120deg, #F7F3EA, #EEE6D7, #DDE2D0);
}

.xenah-slide::before,
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.62), transparent 0 18%),
    radial-gradient(circle at 82% 68%, rgba(185, 149, 91, 0.14), transparent 0 24%),
    radial-gradient(circle at 60% 18%, rgba(126, 136, 104, 0.16), transparent 0 18%);
}

.xenah-slide::after,
.hero-slide::after {
  content: "";
  position: absolute;
  inset-inline-start: 8%;
  bottom: -12%;
  width: clamp(160px, 24vw, 280px);
  height: clamp(160px, 24vw, 280px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.08) 64%, transparent 74%);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.xenah-slide[data-banner-index="1"] {
  background: linear-gradient(120deg, #F7F3EA 0%, #EEE6D7 55%, #DDE2D0 100%);
}

.xenah-slide[data-banner-index="2"] {
  background: linear-gradient(120deg, #FBF7EF 0%, #EAE8DB 52%, #E8DECF 100%);
}

.xenah-slide[data-banner-index="3"] {
  background: linear-gradient(120deg, #F8F1E6 0%, #F2E7D8 48%, #DEE6D9 100%);
}

.xenah-slide[data-banner-index="4"] {
  background: linear-gradient(120deg, #FCF8F1 0%, #EFE4D4 46%, #DFE5D6 100%);
}

.hero-banner-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #F7F3EA, #EEE6D7, #DDE2D0);
}

.hero-banner-media,
.hero-banner-placeholder {
  position: absolute;
  inset: 0;
}

.hero-banner-media {
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-banner-img[hidden] {
  display: none;
}

.hero-banner-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-banner-decor::before,
.hero-banner-decor::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-banner-decor::before {
  width: min(32vw, 320px);
  height: min(32vw, 320px);
  inset-inline-end: 8%;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 253, 248, 0.55) 0%, rgba(255, 253, 248, 0.1) 55%, transparent 72%);
}

.hero-banner-decor::after {
  width: min(22vw, 220px);
  height: min(22vw, 220px);
  inset-inline-end: 22%;
  bottom: 12%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.xenah-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(232, 221, 202, 0.9);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.94);
  color: var(--sage-dark);
  box-shadow: var(--shadow-soft);
  z-index: 3;
}

.xenah-slider-prev {
  left: 18px;
}

.xenah-slider-next {
  right: 18px;
}

.xenah-slider-arrow span {
  font-size: 2rem;
  line-height: 1;
}

.xenah-slider-arrow:disabled,
.xenah-slider-arrow[aria-disabled="true"] {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
}

.xenah-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 16px;
}

.xenah-slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(126, 136, 104, 0.28);
  padding: 0;
}

.xenah-slider-dots button.is-active {
  background: var(--sage-dark);
  transform: scale(1.18);
}

@media (max-width: 1199px) {
  .xenah-slide,
  .hero-slide {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .xenah-hero {
    padding: 14px 0 22px;
  }

  .xenah-slide,
  .hero-slide {
    min-height: auto;
    aspect-ratio: 16 / 9;
    background: var(--page-bg);
  }

  .hero-banner-media {
    background: var(--page-bg);
  }

  .hero-banner-img {
    object-fit: contain;
    object-position: center center;
  }

  .xenah-slider-track-wrap,
  .hero-viewport {
    border-radius: 10px;
  }

  .hero-banner-decor::before {
    width: 170px;
    height: 170px;
    inset-inline-end: 12%;
    top: 12%;
  }

  .hero-banner-decor::after {
    width: 120px;
    height: 120px;
    inset-inline-end: 24%;
    bottom: 10%;
  }

  .xenah-slider-arrow {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: 72px;
    transform: none;
  }

  .xenah-slider-prev {
    left: 12px;
  }

  .xenah-slider-next {
    right: 12px;
  }
}
.xenah-brands-grid,
.xenah-offers-grid,
.xenah-categories-grid,
.xenah-products-grid,
.xenah-reviews-grid,
.xenah-about-cards {
  display: grid;
  gap: 18px;
}

.xenah-brands-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.xenah-brands-carousel-shell {
  position: relative;
  width: min(100vw - 16px, 1480px);
  margin-inline: 50%;
  transform: translateX(50%);
}

html[dir="ltr"] .xenah-brands-carousel-shell {
  transform: translateX(-50%);
}

.xenah-brands-carousel {
  width: 100%;
  overflow: hidden;
  direction: ltr;
  padding: 4px 0 14px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.xenah-brands-carousel.is-dragging {
  cursor: grabbing;
}

.xenah-brands-carousel .xenah-brands-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 2vw, 28px);
  animation: xenah-brand-marquee 34s linear infinite;
  will-change: transform;
}

.xenah-brands-carousel .xenah-brands-track.is-js-controlled {
  animation: none;
}

.xenah-brands-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(185, 149, 91, 0.22);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.96);
  color: var(--sage-dark);
  box-shadow: 0 12px 26px rgba(95, 104, 78, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.xenah-brands-arrow span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.xenah-brands-arrow:hover,
.xenah-brands-arrow:focus-visible {
  border-color: rgba(185, 149, 91, 0.42);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(95, 104, 78, 0.14);
}

.xenah-brands-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.xenah-brands-arrow-prev {
  inset-inline-start: 14px;
}

.xenah-brands-arrow-next {
  inset-inline-end: 14px;
}

.xenah-brand-card,
.xenah-category-card,
.xenah-product-card,
.xenah-review-card,
.xenah-contact-card,
.xenah-offer-card {
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(126, 136, 104, 0.06);
}

.xenah-brand-card {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.xenah-brand-logo-card {
  flex: 0 0 clamp(220px, 18vw, 260px);
  min-height: clamp(118px, 10vw, 140px);
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.xenah-brand-logo-card img,
.xenah-brand-logo-card span {
  pointer-events: none;
}

.xenah-brand-logo {
  display: block;
  width: auto;
  max-width: 82%;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(0.96);
}

.xenah-brand-logo[hidden] {
  display: none !important;
}

.xenah-brand-fallback {
  display: none;
  color: var(--text);
  font-weight: 800;
  line-height: 1.4;
}

.xenah-brand-logo-card.is-image-missing .xenah-brand-fallback {
  display: inline-flex;
}

.xenah-brand-logo-card.is-image-missing {
  background: rgba(255, 255, 255, 0.82);
}

@keyframes xenah-brand-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .xenah-brands-carousel:hover .xenah-brands-track {
    animation-play-state: paused;
  }
}

.xenah-brand-card:hover,
.xenah-category-card:hover,
.xenah-contact-card:hover,
.xenah-product-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-light);
}

.xenah-offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.xenah-offer-card {
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  overflow: visible;
}

.xenah-offer-card::before,
.xenah-offer-card::after {
  display: none;
}

.xenah-offer-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  text-decoration: none;
}

.xenah-offer-media {
  display: block;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 34px rgba(33, 35, 38, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.xenah-offer-link:hover .xenah-offer-media,
.xenah-offer-link:focus-visible .xenah-offer-media {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(33, 35, 38, 0.12);
}

.xenah-offer-card-skin .xenah-offer-media {
  background-image:
    url("../images/offers/offer-skin.jpg"),
    linear-gradient(135deg, #f8f2e7, #efe7d8, #dde5d4);
}

.xenah-offer-card-makeup .xenah-offer-media {
  background-image:
    url("../images/offers/offer-makeup.jpg"),
    linear-gradient(135deg, #fdf6ef, #eedfd3, #e6ebde);
}

.xenah-offer-card-perfume .xenah-offer-media {
  background-image:
    url("../images/offers/offer-perfume.jpg"),
    linear-gradient(135deg, #fbf6ef, #efe8da, #e2e8d9);
}

.xenah-offer-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-weight: 700;
}

.xenah-category-carousel-shell {
  position: relative;
  width: min(100vw - 32px, 1480px);
  margin-inline: 50%;
  transform: translateX(50%);
}

html[dir="ltr"] .xenah-category-carousel-shell {
  transform: translateX(-50%);
}

.xenah-category-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  padding: 6px clamp(8px, 1.6vw, 22px) 20px;
  cursor: grab;
}

.xenah-category-viewport::-webkit-scrollbar {
  display: none;
}

.xenah-category-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.xenah-category-track {
  display: flex;
  gap: clamp(16px, 1.6vw, 24px);
  width: max-content;
  direction: ltr;
}

.xenah-category-slide {
  position: relative;
  flex: 0 0 clamp(280px, 26vw, 390px);
  aspect-ratio: 1.72 / 1;
  min-height: 150px;
  overflow: hidden;
  border-radius: 26px;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 34px rgba(33, 35, 38, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  direction: rtl;
}

.xenah-category-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 20, 0.34), rgba(20, 23, 20, 0.04) 48%, rgba(20, 23, 20, 0.18));
  z-index: 1;
  pointer-events: none;
}

.xenah-category-slide span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin: 18px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.45;
  font-size: 1.02rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.xenah-category-slide:hover,
.xenah-category-slide:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(33, 35, 38, 0.12);
}

.xenah-category-slide-skin { background-image: url("../images/categories/skincare.jpg"), linear-gradient(135deg, #f7efe7, #dde7dc); }
.xenah-category-slide-hair { background-image: url("../images/categories/hair-care.jpg"), linear-gradient(135deg, #efe7d9, #dfe8d8); }
.xenah-category-slide-makeup { background-image: url("../images/categories/makeup.jpg"), linear-gradient(135deg, #f6e7e0, #e8ded5); }
.xenah-category-slide-cosmetics { background-image: url("../images/categories/cosmetics.jpg"), linear-gradient(135deg, #fbf4ea, #e1e8d7); }
.xenah-category-slide-fragrance { background-image: url("../images/categories/fragrance.jpg"), linear-gradient(135deg, #f5eee3, #dce4d3); }
.xenah-category-slide-oral { background-image: url("../images/categories/oral-care.jpg"), linear-gradient(135deg, #f9f5ee, #dce8e3); }
.xenah-category-slide-baby { background-image: url("../images/categories/baby-care.jpg"), linear-gradient(135deg, #f7efe6, #e5e8d6); }
.xenah-category-slide-feminine { background-image: url("../images/categories/feminine-care.jpg"), linear-gradient(135deg, #f7e6e6, #e8e0d8); }
.xenah-category-slide-sunscreen { background-image: url("../images/categories/sunscreen.jpg"), linear-gradient(135deg, #fff4de, #dfe8d4); }
.xenah-category-slide-medical { background-image: url("../images/categories/medical-supplies.jpg"), linear-gradient(135deg, #f7f5ed, #dfe8e4); }

.xenah-category-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.96);
  color: var(--sage-dark);
  box-shadow: 0 12px 28px rgba(33, 35, 38, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.xenah-category-arrow:hover {
  border-color: var(--gold);
  background: var(--white);
}

.xenah-category-arrow span {
  font-size: 2rem;
  line-height: 1;
}

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

html[dir="rtl"] .xenah-category-arrow span,
body.is-rtl .xenah-category-arrow span {
  position: relative;
  color: transparent;
}

html[dir="rtl"] .xenah-category-arrow span::before,
body.is-rtl .xenah-category-arrow span::before {
  position: absolute;
  inset: 0;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html[dir="rtl"] .xenah-category-arrow-prev span::before,
body.is-rtl .xenah-category-arrow-prev span::before {
  content: "\2190";
}

html[dir="rtl"] .xenah-category-arrow-next span::before,
body.is-rtl .xenah-category-arrow-next span::before {
  content: "\2192";
}

.xenah-category-icon,
.xenah-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(185, 149, 91, 0.22);
  background: rgba(255, 253, 248, 0.8);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.xenah-category-card span:last-child,
.xenah-contact-card span:last-child {
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.xenah-products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.xenah-product-card {
  position: relative;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.xenah-product-fav {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.95);
  color: var(--sage-dark);
  z-index: 2;
}

.xenah-product-media {
  min-height: 180px;
  border-radius: 0;
  margin-bottom: 16px;
  border: 0;
  background: transparent;
}

.xenah-product-media-2,
.xenah-product-media-3,
.xenah-product-media-4,
.xenah-product-media-5 {
  background: transparent;
}

.xenah-product-brand {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.xenah-product-name {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.1em;
}

.xenah-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 14px;
}

.xenah-product-price {
  color: var(--sage-dark);
  white-space: nowrap;
}

.xenah-product-rating {
  color: var(--gold);
  font-size: 0.84rem;
  white-space: nowrap;
}



.xenah-product-category {
  margin: -6px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.xenah-product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.xenah-product-old-price {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.xenah-product-media-live {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xenah-product-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xenah-product-card--transparent .xenah-product-media {
  border-color: transparent;
  background: transparent;
}

.xenah-product-card--transparent .xenah-product-image-wrap {
  padding: 6px;
}

.xenah-product-card--transparent .xenah-product-image {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 100%;
  object-fit: contain;
}

.xenah-product-card--boxed .xenah-product-media {
  background: transparent;
  border-color: transparent;
}

.xenah-product-card--boxed .xenah-product-image-wrap {
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.xenah-product-card--boxed .xenah-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xenah-product-image {
  display: block;
}

.xenah-product-media-live .xenah-product-placeholder-visual {
  display: none;
}

.xenah-product-media-live.is-fallback {
  border: 1px solid rgba(232, 221, 202, 0.55);
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.52), transparent 0 18%),
    linear-gradient(135deg, #f9f4eb, #ede2d2, #dfe5d5);
}

.xenah-product-media-live.is-fallback .xenah-product-image-wrap {
  display: none;
}

.xenah-product-media-live.is-fallback .xenah-product-placeholder-visual {
  display: flex;
}

.xenah-product-placeholder-visual {
  width: 100%;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,0.55), transparent 0 18%),
    linear-gradient(135deg, #f9f4eb, #eee2d3, #e0e7d8);
}

.xenah-product-bottle {
  width: 62px;
  height: 112px;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,243,234,0.92));
  border: 1px solid rgba(232, 221, 202, 0.88);
  box-shadow: 0 16px 28px rgba(95, 104, 78, 0.10);
  position: relative;
}

.xenah-product-bottle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 18px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #d7cfbf, #bda98c);
}

.xenah-product-bottle::after {
  content: "";
  position: absolute;
  inset: 34px 12px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(185,149,91,0.18), rgba(126,136,104,0.12));
}

.xenah-product-shadow {
  position: absolute;
  bottom: 20px;
  width: 92px;
  height: 16px;
  border-radius: 50%;
  background: rgba(95, 104, 78, 0.12);
  filter: blur(5px);
}

.xenah-product-card-skeleton {
  pointer-events: none;
}

.xenah-skeleton-block,
.xenah-skeleton-line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(232,221,202,0.56), rgba(255,253,248,0.9), rgba(232,221,202,0.56));
  background-size: 200% 100%;
  animation: xenah-skeleton 1.4s infinite linear;
}

.xenah-skeleton-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.xenah-skeleton-line {
  display: block;
  height: 12px;
  border-radius: 999px;
}

.xenah-skeleton-line-sm { width: 34%; }
.xenah-skeleton-line-md { width: 64%; }
.xenah-skeleton-line-lg { width: 88%; }

.xenah-product-media-skeleton {
  min-height: 180px;
  margin-bottom: 16px;
}

.xenah-skeleton-meta {
  margin-top: auto;
}

.xenah-product-btn {
  width: 100%;
  height: 42px;
  margin-top: auto;
  border: none;
  border-radius: 12px;
  background: var(--sage-dark);
  color: var(--white);
  font-weight: 700;
  transition: background 0.22s ease, transform 0.22s ease;
}

.xenah-product-btn:hover {
  background: var(--sage);
}

.xenah-product-btn:active {
  transform: translateY(1px);
}

.xenah-product-btn-skeleton {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
}

.xenah-products-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  border: 1px dashed var(--border);
  border-radius: 22px;
  background: rgba(255,252,247,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
}

@keyframes xenah-skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.xenah-reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transition-delay: var(--reveal-delay);
}

.xenah-reveal--stack {
  transform: translateY(18px);
  will-change: transform, opacity;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.xenah-reveal--soft {
  transform: translateY(18px);
  will-change: transform, opacity;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.xenah-reveal.is-visible,
.xenah-reveal--stack.is-visible,
.xenah-reveal--soft.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.xenah-reveal.is-visible {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .xenah-reveal,
  .xenah-reveal--stack,
  .xenah-reveal--soft {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .xenah-brands-carousel .xenah-brands-track {
    animation: none !important;
  }
}

.xenah-reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xenah-review-card {
  padding: 24px;
}

.xenah-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efe5d6, #dde4d3);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.xenah-review-card h3 {
  margin: 0 0 10px;
}

.xenah-review-stars {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.xenah-review-card p:last-child {
  margin: 0;
  line-height: 1.8;
}

.xenah-about {
  padding-block: clamp(42px, 5vw, 68px);
}

.xenah-about-layout {
  max-width: 760px;
  margin-inline: auto;
  display: block;
  text-align: center;
}

.xenah-section-head-compact {
  margin-bottom: 0;
}

.xenah-about .xenah-section-head-compact {
  max-width: 720px;
  margin-inline: auto;
}

.xenah-about-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.xenah-about-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(126, 136, 104, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.xenah-about-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.xenah-about-social-link:hover,
.xenah-about-social-link:focus-visible {
  background: var(--white);
  border-color: rgba(185, 149, 91, 0.38);
  color: var(--sage);
  transform: translateY(-2px);
}

.xenah-about-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xenah-contact-card {
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 992px) {
  


  100% { background-position: -200% 0; }
}

@media (max-width: 1199px) {
  .xenah-brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xenah-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xenah-about-layout { grid-template-columns: 1fr; }
  .xenah-about-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .xenah-offers-grid,
  .xenah-reviews-grid,
  .xenah-about-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .xenah-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .xenah-brands-grid,
  .xenah-offers-grid,
  .xenah-reviews-grid,
  .xenah-about-cards,
  .xenah-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .xenah-brand-card { min-height: 78px; }
  .xenah-brands-carousel-shell {
    width: calc(100vw - 10px);
  }
  .xenah-brands-carousel {
    padding-bottom: 10px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }
  .xenah-brands-arrow {
    display: none;
  }
  .xenah-brands-carousel .xenah-brands-track {
    gap: 14px;
    animation-duration: 28s;
  }
  .xenah-brand-logo-card {
    flex-basis: 174px;
    min-height: 104px;
    padding: 18px 20px;
  }
  .xenah-brand-logo { max-height: 56px; }
  .xenah-offer-media { min-height: 240px; }
  .xenah-product-media { min-height: 150px; }
}

@media (max-width: 479px) {
  .xenah-offers-grid,
  .xenah-reviews-grid,
  .xenah-about-cards { grid-template-columns: 1fr; }

  .xenah-products-grid,
  .xenah-brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.xenah-section { padding: 84px 0; }
#bestsellers {
  scroll-margin-top: 140px;
  padding-top: 96px;
}
.xenah-section-soft { background: linear-gradient(180deg, rgba(254, 252, 247, 0.84), rgba(255, 253, 248, 0)); }
.xenah-section-head { margin-bottom: 26px; }
.xenah-section-head h2 { margin: 8px 0 14px; font-size: clamp(1.9rem, 3vw, 3rem); }

.xenah-section-head p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.xenah-section-kicker {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.xenah-placeholder-grid,
.xenah-placeholder-reviews,
.xenah-about-placeholder {
  display: grid;
  gap: 18px;
}

.xenah-placeholder-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.xenah-placeholder-grid-categories { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.xenah-placeholder-card,
.xenah-placeholder-banner,
.xenah-placeholder-review,
.xenah-about-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 252, 247, 0.92)), var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.xenah-placeholder-card,
.xenah-placeholder-review,
.xenah-about-card { background-color: var(--card-bg); }

.xenah-placeholder-card { min-height: 220px; }
.xenah-placeholder-banner {
  min-height: 240px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 238, 0.9));
}
.xenah-placeholder-reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.xenah-placeholder-review { min-height: 220px; }
.xenah-about-placeholder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.xenah-about-card { min-height: 220px; }

.xenah-footer {
  background: linear-gradient(180deg, var(--cream), #FFFDF8);
  border-top: 1px solid var(--border);
  padding-top: 52px;
}

.xenah-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.xenah-footer-brand p,
.xenah-footer-column a {
  color: var(--muted);
  line-height: 1.8;
}

.xenah-footer-brand p {
  max-width: 330px;
  margin: 14px 0 0;
}

.xenah-footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.xenah-footer-column h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--sage-dark);
}

.xenah-footer-column a:hover { color: var(--sage-dark); }

.xenah-footer-bottom {
  margin-top: 30px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(185, 149, 91, 0.16);
}

.xenah-footer-bottom p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.xenah-simple-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: linear-gradient(180deg, var(--page-bg), #FFFFFF);
}

.xenah-simple-card {
  max-width: 720px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  box-shadow: var(--shadow-soft);
}

.xenah-simple-card h1 { margin: 24px 0 12px; }

.xenah-simple-card p {
  margin: 0 auto 24px;
  max-width: 500px;
  color: var(--muted);
  line-height: 1.8;
}

.xenah-product-page {
  min-height: 100vh;
  padding: 28px 0 70px;
  background: #FFFFFF;
}

.xenah-product-page-container {
  width: min(100% - 32px, var(--container-max));
  margin: 0 auto;
}

.xenah-product-page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.xenah-product-page-logo img {
  max-height: 58px;
}

.xenah-product-detail {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.xenah-product-not-found {
  border: 1px solid rgba(201, 178, 150, 0.18);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.76);
  box-shadow: 0 12px 34px rgba(81, 69, 49, 0.06);
}

.xenah-product-detail[hidden],
.xenah-product-not-found[hidden],
.xenah-product-detail-message[hidden] {
  display: none !important;
}

.xenah-product-detail-loading,
.xenah-product-not-found {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  color: var(--muted);
}

.xenah-product-not-found h1 {
  margin: 0 0 20px;
  color: var(--text);
}

.xenah-product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 clamp(16px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.xenah-product-breadcrumb a {
  color: var(--sage-dark);
  text-decoration: none;
}

.xenah-product-breadcrumb a:hover {
  color: var(--sage);
}

.xenah-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
  padding: 0 0 clamp(28px, 4vw, 46px);
}

.xenah-product-detail-media {
  grid-column: 1;
  min-height: clamp(360px, 40vw, 460px);
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  padding: clamp(8px, 2vw, 18px);
}

.xenah-product-detail-image {
  width: min(88%, 380px);
  max-height: 380px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.xenah-product-detail-media .xenah-product-placeholder-visual {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.xenah-product-detail-media .xenah-product-bottle {
  width: 76px;
  height: 136px;
  box-shadow: 0 18px 38px rgba(95, 104, 78, 0.08);
}

.xenah-product-detail-media .xenah-product-shadow {
  bottom: 22%;
  opacity: 0.55;
}

.xenah-product-detail-media:not(.is-fallback) .xenah-product-placeholder-visual {
  display: none;
}

.xenah-product-detail-content {
  grid-column: 2;
  padding: clamp(18px, 2.4vw, 28px);
  border: 0;
  box-shadow: none;
  background: transparent;
}

.xenah-product-detail-content h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--text);
}

.xenah-product-detail-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.xenah-product-detail-meta-line span + span::before {
  content: "/";
  margin-inline-end: 8px;
  color: rgba(136, 122, 94, 0.55);
}

.xenah-product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
  margin-bottom: 8px;
}

.xenah-product-detail-badges span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.xenah-product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 8px;
}

.xenah-product-detail-price-row strong {
  color: var(--sage-dark);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.xenah-product-detail-old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}

.xenah-product-detail-tax {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.xenah-product-detail-stock {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 0;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.92rem;
}

.xenah-product-detail-stock.is-available {
  background: transparent;
  color: var(--sage-dark);
}

.xenah-product-detail-stock.is-unavailable {
  background: transparent;
  color: #8b4f45;
}

.xenah-product-detail-description-wrap {
  margin: 0 0 16px;
}

.xenah-product-detail-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.xenah-product-detail-description-wrap.is-collapsible .xenah-product-detail-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.xenah-product-detail-description-wrap.is-expanded .xenah-product-detail-description {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.xenah-product-description-toggle {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sage-dark);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.xenah-product-description-toggle:hover {
  color: var(--sage);
}

.xenah-product-detail-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 800;
}

.xenah-product-detail-quantity {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(201, 178, 150, 0.48);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.xenah-product-detail-quantity button,
.xenah-product-detail-quantity input {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  font: inherit;
  font-weight: 800;
}

.xenah-product-detail-quantity button {
  cursor: pointer;
  color: var(--sage-dark);
}

.xenah-product-detail-quantity input {
  appearance: textfield;
}

.xenah-product-detail-quantity input::-webkit-outer-spin-button,
.xenah-product-detail-quantity input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.xenah-product-primary-btn,
.xenah-product-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.xenah-product-primary-btn {
  border: 1px solid var(--sage-dark);
  background: var(--sage-dark);
  color: var(--white);
}

.xenah-product-primary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.xenah-product-secondary-btn {
  border: 1px solid rgba(126, 136, 104, 0.32);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--sage-dark);
  min-height: 50px;
  padding: 12px 22px;
}

.xenah-product-primary-btn:not(:disabled):hover,
.xenah-product-secondary-btn:hover {
  transform: translateY(-1px);
}

.xenah-product-detail-message {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(126, 136, 104, 0.12);
  color: var(--sage-dark);
  font-weight: 800;
}

.xenah-product-page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 620px;
  margin-top: 14px;
}

.xenah-product-page-actions .xenah-product-primary-btn,
.xenah-product-page-actions .xenah-product-secondary-btn {
  flex: 1 1 260px;
  min-width: 230px;
  min-height: 50px;
}

.xenah-product-page-actions .xenah-product-primary-btn {
  box-shadow: 0 14px 28px rgba(80, 92, 67, 0.16);
}

.xenah-product-page-actions .xenah-product-secondary-btn {
  white-space: nowrap;
}

.xenah-product-overview {
  margin: 0 clamp(20px, 3.6vw, 44px) clamp(20px, 3.6vw, 36px);
  padding: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(201, 178, 150, 0.18);
}

.xenah-product-overview h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.xenah-product-overview p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.9;
}

.xenah-product-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 clamp(20px, 3.6vw, 44px) clamp(20px, 3.6vw, 36px);
}

.xenah-product-trust-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid rgba(201, 178, 150, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--sage-dark);
}

.xenah-product-trust-card span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
  font-weight: 900;
}

.xenah-product-trust-card strong {
  font-size: 0.95rem;
}

.xenah-product-related {
  margin-top: 34px;
}

.xenah-product-related[hidden] {
  display: none !important;
}

.xenah-product-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.xenah-product-related-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.xenah-product-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .xenah-product-detail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .xenah-product-detail-media,
  .xenah-product-detail-content {
    grid-column: 1;
  }

  .xenah-product-detail-media {
    min-height: 320px;
  }

  .xenah-product-detail-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .xenah-product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xenah-product-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .xenah-product-page {
    padding-top: 22px;
    padding-bottom: 46px;
  }

  .xenah-product-page-container {
    width: min(100% - 22px, var(--container-max));
  }

  .xenah-product-page-topbar {
    margin-bottom: 18px;
  }

  .xenah-product-page-logo img {
    max-height: 48px;
  }

  .xenah-product-not-found {
    border-radius: 24px;
  }

  .xenah-product-detail-grid {
    padding: 0 0 24px;
    gap: 18px;
  }

  .xenah-product-detail-media {
    min-height: 240px;
    border-radius: 0;
    padding: 4px 0 10px;
  }

  .xenah-product-detail-image {
    width: min(88%, 260px);
    max-height: 220px;
  }

  .xenah-product-detail-content h1 {
    margin-block: 8px;
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .xenah-product-detail-price-row {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .xenah-product-detail-description-wrap {
    margin-bottom: 16px;
  }

  .xenah-product-detail-description {
    line-height: 1.75;
  }

  .xenah-product-detail-purchase {
    width: 100%;
    max-width: none;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .xenah-product-page-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: none;
  }

  .xenah-product-page-actions .xenah-product-primary-btn,
  .xenah-product-page-actions .xenah-product-secondary-btn {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    height: auto;
    padding: 12px 18px;
    align-self: stretch;
  }

  .xenah-product-page-actions .xenah-product-secondary-btn {
    background: rgba(255, 253, 249, 0.72);
    border: 1px solid rgba(126, 136, 104, 0.32);
  }

  .xenah-product-related {
    margin-top: 24px;
  }

  .xenah-product-breadcrumb {
    padding: 0 0 14px;
    font-size: 0.84rem;
  }

  .xenah-product-overview {
    margin: 0 14px 18px;
    padding: 18px 0 0;
  }

  .xenah-product-trust-row {
    grid-template-columns: 1fr;
    margin: 0 14px 20px;
    gap: 10px;
  }

  .xenah-product-trust-card {
    min-height: 66px;
    padding: 12px 14px;
  }

  .xenah-product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 1199px) {
  .xenah-nav { gap: 16px; font-size: 0.94rem; }
  .xenah-search-desktop { flex-basis: 250px; }
  .xenah-logo-wrap img { max-height: 54px; }
  .xenah-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xenah-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
  .xenah-header-grid {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    flex-wrap: nowrap;
    padding-inline: 2px;
  }

  html[dir="ltr"] .xenah-header-grid {
    direction: ltr;
    flex-direction: row;
  }

  html[dir="rtl"] .xenah-header-grid {
    direction: rtl;
    flex-direction: row;
  }

  .xenah-header-actions,
  .xenah-action-icons {
    display: contents;
  }

  .xenah-mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--card-bg);
    padding: 0;
    flex: 0 0 auto;
  }

  .xenah-mobile-menu-btn span {
    width: 18px;
    height: 1.8px;
    margin-inline: auto;
    background: var(--sage-dark);
    border-radius: 999px;
  }

  .xenah-nav,
  .xenah-search-desktop,
  .xenah-header-divider,
  .xenah-desktop-only { display: none; }

  .xenah-mobile-logo,
  .xenah-mobile-lang,
  .xenah-mobile-search,
  .xenah-mobile-cart,
  .xenah-mobile-account {
    flex: 0 0 auto;
  }

  .xenah-mobile-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    margin-inline: 2px 4px;
  }

  .xenah-mobile-logo img {
    max-height: 40px;
    max-width: 92px;
  }

  .xenah-mobile-lang,
  .xenah-mobile-search,
  .xenah-mobile-cart,
  .xenah-mobile-account {
    width: 40px;
    height: 40px;
  }

  .xenah-mobile-cart .xenah-cart-counter {
    top: -3px;
    inset-inline-end: -2px;
  }

  .xenah-search-toggle { display: inline-flex; }

  html[dir="ltr"] .xenah-mobile-menu-toggle { order: 1; }
  html[dir="ltr"] .xenah-mobile-logo { order: 2; }
  html[dir="ltr"] .xenah-mobile-lang { order: 3; }
  html[dir="ltr"] .xenah-mobile-search { order: 4; }
  html[dir="ltr"] .xenah-mobile-cart { order: 5; }
  html[dir="ltr"] .xenah-mobile-account { order: 6; }

  html[dir="rtl"] .xenah-mobile-menu-toggle { order: 1; }
  html[dir="rtl"] .xenah-mobile-logo { order: 2; }
  html[dir="rtl"] .xenah-mobile-lang { order: 3; }
  html[dir="rtl"] .xenah-mobile-search { order: 4; }
  html[dir="rtl"] .xenah-mobile-cart { order: 5; }
  html[dir="rtl"] .xenah-mobile-account { order: 6; }

  .xenah-mobile-search-row { display: block; padding-bottom: 14px; }
  .xenah-mobile-search-row[hidden] { display: none; }

  .xenah-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(47, 47, 43, 0.18);
    align-items: stretch;
  }

  .xenah-mobile-drawer.is-open { display: flex; }
  body.is-ltr .xenah-mobile-drawer { justify-content: flex-start; }
  body.is-rtl .xenah-mobile-drawer { justify-content: flex-end; }

  .xenah-mobile-drawer-panel {
    width: min(86vw, 340px);
    background: var(--warm-white);
    padding: 24px 20px;
    box-shadow: 0 0 0 1px rgba(232, 221, 202, 0.62), 18px 0 40px rgba(95, 104, 78, 0.12);
  }

  .xenah-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
  }

  .xenah-drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--sage-dark);
    font-size: 1.6rem;
    line-height: 1;
  }

  .xenah-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .xenah-mobile-nav a {
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(246, 241, 232, 0.84);
    font-weight: 700;
  }

  .xenah-lang-toggle-drawer {
    margin-top: 18px;
    width: 100%;
    border-radius: 999px;
  }

  .xenah-placeholder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xenah-placeholder-grid-categories,
  .xenah-placeholder-reviews,
  .xenah-about-placeholder { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .xenah-container { width: min(calc(100% - 20px), var(--container-max)); }

  .xenah-topbar-inner {
    min-height: 44px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

  .xenah-topbar-links { gap: 14px; font-size: 0.88rem; }
  .xenah-header-grid { min-height: 72px; column-gap: 10px; }
  .xenah-logo-wrap img { max-height: 44px; }
  .xenah-icon-btn, .xenah-lang-toggle, .xenah-mobile-menu-btn { width: 40px; height: 40px; }
  .xenah-section { padding: 56px 0; }
  .xenah-footer-grid { grid-template-columns: 1fr; gap: 22px; }
}











#bestsellers {
  scroll-margin-top: 140px;
  padding-top: 96px;
}

.xenah-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.xenah-product-media {
  height: 220px;
  min-height: 220px;
}

.xenah-product-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.xenah-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.xenah-product-card--transparent .xenah-product-media {
  border-color: transparent;
  background: transparent;
}

.xenah-product-card--transparent .xenah-product-image-wrap {
  padding: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.xenah-product-card--transparent .xenah-product-image {
  max-width: 94%;
  max-height: 100%;
  object-fit: contain;
}

.xenah-product-card--boxed .xenah-product-media {
  background: transparent;
  border-color: transparent;
}

.xenah-product-card--boxed .xenah-product-image-wrap {
  padding: 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.xenah-product-card--boxed .xenah-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xenah-product-btn {
  margin-top: auto;
}

@media (max-width: 1199px) {
  .xenah-product-media {
    height: 200px;
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  #bestsellers {
    padding-top: 64px;
    scroll-margin-top: 120px;
  }

  .xenah-product-media {
    height: 170px;
    min-height: 170px;
  }
}

:root {
  --page-bg: #FFFDF8;
  --card-bg: #FFFFFF;
  --soft-cream: #FAF6EE;
  --border: rgba(201, 178, 150, 0.18);
}

body,
.site-main,
main,
#bestsellers {
  background: var(--page-bg);
}

.xenah-product-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 178, 150, 0.22);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(88, 67, 45, 0.04);
}

.xenah-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(88, 67, 45, 0.065);
  border-color: rgba(126, 136, 104, 0.28);
}

.xenah-product-image-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.xenah-product-card--transparent .xenah-product-image-wrap {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.xenah-product-card--transparent .xenah-product-image {
  max-width: 94%;
  max-height: 100%;
  object-fit: contain;
}

.xenah-product-card--boxed .xenah-product-image-wrap {
  background: transparent;
  border: 0;
}

.xenah-product-card--boxed .xenah-product-image {
  object-fit: contain;
}

.xenah-product-btn {
  background: var(--sage-dark);
  border-radius: 14px;
  box-shadow: none;
}

.xenah-product-btn:hover {
  background: var(--sage);
}

:root {
  --page-bg: #FFFDF8;
  --card-bg: #FFFFFF;
  --card-border: rgba(201, 178, 150, 0.16);
  --image-wrap-bg: #FFFFFF;
}

body,
.site-main,
main,
#bestsellers {
  background: var(--page-bg);
}

.xenah-product-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0 6px 18px rgba(88, 67, 45, 0.025);
}

.xenah-product-card:hover {
  box-shadow: 0 12px 28px rgba(88, 67, 45, 0.05);
  border-color: rgba(126, 136, 104, 0.22);
}

.xenah-product-image-wrap {
  background: transparent;
  border-color: transparent;
}

.xenah-product-card--transparent .xenah-product-image-wrap {
  background: transparent;
  border-color: transparent;
}

.xenah-product-card--boxed .xenah-product-image-wrap {
  background: transparent;
  border-color: transparent;
}

:root {
  --page-bg: #FFFDF8;
  --card-bg: #FFFFFF;
  --card-border: rgba(201, 178, 150, 0.12);
  --image-wrap-bg: #FFFFFF;
}

body,
.site-main,
main,
#bestsellers {
  background: var(--page-bg);
}

.xenah-product-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0 4px 12px rgba(88, 67, 45, 0.018);
}

.xenah-product-card:hover {
  box-shadow: 0 10px 22px rgba(88, 67, 45, 0.035);
  border-color: rgba(201, 178, 150, 0.16);
}

.xenah-product-image-wrap {
  background: transparent;
  border-color: transparent;
}

.xenah-product-card--transparent .xenah-product-image-wrap {
  background: transparent;
}

.xenah-product-card--boxed .xenah-product-image-wrap {
  background: transparent;
  border-color: transparent;
}

@media (max-width: 767px) {
  .xenah-product-card {
    padding: 12px 12px 14px;
  }

  .xenah-product-brand {
    margin-bottom: 6px;
  }

  .xenah-product-name {
    margin-bottom: 10px;
  }

  .xenah-product-category {
    margin: -4px 0 10px;
  }

  .xenah-product-meta {
    gap: 8px;
    margin-bottom: 10px;
  }

  .xenah-product-rating {
    font-size: 0.78rem;
  }

  .xenah-product-card__cart-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    margin-inline-start: auto;
    padding: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
  }

  .xenah-product-card__cart-btn::before {
    content: "??";
    font-size: 1rem;
    line-height: 1;
  }

  .xenah-product-card__cart-btn .xenah-product-btn-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.xenah-product-cart-icon {
  display: none;
  width: 18px;
  height: 18px;
}

.xenah-product-cart-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .xenah-product-card {
    padding-bottom: 12px;
  }

  .xenah-product-meta {
    margin-bottom: 0;
    align-items: flex-end;
  }

  .xenah-product-card__floating-cart {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    inset-inline-end: auto;
    z-index: 2;
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(201, 178, 150, 0.18);
    background: rgba(255, 253, 249, 0.96);
    color: var(--sage-dark);
    box-shadow: 0 6px 14px rgba(88, 67, 45, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
  }

  .xenah-product-card__floating-cart:hover {
    background: rgba(255, 253, 249, 0.98);
    color: var(--sage-dark);
    border-color: rgba(126, 136, 104, 0.22);
    box-shadow: 0 8px 16px rgba(88, 67, 45, 0.05);
  }

  .xenah-product-card__floating-cart .xenah-product-btn-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .xenah-product-card__floating-cart {
    border-color: var(--sage);
    background: #ffffff;
    color: var(--sage);
    box-shadow: 0 3px 10px rgba(88, 67, 45, 0.025);
  }

  .xenah-product-card__floating-cart:hover {
    background: #ffffff;
    color: var(--sage);
    border-color: var(--sage);
    box-shadow: 0 5px 12px rgba(88, 67, 45, 0.035);
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 767px) {
  .xenah-product-card__floating-cart {
    border-color: var(--sage);
    background: #ffffff;
    color: var(--sage);
    box-shadow: 0 2px 8px rgba(88, 67, 45, 0.018);
  }

  .xenah-product-card__floating-cart:hover {
    background: #ffffff;
    color: var(--sage);
    border-color: var(--sage);
    box-shadow: 0 3px 10px rgba(88, 67, 45, 0.024);
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 767px) {
  .xenah-product-card__floating-cart {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--sage);
    color: var(--sage);
    box-shadow: 0 1px 4px rgba(88, 67, 45, 0.02);
  }

  .xenah-product-card__floating-cart:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--sage);
    color: var(--sage);
    box-shadow: 0 2px 6px rgba(88, 67, 45, 0.028);
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon {
    width: 17px;
    height: 17px;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--sage);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 767px) {
  .xenah-product-card__cart-btn::before,
  .xenah-product-card__cart-btn::after,
  .xenah-product-card__floating-cart::before,
  .xenah-product-card__floating-cart::after {
    content: none !important;
    display: none !important;
  }
}

@media (max-width: 767px) {
  .xenah-product-meta {
    margin-bottom: 8px;
  }

  .xenah-product-card__floating-cart {
    position: static;
    inset: auto;
    align-self: flex-start;
    margin-top: 0;
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--sage);
    color: var(--sage);
    box-shadow: 0 1px 4px rgba(88, 67, 45, 0.018);
  }

  .xenah-product-card__floating-cart:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--sage);
    color: var(--sage);
    box-shadow: 0 2px 5px rgba(88, 67, 45, 0.022);
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon,
  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    width: 16px;
    height: 16px;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    fill: none;
    stroke: var(--sage);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

.xenah-product-meta {
  flex-wrap: wrap;
}

.xenah-product-card__floating-cart {
  order: 3;
  flex: 0 0 100%;
  width: 100%;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .xenah-product-meta {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
  }

  .xenah-product-price-wrap {
    flex: 0 1 auto;
  }

  .xenah-product-rating {
    flex: 0 1 auto;
    text-align: center;
  }

  .xenah-product-card__floating-cart {
    order: 0;
    flex: 0 0 auto;
    width: 32px;
    min-width: 32px;
    height: 32px;
    margin-top: 0;
    margin-inline-start: auto;
    align-self: center;
    position: static;
    inset: auto;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--sage);
    color: var(--sage);
    box-shadow: 0 1px 4px rgba(88, 67, 45, 0.018);
  }

  .xenah-product-card__floating-cart:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--sage);
    color: var(--sage);
    box-shadow: 0 2px 5px rgba(88, 67, 45, 0.022);
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon,
  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    width: 16px;
    height: 16px;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    fill: none;
    stroke: var(--sage);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 767px) {
  .xenah-product-meta {
    display: grid;
    align-items: start;
    gap: 2px 8px;
    margin-bottom: 0;
  }

  body.is-ltr .xenah-product-meta {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "price cart"
      "price rating";
  }

  body.is-rtl .xenah-product-meta {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "cart price"
      "rating price";
  }

  .xenah-product-price-wrap {
    grid-area: price;
    align-self: center;
    min-width: 0;
  }

  .xenah-product-card__floating-cart {
    grid-area: cart;
    justify-self: center;
    align-self: end;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin: 0;
  }

  .xenah-product-rating {
    grid-area: rating;
    align-self: start;
    justify-self: center;
    font-size: 0.76rem;
    line-height: 1.1;
    text-align: center;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .xenah-product-card {
    display: grid;
    align-content: start;
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0;
  }

  body.is-rtl .xenah-product-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .xenah-product-media,
  .xenah-product-brand,
  .xenah-product-name,
  .xenah-product-meta {
    grid-column: 1 / -1;
  }

  .xenah-product-media {
    grid-row: 1;
  }

  .xenah-product-brand {
    grid-row: 2;
  }

  .xenah-product-name {
    grid-row: 3;
  }

  .xenah-product-category {
    grid-row: 4;
    align-self: center;
    margin: -4px 0 8px;
  }

  body.is-ltr .xenah-product-category {
    grid-column: 1;
    text-align: left;
  }

  body.is-rtl .xenah-product-category {
    grid-column: 2;
    text-align: right;
  }

  .xenah-product-card__floating-cart {
    grid-row: 4;
    position: static;
    inset: auto;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin: 0 0 8px;
    padding: 0;
    align-self: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--sage);
    color: var(--sage);
    box-shadow: 0 1px 4px rgba(88, 67, 45, 0.018);
  }

  body.is-ltr .xenah-product-card__floating-cart {
    grid-column: 2;
    justify-self: end;
  }

  body.is-rtl .xenah-product-card__floating-cart {
    grid-column: 1;
    justify-self: start;
  }

  .xenah-product-meta {
    grid-row: 5;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .xenah-product-card {
    display: flex;
    flex-direction: column;
  }

  .xenah-product-category {
    margin: -4px 0 8px;
    text-align: start;
  }

  .xenah-product-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "price cart"
      "rating rating";
    align-items: center;
    gap: 4px 8px;
    margin: 0;
  }

  body.is-rtl .xenah-product-meta {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "cart price"
      "rating rating";
  }

  .xenah-product-price-wrap {
    grid-area: price;
    min-width: 0;
    align-self: center;
  }

  .xenah-product-card__floating-cart {
    grid-area: cart;
    position: static;
    inset: auto;
    order: 0;
    flex: 0 0 auto;
    align-self: center;
    justify-self: end;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--sage);
    color: var(--sage);
    box-shadow: 0 1px 4px rgba(88, 67, 45, 0.018);
  }

  body.is-rtl .xenah-product-card__floating-cart {
    justify-self: start;
  }

  .xenah-product-card__floating-cart:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--sage);
    color: var(--sage);
    box-shadow: 0 2px 5px rgba(88, 67, 45, 0.022);
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon,
  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    width: 16px;
    height: 16px;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    fill: none;
    stroke: var(--sage);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .xenah-product-rating {
    grid-area: rating;
    justify-self: start;
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.1;
    text-align: start;
  }

  body.is-rtl .xenah-product-rating {
    justify-self: end;
    text-align: end;
  }
}

.xenah-product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .xenah-product-category {
    margin: -4px 0 8px;
  }

  .xenah-product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 4px;
  }

  .xenah-product-price-wrap {
    min-width: 0;
    flex: 0 1 auto;
  }

  .xenah-product-card__floating-cart {
    position: static;
    inset: auto;
    order: 0;
    flex: 0 0 auto;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--sage);
    color: var(--sage);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .xenah-product-card__floating-cart:hover,
  .xenah-product-card__floating-cart:active {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--sage);
    color: var(--sage);
    box-shadow: none;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon,
  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    width: 16px;
    height: 16px;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .xenah-product-meta {
    display: block;
    margin: 0;
  }

  .xenah-product-rating {
    display: block;
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.1;
    text-align: start;
  }

  body.is-rtl .xenah-product-rating {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .xenah-product-name {
    margin-bottom: 6px;
  }

  .xenah-product-category {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .xenah-product-meta-row {
    margin-top: 6px;
    margin-bottom: 4px;
  }

  .xenah-product-meta {
    text-align: center;
  }

  .xenah-product-rating {
    text-align: center;
    justify-self: center;
    margin-top: 4px;
  }

  body.is-rtl .xenah-product-rating,
  body.is-ltr .xenah-product-rating {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .xenah-product-card {
    display: flex;
    flex-direction: column;
  }

  .xenah-product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
    margin-bottom: 4px;
  }

  .xenah-product-category {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .xenah-product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
    margin-bottom: 0;
  }

  body.is-rtl .xenah-product-meta-row {
    flex-direction: row;
  }

  body.is-ltr .xenah-product-meta-row {
    flex-direction: row;
  }

  .xenah-product-price-wrap {
    min-width: 0;
    flex: 0 1 auto;
  }

  .xenah-product-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
  }

  .xenah-product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .xenah-product-name {
    margin-bottom: 3px;
  }

  .xenah-product-category {
    margin-bottom: 5px;
  }

  .xenah-product-meta-row {
    margin-top: 3px;
  }

  .xenah-product-meta {
    margin-top: 2px;
  }

  .xenah-product-card__floating-cart {
    width: 29px;
    min-width: 29px;
    height: 29px;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon,
  .xenah-product-card__floating-cart .xenah-product-cart-icon svg {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 768px) {
  .xenah-product-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: auto;
    margin-bottom: 10px;
  }

  .xenah-product-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .xenah-product-card__floating-cart {
    position: static;
    inset: auto;
    order: initial;
    width: 100%;
    min-width: 0;
    height: 42px;
    margin: 0;
    padding: 0 14px;
    border-radius: 14px;
    background: var(--sage-dark);
    border: none;
    color: var(--white);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
  }

  .xenah-product-card:hover .xenah-product-card__floating-cart {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon {
    display: none;
  }

  .xenah-product-card__floating-cart .xenah-product-btn-text {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
    border: 0;
    font-size: 0.95rem;
    line-height: 1;
  }

  .xenah-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: initial;
  }

  .xenah-product-rating {
    display: inline-flex;
    width: auto;
    margin-top: 0;
    text-align: initial;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .xenah-product-card__floating-cart .xenah-product-btn-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .xenah-product-card__floating-cart .xenah-product-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .xenah-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    background: rgba(34, 36, 30, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: stretch;
  }

  .xenah-mobile-drawer.is-open {
    display: flex;
  }

  body.is-ltr .xenah-mobile-drawer {
    justify-content: flex-start;
  }

  body.is-rtl .xenah-mobile-drawer {
    justify-content: flex-end;
  }

  .xenah-mobile-drawer-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 121;
    width: min(86vw, 340px);
    background: rgba(255, 253, 248, 0.98);
    padding: 24px 20px;
    box-shadow: 0 0 0 1px rgba(232, 221, 202, 0.62), 0 24px 60px rgba(47, 47, 43, 0.18);
    overflow-y: auto;
  }

  body.is-ltr .xenah-mobile-drawer-panel {
    left: 0;
  }

  body.is-rtl .xenah-mobile-drawer-panel {
    right: 0;
  }

  .xenah-mobile-drawer-head {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(255, 253, 248, 0.98);
    padding-bottom: 14px;
    margin-bottom: 20px;
  }

  .xenah-mobile-nav a {
    display: block;
  }
}

@media (max-width: 991px) {
  .xenah-mobile-drawer {
    z-index: 140;
    background: rgba(30, 20, 16, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .xenah-mobile-drawer-panel {
    z-index: 141;
    width: min(88vw, 348px);
    background: #FFFCF8;
    padding: 22px 18px 24px;
    box-shadow: 0 0 0 1px rgba(201, 178, 150, 0.16), 0 28px 70px rgba(30, 20, 16, 0.18);
  }

  .xenah-mobile-drawer-head {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 178, 150, 0.18);
    background: #FFFCF8;
  }

  .xenah-mobile-drawer-logo {
    justify-content: flex-start;
  }

  .xenah-mobile-nav {
    gap: 10px;
  }

  .xenah-mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(201, 178, 150, 0.22);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(88, 67, 45, 0.03);
  }

  .xenah-mobile-nav a:hover,
  .xenah-mobile-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(126, 136, 104, 0.22);
    outline: none;
  }

  .xenah-drawer-close {
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(88, 67, 45, 0.03);
  }

  .xenah-lang-toggle-drawer {
    margin-top: 16px;
    background: #ffffff;
  }
}

@media (max-width: 991px) {
  .xenah-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
    background: rgba(24, 18, 15, 0.56);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 260ms ease;
  }

  .xenah-mobile-drawer.is-open {
    display: block;
    opacity: 1;
  }

  .xenah-mobile-drawer-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 141;
    width: 86vw;
    max-width: 340px;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #FFFCF8;
    padding: 18px 16px 20px;
    box-shadow: 0 0 0 1px rgba(201, 178, 150, 0.14), 0 24px 58px rgba(30, 20, 16, 0.2);
    overflow: hidden;
    transition: transform 260ms ease;
  }

  body.is-rtl .xenah-mobile-drawer-panel {
    right: 0;
    transform: translateX(100%);
  }

  body.is-ltr .xenah-mobile-drawer-panel {
    left: 0;
    transform: translateX(-100%);
  }

  .xenah-mobile-drawer.is-open .xenah-mobile-drawer-panel {
    transform: translateX(0);
  }

  .xenah-mobile-drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding: 4px 0 14px;
    border-bottom: 1px solid rgba(201, 178, 150, 0.18);
    background: #FFFCF8;
  }

  .xenah-mobile-drawer-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 6px;
  }

  .xenah-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .xenah-mobile-nav-row {
    width: 100%;
    min-height: 51px;
    padding: 13px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(201, 178, 150, 0.22);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(88, 67, 45, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
  }

  .xenah-mobile-nav-row:hover,
  .xenah-mobile-nav-row:focus-visible {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(126, 136, 104, 0.22);
    outline: none;
  }

  .xenah-mobile-nav-toggle {
    appearance: none;
  }

  .xenah-mobile-nav-chevron {
    width: 18px;
    height: 18px;
    color: var(--sage-dark);
    transition: transform 260ms ease;
    flex: 0 0 auto;
  }

  .xenah-mobile-nav-chevron svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .xenah-mobile-nav-accordion.is-open .xenah-mobile-nav-chevron {
    transform: rotate(180deg);
  }

  .xenah-mobile-subnav {
    display: grid;
    gap: 7px;
    padding: 8px 8px 2px 14px;
  }

  .xenah-mobile-subnav[hidden] {
    display: none !important;
  }

  .xenah-mobile-subnav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(201, 178, 150, 0.14);
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
  }

  .xenah-mobile-subnav a:hover,
  .xenah-mobile-subnav a:focus-visible {
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    outline: none;
  }

  .xenah-drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 178, 150, 0.22);
    background: #ffffff;
    color: var(--sage-dark);
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(88, 67, 45, 0.03);
  }

  .xenah-lang-toggle-drawer {
    margin-top: 14px;
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background: #ffffff;
  }
}







@media (min-width: 992px) {
  .xenah-header-grid {
    display: flex;
    align-items: center;
    min-height: 94px;
    column-gap: 18px;
  }

  html[dir="ltr"] .xenah-header-grid {
    direction: ltr;
    flex-direction: row;
  }

  html[dir="rtl"] .xenah-header-grid {
    direction: rtl;
    flex-direction: row;
  }

  .xenah-nav {
    order: 1;
    flex: 1 1 0;
    justify-content: flex-start;
    min-width: 0;
  }

  .xenah-logo-wrap {
    order: 2;
    flex: 0 0 auto;
    justify-content: center;
  }

  .xenah-header-actions {
    order: 3;
    flex: 1 1 0;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
  }

  .xenah-search-desktop {
    width: min(100%, 300px);
    flex: 0 1 300px;
  }

  .xenah-action-icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .xenah-search-toggle {
    display: none;
  }
}

.xenah-shop-page {
  background: var(--page-bg);
}

.xenah-shop-hero {
  padding-top: 56px;
}

.xenah-shop-head {
  margin-bottom: 28px;
}

.xenah-shop-toolbar {
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(88, 67, 45, 0.04);
  margin-bottom: 22px;
}

.xenah-shop-toolbar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.xenah-shop-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xenah-shop-field label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.xenah-shop-input,
.xenah-shop-select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(201, 178, 150, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.xenah-shop-input:focus,
.xenah-shop-select:focus {
  border-color: rgba(126, 136, 104, 0.4);
  box-shadow: 0 0 0 3px rgba(126, 136, 104, 0.08);
}

.xenah-shop-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.xenah-shop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.xenah-shop-toggle input {
  accent-color: var(--sage-dark);
}

.xenah-shop-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.xenah-shop-results-count,
.xenah-shop-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.xenah-shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.xenah-shop-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.xenah-shop-load-more[hidden] {
  display: none;
}

@media (max-width: 1199px) {
  .xenah-shop-toolbar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xenah-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .xenah-shop-hero {
    padding-top: 44px;
  }

  .xenah-shop-toolbar {
    padding: 16px;
    border-radius: 20px;
  }

  .xenah-shop-toolbar-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .xenah-shop-results-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .xenah-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.xenah-shop-hero {
  padding-top: 48px;
}

.xenah-shop-head {
  margin-bottom: 22px;
}

.xenah-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.xenah-shop-sidebar,
.xenah-shop-content {
  min-width: 0;
}

.xenah-shop-toolbar {
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: rgba(255, 253, 248, 0.88);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(88, 67, 45, 0.04);
}

.xenah-shop-toolbar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.xenah-shop-toolbar-title {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}

.xenah-shop-toolbar-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.xenah-shop-reset {
  border: 0;
  background: transparent;
  color: var(--sage-dark);
  font-weight: 700;
  padding: 0;
}

.xenah-shop-toolbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.xenah-shop-toggles {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 178, 150, 0.14);
}

.xenah-shop-toggle {
  min-height: 24px;
}

.xenah-shop-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.xenah-shop-results-count {
  color: var(--sage-dark);
  font-weight: 700;
}

.xenah-shop-status {
  color: var(--muted);
}

.xenah-shop-load-more-wrap {
  margin-top: 30px;
}

.xenah-shop-load-more {
  min-width: 190px;
  min-height: 50px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(88, 67, 45, 0.08);
}

@media (min-width: 992px) {
  .xenah-shop-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
  }

  .xenah-shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
  }

  .xenah-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .xenah-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .xenah-shop-toolbar {
    padding: 18px;
    border-radius: 20px;
  }

  .xenah-shop-toolbar-head {
    margin-bottom: 14px;
  }

  .xenah-shop-toolbar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .xenah-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .xenah-shop-hero {
    padding-top: 42px;
  }

  .xenah-shop-layout {
    gap: 18px;
  }

  .xenah-shop-toolbar {
    padding: 16px;
    border-radius: 18px;
  }

  .xenah-shop-toolbar-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .xenah-shop-toolbar-grid {
    grid-template-columns: 1fr;
  }

  .xenah-shop-results-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .xenah-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xenah-shop-load-more {
    width: 100%;
  }
}

/* Shop page visual polish */
.xenah-shop-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 0 32%),
    linear-gradient(180deg, var(--page-bg) 0%, #FFFFFF 100%);
}

.xenah-shop-page .xenah-container {
  position: relative;
}

.xenah-shop-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.xenah-shop-page .xenah-section-kicker {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.xenah-shop-page .xenah-section-head h1 {
  margin-bottom: 12px;
}

.xenah-shop-page .xenah-section-head p:last-child {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
}

.xenah-shop-layout {
  gap: 26px;
}

.xenah-shop-toolbar {
  position: relative;
  border: 1px solid rgba(201, 178, 150, 0.18);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 251, 245, 0.96) 100%);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(88, 67, 45, 0.05);
}

.xenah-shop-toolbar::after {
  content: "";
  position: absolute;
  inset-inline: 22px;
  top: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 178, 150, 0.2), transparent);
}

.xenah-shop-toolbar-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.xenah-shop-toolbar-title {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.xenah-shop-toolbar-text {
  max-width: 23ch;
  line-height: 1.8;
}

.xenah-shop-reset {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 150, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--sage-dark);
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.xenah-shop-reset:hover,
.xenah-shop-reset:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(126, 136, 104, 0.24);
  color: var(--sage-dark);
  transform: translateY(-1px);
}

.xenah-shop-toolbar-grid {
  gap: 16px;
}

.xenah-shop-field {
  gap: 9px;
}

.xenah-shop-field label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--sage-dark);
}

.xenah-shop-input,
.xenah-shop-select {
  min-height: 50px;
  border-radius: 17px;
  border: 1px solid rgba(201, 178, 150, 0.22);
  background: rgba(255, 255, 255, 0.96);
  padding-inline: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.xenah-shop-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(126, 136, 104, 0.9) 50%),
    linear-gradient(135deg, rgba(126, 136, 104, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-inline-end: 38px;
}

html[dir="rtl"] .xenah-shop-select {
  background-position:
    20px calc(50% - 3px),
    14px calc(50% - 3px);
  padding-inline-start: 38px;
  padding-inline-end: 16px;
}

.xenah-shop-input::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, white);
}

.xenah-shop-input:hover,
.xenah-shop-select:hover {
  border-color: rgba(201, 178, 150, 0.32);
}

.xenah-shop-input:focus,
.xenah-shop-select:focus {
  border-color: rgba(126, 136, 104, 0.34);
  box-shadow: 0 0 0 4px rgba(126, 136, 104, 0.08);
  background: #fffefa;
}

.xenah-shop-toggles {
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
}

.xenah-shop-toggle {
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 16px;
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: rgba(255, 255, 255, 0.78);
  justify-content: space-between;
}

.xenah-shop-toggle span {
  flex: 1 1 auto;
}

.xenah-shop-toggle input {
  inline-size: 17px;
  block-size: 17px;
  margin: 0;
  accent-color: var(--sage-dark);
}

.xenah-shop-results-bar {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 12px 28px rgba(88, 67, 45, 0.035);
}

.xenah-shop-results-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.xenah-shop-results-count {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sage-dark);
}

.xenah-shop-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.xenah-shop-active-state {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.xenah-shop-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 150, 0.2);
  background: var(--white);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.xenah-shop-active-chip:hover {
  border-color: var(--sage-dark);
  background: var(--card-bg);
}

.xenah-shop-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  color: inherit;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 -4px 0 0;
  transition: background 0.2s ease;
}

[dir="rtl"] .xenah-shop-chip-remove {
  margin: 0 0 0 -4px;
}

.xenah-shop-chip-remove:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.xenah-shop-clear-all {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.xenah-shop-clear-all:hover {
  background: rgba(201, 178, 150, 0.1);
}

@media (max-width: 767.98px) {
  .xenah-shop-active-state {
    gap: 8px;
    margin-bottom: 20px;
  }
}

.xenah-shop-grid {
  gap: 20px;
}

.xenah-shop-page .xenah-product-card {
  padding: 16px 16px 18px;
  border-radius: 24px;
  border-color: rgba(201, 178, 150, 0.14);
  box-shadow: 0 10px 26px rgba(88, 67, 45, 0.03);
  overflow: hidden;
}

.xenah-shop-page .xenah-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 136, 104, 0.18);
  box-shadow: 0 18px 34px rgba(88, 67, 45, 0.06);
}

.xenah-shop-page .xenah-product-fav {
  top: 14px;
  inset-inline-end: 14px;
}

.xenah-shop-page .xenah-product-media {
  border-radius: 0;
  margin-bottom: 16px;
  background: transparent;
}

.xenah-shop-page .xenah-product-image-wrap {
  border-radius: 0;
}

.xenah-shop-page .xenah-product-brand {
  margin-bottom: 7px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.xenah-shop-page .xenah-product-name {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.55em * 2);
}

.xenah-shop-page .xenah-product-category {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.83rem;
}

.xenah-shop-page .xenah-product-meta-row {
  margin-top: 6px;
  margin-bottom: 8px;
}

.xenah-shop-page .xenah-product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sage-dark);
}

.xenah-shop-page .xenah-product-old-price {
  opacity: 0.8;
}

.xenah-shop-page .xenah-product-meta {
  margin: 0;
}

.xenah-shop-page .xenah-product-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.95);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.xenah-shop-page .xenah-product-btn {
  border-radius: 14px;
}

.xenah-shop-page .xenah-product-card__floating-cart {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(126, 136, 104, 0.18);
}

@media (min-width: 768px) {
  .xenah-shop-page .xenah-product-card__floating-cart {
    min-width: 100%;
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 220ms ease, transform 220ms ease, background-color 180ms ease, border-color 180ms ease;
  }

  .xenah-shop-page .xenah-product-card:hover .xenah-product-card__floating-cart,
  .xenah-shop-page .xenah-product-card:focus-within .xenah-product-card__floating-cart {
    opacity: 1;
    transform: translateY(0);
  }

  .xenah-shop-page .xenah-product-card__floating-cart .xenah-product-cart-icon {
    display: none;
  }

  .xenah-shop-page .xenah-product-card__floating-cart .xenah-product-btn-text {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
    white-space: nowrap;
  }
}

.xenah-shop-feedback {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 280px;
  padding: 32px 20px;
  border-radius: 28px;
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(251, 246, 238, 0.92) 100%);
  text-align: center;
}

.xenah-shop-feedback-badge {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), transparent 0 34%),
    linear-gradient(180deg, rgba(176, 149, 91, 0.16), rgba(126, 136, 104, 0.12));
}

.xenah-shop-feedback-title {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
}

.xenah-shop-feedback-text {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.xenah-shop-feedback-action {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(126, 136, 104, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--sage-dark);
  font-weight: 800;
}

.xenah-shop-page .xenah-product-card-skeleton {
  border-radius: 24px;
  border: 1px solid rgba(201, 178, 150, 0.12);
  box-shadow: 0 10px 26px rgba(88, 67, 45, 0.024);
}

.xenah-shop-page .xenah-skeleton-block,
.xenah-shop-page .xenah-skeleton-line {
  background: linear-gradient(90deg, rgba(248, 241, 231, 0.9) 25%, rgba(255, 255, 255, 0.98) 50%, rgba(248, 241, 231, 0.9) 75%);
  background-size: 200% 100%;
}

.xenah-shop-load-more-wrap {
  margin-top: 34px;
}

.xenah-shop-load-more {
  min-width: 210px;
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 24px;
  box-shadow: 0 14px 28px rgba(88, 67, 45, 0.08);
}

.xenah-shop-load-more:hover,
.xenah-shop-load-more:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(88, 67, 45, 0.1);
}

@media (min-width: 992px) {
  .xenah-shop-layout {
    gap: 32px;
  }

  .xenah-shop-sidebar {
    top: 122px;
  }
}

@media (max-width: 991px) {
  .xenah-shop-layout {
    gap: 20px;
  }

  .xenah-shop-toolbar {
    padding: 20px;
    border-radius: 22px;
  }

  .xenah-shop-toolbar::after {
    inset-inline: 18px;
    top: 72px;
  }

  .xenah-shop-results-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .xenah-shop-page .xenah-product-card {
    padding: 15px 15px 16px;
  }
}

@media (max-width: 767px) {
  .xenah-shop-head {
    margin-bottom: 20px;
  }

  .xenah-shop-toolbar {
    padding: 18px;
    border-radius: 20px;
  }

  .xenah-shop-toolbar::after {
    display: none;
  }

  .xenah-shop-toolbar-head {
    margin-bottom: 16px;
    padding-bottom: 0;
  }

  .xenah-shop-field label {
    font-size: 0.8rem;
  }

  .xenah-shop-toggle {
    min-height: 46px;
  }

  .xenah-shop-results-bar {
    padding: 16px;
    border-radius: 20px;
  }

  .xenah-shop-active-state {
    gap: 6px;
  }

  .xenah-shop-active-chip {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 0.76rem;
  }

  .xenah-shop-grid {
    gap: 16px;
  }

  .xenah-shop-page .xenah-product-card {
    padding: 13px 13px 14px;
    border-radius: 20px;
  }

  .xenah-shop-page .xenah-product-media {
    margin-bottom: 14px;
  }

  .xenah-shop-page .xenah-product-name {
    font-size: 0.94rem;
  }

  .xenah-shop-feedback {
    min-height: 220px;
    padding: 28px 16px;
    border-radius: 22px;
  }

  .xenah-shop-load-more {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .xenah-shop-page .xenah-product-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
  }

  .xenah-shop-page .xenah-product-price-wrap {
    align-items: flex-start;
  }
}

/* Shop page final polish */
.xenah-shop-page .xenah-shop-hero {
  padding-bottom: 72px;
}

.xenah-shop-page .xenah-shop-head .xenah-section-kicker {
  margin-bottom: 14px;
}

.xenah-shop-page .xenah-shop-head h1 {
  line-height: 1.18;
}

.xenah-shop-page .xenah-shop-head p:last-child {
  line-height: 1.85;
}

.xenah-shop-toggle {
  position: relative;
}

.xenah-shop-toggle input {
  appearance: none;
  -webkit-appearance: none;
  inline-size: 18px;
  block-size: 18px;
  border-radius: 6px;
  border: 1px solid rgba(126, 136, 104, 0.34);
  background: rgba(255, 255, 255, 0.96);
  display: inline-grid;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.xenah-shop-toggle input::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--sage-dark);
  transform: scale(0);
  transition: transform 160ms ease;
}

.xenah-shop-toggle input:checked {
  border-color: rgba(126, 136, 104, 0.5);
  box-shadow: 0 0 0 3px rgba(126, 136, 104, 0.08);
}

.xenah-shop-toggle input:checked::after {
  transform: scale(1);
}

.xenah-shop-toggle input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(126, 136, 104, 0.1);
}

.xenah-shop-page .xenah-product-media-live.is-fallback {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(245, 236, 224, 0.82) 100%);
}

.xenah-shop-page .xenah-product-media-live.is-fallback .xenah-product-placeholder-visual {
  opacity: 0.9;
}

.xenah-shop-page .xenah-product-bottle {
  filter: saturate(0.88);
}

.xenah-shop-feedback-action:hover,
.xenah-shop-feedback-action:focus-visible {
  background: #fffdfa;
  border-color: rgba(126, 136, 104, 0.24);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .xenah-shop-results-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .xenah-shop-active-state {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .xenah-shop-page .xenah-shop-hero {
    padding-bottom: 56px;
  }

  .xenah-shop-page .xenah-shop-head p:last-child {
    line-height: 1.78;
  }
}

/* Shop cards compact refinement */
.xenah-shop-page .xenah-shop-grid {
  gap: 18px;
}

.xenah-shop-page .xenah-product-card {
  padding: 14px 14px 15px;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(88, 67, 45, 0.028);
}

.xenah-shop-page .xenah-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(88, 67, 45, 0.05);
}

.xenah-shop-page .xenah-product-fav {
  top: 12px;
  inset-inline-end: 12px;
}

.xenah-shop-page .xenah-product-media {
  height: 196px;
  min-height: 196px;
  border-radius: 0;
  margin-bottom: 13px;
}

.xenah-shop-page .xenah-product-image-wrap {
  border-radius: 0;
}

.xenah-shop-page .xenah-product-media-live.is-fallback .xenah-product-placeholder-visual {
  transform: scale(0.94);
  transform-origin: center;
}

.xenah-shop-page .xenah-product-brand {
  margin-bottom: 5px;
  font-size: 0.76rem;
}

.xenah-shop-page .xenah-product-name {
  margin-bottom: 5px;
  font-size: 0.96rem;
  line-height: 1.48;
  min-height: calc(1.48em * 2);
}

.xenah-shop-page .xenah-product-category {
  margin-bottom: 8px;
  font-size: 0.81rem;
}

.xenah-shop-page .xenah-product-meta-row {
  margin-top: 4px;
  margin-bottom: 6px;
}

.xenah-shop-page .xenah-product-price-wrap {
  gap: 2px;
}

.xenah-shop-page .xenah-product-price {
  font-size: 1rem;
}

.xenah-shop-page .xenah-product-old-price {
  font-size: 0.78rem;
}

.xenah-shop-page .xenah-product-meta {
  min-height: 28px;
}

.xenah-shop-page .xenah-product-rating {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 0.79rem;
}

@media (min-width: 768px) {
  .xenah-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .xenah-shop-page .xenah-product-card__floating-cart {
    min-height: 42px;
    margin-top: 6px;
  }
}

@media (min-width: 992px) {
  .xenah-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .xenah-shop-page .xenah-product-card {
    padding: 15px 15px 16px;
  }

  .xenah-shop-page .xenah-product-media {
    height: 208px;
    min-height: 208px;
  }
}

@media (min-width: 1200px) {
  .xenah-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .xenah-shop-page .xenah-product-media {
    height: 198px;
    min-height: 198px;
  }
}

@media (max-width: 991px) {
  .xenah-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .xenah-shop-page .xenah-product-card {
    padding: 13px 13px 14px;
  }

  .xenah-shop-page .xenah-product-media {
    height: 184px;
    min-height: 184px;
  }
}

@media (max-width: 767px) {
  .xenah-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .xenah-shop-page .xenah-product-card {
    padding: 12px 12px 13px;
    border-radius: 18px;
  }

  .xenah-shop-page .xenah-product-media {
    height: 162px;
    min-height: 162px;
    margin-bottom: 12px;
  }

  .xenah-shop-page .xenah-product-brand {
    margin-bottom: 4px;
    font-size: 0.72rem;
  }

  .xenah-shop-page .xenah-product-name {
    margin-bottom: 4px;
    font-size: 0.9rem;
    line-height: 1.42;
    min-height: calc(1.42em * 2);
  }

  .xenah-shop-page .xenah-product-category {
    margin-bottom: 6px;
    font-size: 0.77rem;
  }

  .xenah-shop-page .xenah-product-meta-row {
    margin-top: 2px;
    margin-bottom: 4px;
  }

  .xenah-shop-page .xenah-product-price {
    font-size: 0.94rem;
  }

  .xenah-shop-page .xenah-product-old-price {
    font-size: 0.74rem;
  }

  .xenah-shop-page .xenah-product-rating {
    min-height: 26px;
    padding: 3px 8px;
    font-size: 0.75rem;
  }
}

/* Stable shop sidebar direction fix handled at the end of file */
@media (min-width: 992px) {
  .xenah-shop-sidebar,
  .xenah-shop-content {
    min-width: 0;
    overflow: visible;
  }
}

/* Shop sidebar soft premium refinement */
.xenah-shop-toolbar {
  border: 1px solid rgba(201, 178, 150, 0.14);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(252, 248, 241, 0.96) 100%);
  border-radius: 30px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(88, 67, 45, 0.04);
}

.xenah-shop-toolbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.36), transparent 24%);
  pointer-events: none;
}

.xenah-shop-toolbar::after {
  inset-inline: 24px;
  top: 86px;
  background: linear-gradient(90deg, transparent, rgba(201, 178, 150, 0.16), transparent);
}

.xenah-shop-toolbar-head {
  position: relative;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 18px;
}

.xenah-shop-toolbar-title {
  margin-bottom: 7px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
}

.xenah-shop-toolbar-text {
  max-width: 24ch;
  font-size: 0.9rem;
  line-height: 1.82;
  color: color-mix(in srgb, var(--muted) 92%, white);
}

.xenah-shop-reset {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 150, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(88, 67, 45, 0.025);
}

.xenah-shop-reset:hover,
.xenah-shop-reset:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(126, 136, 104, 0.2);
  box-shadow: 0 6px 14px rgba(88, 67, 45, 0.035);
}

.xenah-shop-toolbar-grid {
  gap: 18px;
}

.xenah-shop-field {
  gap: 10px;
}

.xenah-shop-field label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  color: var(--sage-dark);
  opacity: 0.92;
}

.xenah-shop-input,
.xenah-shop-select {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(201, 178, 150, 0.18);
  background: rgba(255, 255, 255, 0.94);
  padding-inline: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 1px 2px rgba(88, 67, 45, 0.015);
}

.xenah-shop-select {
  background-size: 5px 5px, 5px 5px;
}

.xenah-shop-input:hover,
.xenah-shop-select:hover {
  border-color: rgba(201, 178, 150, 0.26);
  background: rgba(255, 255, 255, 0.98);
}

.xenah-shop-input:focus,
.xenah-shop-select:focus {
  border-color: rgba(126, 136, 104, 0.28);
  box-shadow:
    0 0 0 4px rgba(126, 136, 104, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.xenah-shop-toggles {
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 178, 150, 0.12);
}

.xenah-shop-toggle {
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(201, 178, 150, 0.12);
  background: rgba(255, 255, 255, 0.7);
  gap: 12px;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.xenah-shop-toggle:hover {
  border-color: rgba(201, 178, 150, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 16px rgba(88, 67, 45, 0.025);
}

.xenah-shop-toggle span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.xenah-shop-toggle input {
  inline-size: 18px;
  block-size: 18px;
  border-radius: 5px;
  border-color: rgba(126, 136, 104, 0.3);
  background: rgba(255, 255, 255, 0.96);
  flex: 0 0 auto;
}

.xenah-shop-toggle input::after {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .xenah-shop-toolbar {
    padding: 30px 24px 24px;
  }
}

@media (max-width: 991px) {
  .xenah-shop-toolbar {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .xenah-shop-toolbar::after {
    inset-inline: 20px;
    top: 82px;
  }
}

@media (max-width: 767px) {
  .xenah-shop-toolbar {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .xenah-shop-toolbar-head {
    margin-bottom: 18px;
    gap: 10px;
  }

  .xenah-shop-toolbar-text {
    max-width: none;
  }

  .xenah-shop-input,
  .xenah-shop-select {
    min-height: 48px;
    border-radius: 16px;
  }

  .xenah-shop-toggle {
    min-height: 46px;
    border-radius: 16px;
  }
}

/* Shop custom dropdowns - Absolute Floating version */
.xenah-shop-native-select {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.xenah-shop-field {
  position: relative;
  /* Remove global z-index to allow custom-select state to control stacking */
}

/* Ensure sidebar items don't clip the floating menus */
.xenah-shop-sidebar, 
.xenah-shop-toolbar {
  overflow: visible !important;
}

.xenah-shop-custom-select {
  position: relative;
  width: 100%;
  z-index: 10; /* Base stacking level */
}

/* When open, this specific select moves to the very top of the sidebar stack */
.xenah-shop-custom-select.is-open {
  z-index: 400;
}

.xenah-shop-custom-select-trigger {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(201, 178, 150, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 1px 2px rgba(88, 67, 45, 0.015);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.xenah-shop-custom-select-trigger:hover {
  border-color: rgba(201, 178, 150, 0.26);
  background: rgba(255, 255, 255, 0.98);
}

.xenah-shop-custom-select.is-open .xenah-shop-custom-select-trigger,
.xenah-shop-custom-select-trigger:focus-visible {
  outline: none;
  border-color: rgba(126, 136, 104, 0.28);
  box-shadow:
    0 0 0 4px rgba(126, 136, 104, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  background: #fffefa;
}

.xenah-shop-custom-select-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.96rem;
}

.xenah-shop-custom-select-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--sage-dark);
  transition: transform 220ms ease, opacity 180ms ease;
}

.xenah-shop-custom-select-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.xenah-shop-custom-select.is-open .xenah-shop-custom-select-icon {
  transform: rotate(180deg);
}

.xenah-shop-custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline: 0;
  z-index: 450;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: #FFFCF8;
  box-shadow: 0 20px 48px rgba(47, 47, 43, 0.16);
  transform: translateY(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 220ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.xenah-shop-custom-select.is-open .xenah-shop-custom-select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.xenah-shop-custom-select-options {
  display: grid;
  gap: 4px;
  max-height: min(240px, 38vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
}

.xenah-shop-custom-select-option {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  text-align: start;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
  cursor: pointer;
}

.xenah-shop-custom-select-option:hover,
.xenah-shop-custom-select-option:focus-visible {
  outline: none;
  background: rgba(176, 149, 91, 0.08);
  color: var(--sage-dark);
}

.xenah-shop-custom-select-option.is-selected {
  background: rgba(126, 136, 104, 0.1);
  color: var(--sage-dark);
  font-weight: 700;
}

html[dir="rtl"] .xenah-shop-custom-select-trigger,
html[dir="rtl"] .xenah-shop-custom-select-option,
html[dir="rtl"] .xenah-shop-custom-select-menu {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] .xenah-shop-custom-select-trigger,
html[dir="ltr"] .xenah-shop-custom-select-option,
html[dir="ltr"] .xenah-shop-custom-select-menu {
  direction: ltr;
  text-align: left;
}

@media (max-width: 767px) {
  .xenah-shop-custom-select-trigger {
    min-height: 48px;
    border-radius: 16px;
  }

  .xenah-shop-custom-select-menu {
    border-radius: 18px;
    z-index: 150;
  }

  .xenah-shop-custom-select-options {
    max-height: min(260px, 40vh);
  }
}

/* Consolidated shop layout rules are handled at the end of the file */


/* Shop refinement: desktop Add to Cart + compact toolbar + sidebar rhythm */
@media (min-width: 768px) {
  .xenah-shop-page .xenah-product-meta-row {
    margin-bottom: 6px;
  }

  .xenah-shop-page .xenah-product-card__floating-cart {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    margin-top: 6px;
    border: none;
    background: var(--sage-dark);
    color: var(--white);
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, background-color 220ms ease;
  }

  .xenah-shop-page .xenah-product-card:hover .xenah-product-card__floating-cart,
  .xenah-shop-page .xenah-product-card:focus-within .xenah-product-card__floating-cart {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .xenah-shop-page .xenah-product-card__floating-cart:hover,
  .xenah-shop-page .xenah-product-card__floating-cart:focus-visible {
    background: var(--sage);
  }

  .xenah-shop-page .xenah-product-card__floating-cart .xenah-product-btn-text {
    color: var(--white);
    font-weight: 700;
  }
}

@media (min-width: 992px) {
  .xenah-shop-toolbar {
    padding: 24px 20px 20px;
  }

  .xenah-shop-toolbar-head {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .xenah-shop-toolbar-grid {
    gap: 14px;
  }

  .xenah-shop-toggles {
    margin-top: 16px;
    padding-top: 16px;
    gap: 10px;
  }

  .xenah-shop-toggle {
    min-height: 46px;
    padding: 10px 12px;
  }

  .xenah-shop-results-bar {
    padding: 8px 0 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 0;
    margin-bottom: 14px;
  }

  .xenah-shop-results-copy {
    display: block;
  }

  .xenah-shop-results-count {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
  }
}

/* Shop reset button one-line premium refinement */
.xenah-shop-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto;
  min-width: max-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 150, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--sage-dark);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(88, 67, 45, 0.02);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.xenah-shop-reset:hover,
.xenah-shop-reset:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(126, 136, 104, 0.24);
  color: var(--sage-dark);
  box-shadow: 0 4px 10px rgba(88, 67, 45, 0.03);
  transform: translateY(-1px);
}

/* Shop Pagination & Load More Wrap */
.xenah-shop-load-more-wrap {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
  margin-top: 48px;
  margin-bottom: 48px;
}

.xenah-shop-load-more-wrap[hidden] {
  display: none !important;
}

.xenah-shop-page .xenah-shop-load-more {
  display: none !important;
}

.xenah-shop-pagination {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(201, 178, 150, 0.22);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: var(--shadow-soft);
}

.xenah-shop-pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xenah-shop-pagination-btn,
.xenah-shop-pagination-number {
  appearance: none;
  -webkit-appearance: none;
  min-width: 38px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(201, 178, 150, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--sage-dark);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.xenah-shop-pagination-btn:hover:not(:disabled),
.xenah-shop-pagination-number:hover:not(.is-active) {
  transform: translateY(-1px);
  border-color: rgba(94, 108, 76, 0.32);
  box-shadow: 0 8px 18px rgba(94, 108, 76, 0.12);
}

.xenah-shop-pagination-number.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(94, 108, 76, 0.16);
}

.xenah-shop-pagination-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.xenah-shop-pagination-ellipsis {
  min-width: 24px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

/* Mobile Filter Toggle */
.xenah-mobile-filter-toggle {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 767.98px) {
  .xenah-mobile-filter-toggle {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;
    transform: translateX(-50%) !important;
    z-index: 80 !important;

    min-width: 118px !important;
    width: auto !important;
    height: 52px !important;
    padding: 0 24px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 999px !important;
    background: var(--sage-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 18px 35px rgba(94, 108, 76, 0.26) !important;

    font-size: 0.95rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    letter-spacing: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

  .xenah-mobile-filter-label {
    display: inline-block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;

    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: nowrap !important;

    color: var(--white) !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .xenah-mobile-filter-toggle svg,
  .xenah-mobile-filter-icon,
  .xenah-mobile-filter-toggle::before,
  .xenah-mobile-filter-toggle::after {
    content: none !important;
    display: none !important;
  }

  .xenah-shop-load-more-wrap {
    margin-top: 32px;
    margin-bottom: 96px;
    padding-inline: 12px;
  }

  .xenah-shop-pagination {
    width: 100%;
    max-width: 330px;
    border-radius: 24px;
    gap: 6px;
    padding: 10px;
  }

  .xenah-shop-pagination-btn,
  .xenah-shop-pagination-number {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .xenah-shop-pagination-pages {
    gap: 6px;
  }

  .xenah-shop-pagination-prev,
  .xenah-shop-pagination-next {
    flex: 1 1 auto;
    min-width: 92px;
  }

  .xenah-shop-page {
    padding-bottom: 96px !important;
  }
}

/* Shop filter dropdown bottom polish */
.xenah-shop-sidebar .xenah-shop-custom-select-menu {
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(95, 104, 78, 0.12);
}

.xenah-shop-sidebar .xenah-shop-custom-select-options {
  padding: 10px 10px 24px;
  gap: 6px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 136, 104, 0.3) transparent;
}

.xenah-shop-sidebar .xenah-shop-custom-select-options::-webkit-scrollbar {
  width: 6px;
}

.xenah-shop-sidebar .xenah-shop-custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}

.xenah-shop-sidebar .xenah-shop-custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(126, 136, 104, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.xenah-shop-sidebar .xenah-shop-custom-select-option:last-child {
  margin-bottom: 16px;
}

.xenah-shop-sidebar .xenah-shop-custom-select-menu::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 32px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 252, 247, 0), rgba(255, 252, 247, 1) 95%);
  z-index: 2;
  border-radius: 0 0 24px 24px;
}

/* Sidebar scroll polish */
.xenah-shop-toolbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 136, 104, 0.2) transparent;
  padding-bottom: 32px !important;
}

.xenah-shop-toolbar::-webkit-scrollbar {
  width: 5px;
}

.xenah-shop-toolbar::-webkit-scrollbar-thumb {
  background: rgba(126, 136, 104, 0.2);
  border-radius: 10px;
}

html[dir="rtl"] .xenah-shop-sidebar .xenah-shop-custom-select-options {
  padding-inline: 8px 10px;
}

html[dir="ltr"] .xenah-shop-sidebar .xenah-shop-custom-select-options {
  padding-inline: 10px 8px;
}

@media (max-width: 767px) {
  .xenah-shop-sidebar .xenah-shop-custom-select-menu {
    border-radius: 18px;
  }

  .xenah-shop-sidebar .xenah-shop-custom-select-options {
    padding-bottom: 12px;
  }
}

/* 
   Shop Desktop Alignment Fix (Final Stable Snippet)
   Ensures Sidebar is on RIGHT for Arabic (RTL) and LEFT for English (LTR)
*/
@media (min-width: 992px) {
  .xenah-shop-layout {
    display: grid !important;
    gap: 32px !important;
    align-items: start !important;
    direction: ltr !important; /* Force LTR container for predictable grid areas */
  }

  /* English / LTR: Sidebar LEFT, Content RIGHT */
  html[dir="ltr"] .xenah-shop-layout,
  body.is-ltr .xenah-shop-layout {
    grid-template-columns: 300px minmax(0, 1fr) !important;
    grid-template-areas: "sidebar content" !important;
  }

  /* Arabic / RTL: Content LEFT, Sidebar RIGHT */
  html[dir="rtl"] .xenah-shop-layout,
  body.is-rtl .xenah-shop-layout {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    grid-template-areas: "content sidebar" !important;
  }

  .xenah-shop-sidebar {
    grid-area: sidebar !important;
    position: sticky !important;
    top: 120px !important;
    height: fit-content !important;
    z-index: 10 !important;
  }

  .xenah-shop-content {
    grid-area: content !important;
    min-width: 0 !important;
  }

  /* Restore text direction inside items */
  html[dir="rtl"] .xenah-shop-sidebar,
  html[dir="rtl"] .xenah-shop-content,
  body.is-rtl .xenah-shop-sidebar,
  body.is-rtl .xenah-shop-content {
    direction: rtl !important;
  }

  html[dir="ltr"] .xenah-shop-sidebar,
  html[dir="ltr"] .xenah-shop-content,
  body.is-ltr .xenah-shop-sidebar,
  body.is-ltr .xenah-shop-content {
    direction: ltr !important;
  }

.xenah-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* Cart page */
.xenah-cart-page {
  min-height: 100vh;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 0 30%),
    linear-gradient(180deg, var(--page-bg) 0%, #FFFFFF 100%);
}

.xenah-cart-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.xenah-cart-logo {
  margin-bottom: 18px;
}

.xenah-cart-page .xenah-cart-logo {
  margin-bottom: 0;
}

.xenah-cart-page .xenah-page-top-action {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

html[dir="rtl"] .xenah-cart-page .xenah-page-top-action {
  flex-direction: row;
}

html[dir="ltr"] .xenah-cart-page .xenah-page-top-action {
  flex-direction: row;
}

.xenah-page-top-action {
  display: flex;
  width: 100%;
  margin: 0 auto 24px;
}

html[dir="rtl"] .xenah-page-top-action {
  justify-content: flex-start;
}

html[dir="ltr"] .xenah-page-top-action {
  justify-content: flex-start;
}

html[dir] .xenah-cart-page .xenah-page-top-action {
  justify-content: space-between;
}

.xenah-page-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 40px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid rgba(126, 136, 104, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.xenah-page-home-link:hover {
  background: #fffdf9;
  border-color: rgba(126, 136, 104, 0.36);
  color: var(--sage);
  transform: translateY(-1px);
}

.xenah-cart-header h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  color: var(--text);
}

.xenah-cart-header p:last-child {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.xenah-cart-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.xenah-cart-content[hidden],
.xenah-cart-summary[hidden] {
  display: none !important;
}

html[dir="rtl"] .xenah-cart-content {
  grid-template-columns: 340px minmax(0, 1fr);
}

html[dir="rtl"] .xenah-cart-items {
  grid-column: 2;
}

html[dir="rtl"] .xenah-cart-summary {
  grid-column: 1;
  grid-row: 1;
}

.xenah-cart-items {
  display: grid;
  gap: 16px;
}

.xenah-cart-item,
.xenah-cart-summary,
.xenah-cart-empty-card {
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: rgba(255, 253, 249, 0.96);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(88, 67, 45, 0.04);
}

.xenah-cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.xenah-cart-item-media {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.xenah-cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 2px;
}

.xenah-cart-item-placeholder {
  display: none;
  width: 42px;
  height: 72px;
  border-radius: 18px 18px 14px 14px;
  border: 1px solid rgba(201, 178, 150, 0.3);
  background: linear-gradient(180deg, #ffffff, #f5eee3);
}

.xenah-cart-item-media.is-fallback .xenah-cart-item-placeholder {
  display: block;
}

.xenah-cart-item-brand {
  margin: 0 0 5px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.xenah-cart-item-name {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.xenah-cart-item-price {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.xenah-cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(201, 178, 150, 0.18);
  border-radius: 999px;
  background: #fffdf9;
}

.xenah-cart-qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(126, 136, 104, 0.1);
  color: var(--sage-dark);
  font-weight: 800;
}

.xenah-cart-qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
  color: var(--text);
}

.xenah-cart-item-subtotal {
  color: var(--sage-dark);
  white-space: nowrap;
}

.xenah-cart-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  padding: 8px;
}

.xenah-cart-remove:hover {
  color: var(--sage-dark);
}

.xenah-cart-summary {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.xenah-cart-summary h2 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.xenah-cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 178, 150, 0.14);
  color: var(--muted);
}

.xenah-cart-summary-row strong {
  color: var(--text);
}

.xenah-cart-summary-total {
  border-bottom: 0;
  color: var(--text);
  font-weight: 800;
}

.xenah-cart-checkout {
  width: 100%;
  margin-top: 18px;
}

.xenah-cart-continue {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  color: var(--sage-dark);
  font-weight: 800;
}

.xenah-cart-empty-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 36px 28px;
  text-align: center;
}

.xenah-cart-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 178, 150, 0.22);
  background: linear-gradient(135deg, #fffdf9, #f4ecdf);
  display: block;
}

.xenah-cart-empty-card h2 {
  margin: 0 0 10px;
}

.xenah-cart-empty-card p {
  margin: 0 auto 22px;
  max-width: 440px;
  color: var(--muted);
  line-height: 1.8;
}

.xenah-cart-empty-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 170px;
  padding: 0 26px;
  border: 1px solid rgba(126, 136, 104, 0.28);
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(88, 67, 45, 0.08);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.xenah-cart-empty-action:hover {
  background: var(--sage);
  border-color: rgba(126, 136, 104, 0.36);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(88, 67, 45, 0.1);
}

@media (max-width: 991px) {
  .xenah-cart-content,
  html[dir="rtl"] .xenah-cart-content {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .xenah-cart-items,
  html[dir="rtl"] .xenah-cart-summary {
    grid-column: auto;
    grid-row: auto;
  }

  .xenah-cart-summary {
    position: static;
  }
}

@media (max-width: 767px) {
  .xenah-cart-page {
    padding: 42px 0 56px;
  }

  .xenah-cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .xenah-cart-item-media {
    width: 88px;
  }

  .xenah-cart-item-controls,
  .xenah-cart-item-subtotal,
  .xenah-cart-remove {
    grid-column: 1 / -1;
  }

  .xenah-cart-item-controls {
    justify-self: start;
  }

  html[dir="rtl"] .xenah-cart-item-controls {
    justify-self: end;
  }

  .xenah-cart-item-subtotal {
    justify-self: start;
  }

  html[dir="rtl"] .xenah-cart-item-subtotal {
    justify-self: end;
  }
}

/* Cart UI polish */
.xenah-cart-item {
  grid-template-columns: minmax(360px, 1fr) 140px 130px 80px;
  grid-template-areas:
    "product controls subtotal remove";
  align-items: center;
  padding: 16px 18px;
  gap: 20px;
}

.xenah-cart-item-product {
  grid-area: product;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.xenah-cart-item-media {
  width: 92px;
  flex: 0 0 92px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.xenah-cart-item-info {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.xenah-cart-item-controls {
  grid-area: controls;
  justify-self: center;
  align-self: center;
  min-height: 42px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.xenah-cart-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.xenah-cart-qty-btn:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.xenah-cart-qty-btn:active {
  transform: translateY(1px);
}

.xenah-cart-item-subtotal {
  grid-area: subtotal;
  justify-self: end;
  text-align: end;
  font-size: 1rem;
  line-height: 1.35;
}

.xenah-cart-remove {
  grid-area: remove;
  justify-self: center;
  align-self: center;
  border: 1px solid rgba(201, 178, 150, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 8px 12px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.xenah-cart-remove:hover {
  background: #fffdf9;
  border-color: rgba(126, 136, 104, 0.28);
}

.xenah-cart-summary {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(250, 246, 238, 0.98));
  border-radius: 28px;
}

.xenah-cart-summary h2 {
  color: var(--text);
  font-weight: 800;
}

.xenah-cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(94, 104, 78, 0.16);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.xenah-cart-checkout:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(94, 104, 78, 0.18);
}

.xenah-cart-continue {
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(126, 136, 104, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.xenah-cart-continue:hover {
  background: #fffdf9;
  border-color: rgba(126, 136, 104, 0.34);
  transform: translateY(-1px);
}

html[dir="rtl"] .xenah-cart-item {
  grid-template-areas:
    "remove subtotal controls product";
}

html[dir="rtl"] .xenah-cart-item-subtotal {
  justify-self: start;
  text-align: start;
}

html[dir="rtl"] .xenah-cart-remove {
  justify-self: center;
}

@media (min-width: 768px) {
  .xenah-cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    grid-template-columns: none;
    grid-template-areas: none;
  }

  html[dir="rtl"] .xenah-cart-item {
    flex-direction: row-reverse;
  }

  .xenah-cart-item-product {
    flex: 1 1 auto;
    min-width: 420px;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  html[dir="rtl"] .xenah-cart-item-product {
    flex-direction: row-reverse;
  }

  .xenah-cart-item-media {
    width: 92px;
    flex: 0 0 92px;
  }

  .xenah-cart-item-info {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }

  .xenah-cart-item-name {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    line-height: 1.45;
  }

  .xenah-cart-item-controls {
    flex: 0 0 140px;
    justify-content: center;
  }

  .xenah-cart-item-subtotal {
    flex: 0 0 140px;
    text-align: center;
    justify-self: auto;
  }

  .xenah-cart-remove {
    flex: 0 0 90px;
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .xenah-cart-content {
    gap: 20px;
  }

  .xenah-cart-item {
    grid-template-columns: 94px minmax(0, 1fr);
    grid-template-areas:
      "product product"
      "controls subtotal"
      "remove remove";
    padding: 14px;
    gap: 12px;
    border-radius: 22px;
  }

  html[dir="rtl"] .xenah-cart-item {
    grid-template-columns: minmax(0, 1fr) 94px;
    grid-template-areas:
      "product product"
      "subtotal controls"
      "remove remove";
  }

  .xenah-cart-item-product {
    align-items: flex-start;
    gap: 12px;
  }

  html[dir="rtl"] .xenah-cart-item-product {
    flex-direction: row-reverse;
  }

  .xenah-cart-item-media {
    width: 94px;
    flex-basis: 94px;
    align-self: start;
  }

  .xenah-cart-item-name {
    margin-bottom: 6px;
    font-size: 0.96rem;
  }

  .xenah-cart-item-price {
    font-size: 0.9rem;
  }

  .xenah-cart-item-controls {
    grid-column: auto;
    justify-self: start;
    align-self: center;
  }

  html[dir="rtl"] .xenah-cart-item-controls {
    justify-self: end;
  }

  .xenah-cart-item-subtotal {
    grid-column: auto;
    justify-self: end;
    align-self: center;
    font-size: 0.96rem;
  }

  html[dir="rtl"] .xenah-cart-item-subtotal {
    justify-self: start;
  }

  .xenah-cart-remove {
    grid-column: auto;
    justify-self: stretch;
    text-align: center;
  }

  html[dir="rtl"] .xenah-cart-remove {
    justify-self: stretch;
  }

  .xenah-cart-summary {
    padding: 20px;
    border-radius: 24px;
  }

  .xenah-cart-checkout,
  .xenah-cart-continue {
    min-height: 46px;
  }
}

/* Checkout page */
.xenah-checkout-page {
  min-height: 100vh;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(201, 178, 150, 0.08), transparent 32%),
    var(--page-bg);
}

.xenah-checkout-container {
  max-width: 1180px;
}

.xenah-checkout-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.xenah-checkout-logo {
  margin-bottom: 18px;
}

.xenah-checkout-page .xenah-checkout-logo {
  margin-bottom: 0;
}

.xenah-checkout-page .xenah-page-top-action {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

html[dir] .xenah-checkout-page .xenah-page-top-action {
  justify-content: space-between;
}

.xenah-checkout-header h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.xenah-checkout-header p:last-child {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
}

.xenah-checkout-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

html[dir="rtl"] .xenah-checkout-content {
  grid-template-columns: 360px minmax(0, 1fr);
}

html[dir="rtl"] .xenah-checkout-form {
  grid-column: 2;
}

html[dir="rtl"] .xenah-checkout-summary {
  grid-column: 1;
  grid-row: 1;
}

.xenah-checkout-form {
  display: grid;
  gap: 18px;
}

.xenah-checkout-card,
.xenah-checkout-summary,
.xenah-checkout-empty-card {
  border: 1px solid rgba(201, 178, 150, 0.16);
  background: rgba(255, 253, 249, 0.96);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(88, 67, 45, 0.055);
}

.xenah-checkout-card,
.xenah-checkout-summary {
  padding: 24px;
}

.xenah-checkout-card h2,
.xenah-checkout-summary h2 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.xenah-checkout-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 700;
}

.xenah-checkout-field:last-child {
  margin-bottom: 0;
}

.xenah-checkout-field input,
.xenah-checkout-field select,
.xenah-checkout-field textarea {
  width: 100%;
  border: 1px solid rgba(201, 178, 150, 0.22);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.xenah-checkout-field input:focus,
.xenah-checkout-field select:focus,
.xenah-checkout-field textarea:focus {
  border-color: rgba(126, 136, 104, 0.5);
  box-shadow: 0 0 0 4px rgba(126, 136, 104, 0.12);
  background: #ffffff;
}

.xenah-checkout-field textarea {
  resize: vertical;
  min-height: 96px;
}

.xenah-checkout-payment-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(126, 136, 104, 0.2);
  border-radius: 18px;
  background: rgba(248, 241, 231, 0.52);
}

.xenah-checkout-payment-dot {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 5px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--white);
  flex: 0 0 auto;
}

.xenah-checkout-payment-option strong {
  display: block;
  color: var(--text);
  font-weight: 800;
}

.xenah-checkout-payment-option p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.xenah-checkout-summary {
  position: sticky;
  top: 110px;
}

html[dir="ltr"] .xenah-checkout-summary {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.xenah-checkout-items {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.xenah-checkout-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 178, 150, 0.14);
}

.xenah-checkout-item:first-child {
  padding-top: 0;
}

.xenah-checkout-item-info {
  min-width: 0;
}

.xenah-checkout-item-brand {
  margin: 0 0 4px;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xenah-checkout-item-name {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.xenah-checkout-item-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.xenah-checkout-item-total {
  color: var(--sage-dark);
  white-space: nowrap;
}

.xenah-checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 178, 150, 0.16);
  color: var(--muted);
}

.xenah-checkout-summary-row strong {
  color: var(--text);
}

.xenah-checkout-summary-total {
  border-bottom: 0;
  color: var(--text);
  font-weight: 800;
}

.xenah-checkout-summary-total strong {
  color: var(--sage-dark);
  font-size: 1.15rem;
}

.xenah-checkout-submit,
.xenah-checkout-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.xenah-checkout-submit {
  width: 100%;
  border: 0;
  background: var(--sage-dark);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.xenah-checkout-submit:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.xenah-checkout-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.xenah-checkout-secondary-btn {
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(126, 136, 104, 0.24);
  background: rgba(255, 255, 255, 0.62);
  color: var(--sage-dark);
  padding: 0 18px;
}

.xenah-checkout-secondary-btn:hover {
  background: #fffdf9;
  border-color: rgba(126, 136, 104, 0.34);
  transform: translateY(-1px);
}

.xenah-checkout-message {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(126, 136, 104, 0.22);
  border-radius: 18px;
  background: rgba(248, 241, 231, 0.62);
  color: var(--sage-dark);
  font-weight: 700;
  text-align: center;
}

.xenah-checkout-message.is-success {
  border-color: rgba(126, 136, 104, 0.3);
  background: rgba(126, 136, 104, 0.12);
  color: var(--sage-dark);
}

.xenah-checkout-message.is-error {
  border-color: rgba(164, 94, 74, 0.24);
  background: rgba(164, 94, 74, 0.08);
  color: #8f4f3f;
}

.xenah-checkout-success {
  grid-column: 1;
  padding: 24px;
  border: 1px solid rgba(126, 136, 104, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(248, 241, 231, 0.76)),
    rgba(126, 136, 104, 0.08);
  box-shadow: 0 14px 34px rgba(88, 67, 45, 0.055);
}

html[dir="rtl"] .xenah-checkout-success {
  grid-column: 2;
}

.xenah-checkout-success h2 {
  margin: 0 0 8px;
  color: var(--sage-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.xenah-checkout-success > p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.xenah-checkout-success-details {
  display: grid;
  gap: 14px;
}

.xenah-checkout-success-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.xenah-checkout-success-grid div {
  padding: 13px 14px;
  border: 1px solid rgba(201, 178, 150, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.xenah-checkout-success-grid dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.xenah-checkout-success-grid dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.xenah-checkout-success-notice {
  margin: 2px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(126, 136, 104, 0.18);
  border-radius: 16px;
  background: rgba(126, 136, 104, 0.1);
  color: var(--sage-dark);
  font-weight: 700;
  line-height: 1.6;
}

.xenah-checkout-empty-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.xenah-checkout-empty-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(126, 136, 104, 0.18), rgba(201, 178, 150, 0.18));
}

.xenah-checkout-empty-card h2 {
  margin: 0 0 10px;
}

.xenah-checkout-empty-card p {
  margin: 0 auto 22px;
  max-width: 440px;
  color: var(--muted);
}

@media (max-width: 991px) {
  .xenah-checkout-content,
  html[dir="rtl"] .xenah-checkout-content {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .xenah-checkout-form,
  html[dir="rtl"] .xenah-checkout-summary,
  html[dir="rtl"] .xenah-checkout-success,
  html[dir="ltr"] .xenah-checkout-summary,
  html[dir="ltr"] .xenah-checkout-success {
    grid-column: auto;
    grid-row: auto;
  }

  .xenah-checkout-summary {
    position: static;
  }
}

@media (max-width: 767px) {
  .xenah-checkout-page {
    padding: 42px 0 56px;
  }

  .xenah-checkout-header {
    margin-bottom: 24px;
  }

  .xenah-checkout-page .xenah-page-top-action {
    margin-bottom: 14px;
  }

  .xenah-checkout-page .xenah-page-home-link {
    min-height: 38px;
    padding-inline: 16px;
  }

  .xenah-checkout-logo {
    margin-bottom: 0;
  }

  .xenah-checkout-card,
  .xenah-checkout-summary {
    padding: 20px;
    border-radius: 24px;
  }

  .xenah-checkout-item {
    gap: 10px;
  }

  .xenah-checkout-submit,
  .xenah-checkout-secondary-btn {
    min-height: 46px;
  }

  .xenah-checkout-success {
    padding: 20px;
    border-radius: 24px;
  }

  .xenah-checkout-success-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .xenah-cart-page {
    padding-top: 24px;
  }

  .xenah-cart-page .xenah-container {
    padding-top: 0;
  }

  .xenah-cart-page .xenah-page-top-action {
    margin-bottom: 14px;
  }

  .xenah-cart-page .xenah-page-home-link {
    min-height: 38px;
    padding-inline: 16px;
  }

  .xenah-cart-header {
    margin-bottom: 20px;
  }

  .xenah-cart-logo {
    margin-bottom: 10px;
  }

  .xenah-cart-header .xenah-section-kicker {
    margin-bottom: 6px;
  }

  .xenah-cart-header h1 {
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .xenah-cart-header p:last-child {
    margin-bottom: 0;
    line-height: 1.55;
  }

  .xenah-cart-content {
    margin-top: 0;
    gap: 18px;
  }
}

/* Mobile cleanup: keep product CTAs and contact cards compact after global style refinements. */
@media (max-width: 767px) {
  .xenah-product-page .xenah-product-page-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: none;
  }

  .xenah-product-page .xenah-product-page-actions .xenah-product-primary-btn,
  .xenah-product-page .xenah-product-page-actions .xenah-product-secondary-btn {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    height: auto;
    padding: 12px 18px;
    line-height: 1.25;
  }

  .xenah-product-page .xenah-product-detail-quantity button,
  .xenah-product-page .xenah-product-detail-quantity input {
    min-width: 38px;
    height: 38px;
    position: relative;
    z-index: 1;
    touch-action: manipulation;
  }

  .xenah-about .xenah-about-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .xenah-about .xenah-contact-card {
    min-height: 78px;
    padding: 14px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 18px;
  }

  .xenah-about .xenah-contact-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 1rem;
  }
}


/* Final mobile offer image cards polish */
@media (max-width: 767px) {
  .xenah-offer-link {
    gap: 12px;
  }

  .xenah-offer-media {
    min-height: 210px;
    border-radius: 22px;
  }

  .xenah-offer-btn {
    width: 100%;
    align-self: stretch;
  }
}


@media (max-width: 767px) {
  .xenah-category-carousel-shell {
    width: calc(100vw - 20px);
    margin-inline: 50%;
    transform: translateX(50%);
  }

  html[dir="ltr"] .xenah-category-carousel-shell {
    transform: translateX(-50%);
  }

  .xenah-category-viewport {
    padding-inline: 12px;
    padding-bottom: 14px;
  }

  .xenah-category-track {
    gap: 14px;
  }

  .xenah-category-slide {
    flex-basis: min(78vw, 300px);
    min-height: 142px;
    border-radius: 22px;
  }

  .xenah-category-slide span {
    margin: 16px;
    font-size: 0.98rem;
  }

  .xenah-category-arrow {
    display: none;
  }
}
