/** Shopify CDN: Minification failed

Line 187:0 Unexpected "}"

**/
/* ============================================
   ELITE WELLNESS SPA SUPPLIES — THEME CSS
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
}

:root {
  --color-primary: #4a4a8a;
  --color-primary-text: #ffffff;
  --color-secondary: #a0a0d0;
  --color-body-bg: #ffffff;
  --color-body-text: #1a1c1c;
  --color-border: #e8e8e8;
  --color-muted: #888888;
  --font-heading: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;
  --page-width: 1280px;
  --grid-gap: 20px;
  --radius-btn: 4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-body-text);
  background-color: var(--color-body-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.template-index,
body.template-index main#main-content {
  overflow-x: hidden;
}

/* Non-homepage templates need padding-top to clear the fixed 134px header */
body:not(.template-index) main#main-content {
  padding-top: 134px;
}

/* On mobile the header collapses to 64px — reduce the dead gap */
@media (max-width: 768px) {
  body:not(.template-index) main#main-content {
    padding-top: 64px;
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-body-text);
}
/* Italic emphasis on last word of section headings — matches design */
.section-heading em {
  font-style: italic;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}
.btn--primary:hover { opacity: 0.85; }

.btn--outline {
  background: transparent;
  border-color: var(--color-body-text);
  color: var(--color-body-text);
}
.btn--outline:hover {
  background-color: var(--color-body-text);
  color: var(--color-body-bg);
}

/* --- Announcement Bar --- */
.announcement-bar { text-align: center; padding: 10px 16px; }
.announcement-bar__text { font-size: 13px; letter-spacing: 0.05em; }
.announcement-bar__text a { text-decoration: underline; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(0deg, #ccc 9%, #f9f9f9 59%);
  border-radius: 0;
  border: none;
  overflow: visible;
  height: 134px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
  transition: height 0.45s ease,
              border-radius 0.45s ease,
              background 0.45s ease,
              box-shadow 0.45s ease;
}
.site-header.is-absolute {
  position: absolute !important;
}
.site-header.is-scrolled {
  max-height: 75px;
  height: 75px;
  border-radius: 0 !important;
  background: #f9f9f9;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.14);
}
.site-header.is-scrolled .site-header__inner {
  height: 75px;
  transition: height 0.45s ease;
}
.site-header.is-scrolled .site-header__logo img {
  width: calc(var(--logo-width, 245px) * 0.7);
  max-width: 140px;
  height: auto;
  transition: width 0.45s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 100%;
  margin: 0;
  padding: 0 32px;
  height: 134px;
  transition: height 0.45s ease;
}
}

.site-header__logo { flex-shrink: 0; margin-right: 200px; }
.site-header__logo img {
  display: block;
  width: var(--logo-width, 245px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: width 0.45s ease, height 0.45s ease;
}
.site-header__logo-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-body-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Small brand icon before text logo */
.site-header__logo-text::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 5px;
  flex-shrink: 0;
}

.site-header__nav { flex: 1; display: flex; justify-content: flex-start; }
.site-header__nav-list { display: flex; gap: 16px; align-items: center; }

.site-header__nav-item { }
.site-header__nav-link {
  display: block;
  padding: 8px 10px;
  font-family: 'Manrope', var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #1A1C1C;
  transition: color var(--transition);
}
.site-header__nav-link:hover,
.site-header__nav-link.is-active { color: var(--color-primary); }

.site-header__megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}
.site-header__nav-item.is-open .site-header__megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__megamenu-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px 24px;
}
.site-header__megamenu-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-header__megamenu-heading {
  font-family: 'Manrope', var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #4a4a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.site-header__megamenu-heading:hover {
  color: var(--color-primary);
}
.site-header__megamenu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-header__megamenu-link {
  font-family: 'Manrope', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.site-header__megamenu-link:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.site-header__icons { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-shrink: 0; }
.site-header__icon-search-mobile { display: none; }
.site-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-body-text);
  transition: background var(--transition);
}
.site-header__icon-btn:hover { background: #f5f5f5; }
.site-header__icon-btn .material-icons { font-size: 22px; }

.site-header__cart { position: relative; }
.site-header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__menu-toggle { display: none; }

/* Search Bar — always visible inline in header */
.site-header__search-inline {
  flex: 1;
  max-width: 240px;
  margin-left: auto;
  margin-right: 12px;
}
.site-header__search-inline form {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 7px 12px;
  background: #f7f7f7;
  transition: border-color var(--transition);
}
.site-header__search-inline form:focus-within {
  border-color: var(--color-primary);
  background: #fff;
}
.site-header__search-inline .material-icons {
  font-size: 18px;
  color: #aaa;
  flex-shrink: 0;
  pointer-events: none;
}
.site-header__search-inline input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-body-text);
  min-width: 0;
}
.site-header__search-inline input::placeholder { color: #aaa; }
/* Hide any submit button inside inline search — icon is enough */
.site-header__search-inline button[type="submit"] { display: none; }

/* Old dropdown search bar (keep for mobile fallback) */
.site-header__search {
  border-top: none;
  background: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.site-header__search.is-open { max-height: 80px; }
.site-header__search-inner {
  display: flex;
  align-items: center;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 12px 24px;
  gap: 12px;
}
.site-header__search-inner form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 8px 14px;
}
.site-header__search-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
}
.site-header__search-inner button[type="submit"] {
  color: var(--color-muted);
}
.site-header__search-close { color: var(--color-muted); }

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.mobile-nav__title { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 600; }
.mobile-nav__close { display: flex; align-items: center; justify-content: center; }

/* Search inside drawer */
.mobile-nav__search {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.mobile-nav__search form {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 12px;
  background: #f7f7f7;
}
.mobile-nav__search form:focus-within { border-color: var(--color-primary); background: #fff; }
.mobile-nav__search .material-icons { font-size: 18px; color: #aaa; flex-shrink: 0; }
.mobile-nav__search input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--color-body-text);
}
.mobile-nav__search input::placeholder { color: #aaa; }

/* Nav list */
.mobile-nav__list { padding: 8px 0; flex: 1; }

.mobile-nav__link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__link {
  display: block;
  padding: 14px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-body-text);
  flex: 1;
}
.mobile-nav__toggle {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-nav__toggle.is-open { transform: rotate(180deg); }
.mobile-nav__toggle .material-icons { font-size: 20px; }

/* Sub list */
.mobile-nav__sub-list {
  background: #f9f9f9;
  padding: 4px 0;
}
.mobile-nav__sub-list[hidden] { display: none; }
.mobile-nav__sub-item .mobile-nav__link-row { border-bottom: 1px solid #eee; }
.mobile-nav__sub-link {
  display: block;
  padding: 12px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  flex: 1;
}
.mobile-nav__sub-link:hover { color: var(--color-primary); }

/* Sub-sub list */
.mobile-nav__sub-sub-list {
  background: #f3f3f3;
  padding: 4px 0;
}
.mobile-nav__sub-sub-list[hidden] { display: none; }
.mobile-nav__sub-sub-link {
  display: block;
  padding: 10px 44px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
}
.mobile-nav__sub-sub-link:hover { color: var(--color-primary); }

/* Footer icons */
.mobile-nav__footer {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}
.mobile-nav__footer-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-body-text);
  border-right: 1px solid var(--color-border);
  transition: color var(--transition);
}
.mobile-nav__footer-link:last-child { border-right: none; }
.mobile-nav__footer-link:hover { color: var(--color-primary); }
.mobile-nav__footer-link .material-icons-outlined { font-size: 22px; }

/* --- Hero Slideshow --- */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  background: #1a1a2e;
  /* Full width on desktop and tablet, bottom margin only */
  margin: 0 0 20px 0;
  border-radius: 0;
}

.hero-slideshow__track { position: relative; width: 100%; }

.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slideshow__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slideshow__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slideshow__bg img,
.hero-slideshow__bg picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slideshow__bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slideshow__bg-placeholder { width: 100%; height: 100%; }
.hero-slideshow__overlay {
  position: absolute;
  inset: 0;
}

.hero-slideshow__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 100vh height, pad top so content clears the 134px fixed header + gap */
  min-height: 100vh;
  padding: 194px 60px 60px 60px;   /* 134px header + 60px gap = 194px top */
  max-width: 100%;
  margin: 0;
}
.hero-slideshow__content--center {
  justify-content: center;
  align-items: center;
  padding: 194px 60px 60px 60px;
  text-align: center;
}
.hero-slideshow__content--right {
  justify-content: flex-end;
  padding: 194px 60px 60px 60px;
}

/* Content card — white box, vertically centered left, ALWAYS dark text */
.hero-slideshow__content-inner {
  width: 520px;
  max-width: calc(100% - 120px);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 6px;
  padding: 44px 48px 48px;
  flex-shrink: 0;
}

/* Force dark text inside card regardless of slide text_color setting */
.hero-slideshow__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--color-primary) !important;
}

.hero-slideshow__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #1a1a2e !important;
  letter-spacing: -0.01em;
}

.hero-slideshow__subheading {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #555 !important;
}

.hero-slideshow__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Button 1 — solid filled */
.hero-btn--primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid transparent;
  transition: opacity var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.hero-btn--primary:hover { opacity: 0.85; }

/* Button 2 — outlined box (matches reference "View Lookbook") */
.hero-btn--text {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a2e;
  border: 1.5px solid #1a1a2e;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.hero-btn--text:hover {
  background: #1a1a2e;
  color: #fff;
}

/* Arrows — grouped at bottom-right corner like reference design */
.hero-slideshow__arrow {
  position: absolute;
  bottom: 24px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  top: auto;
  transform: none;
}
.hero-slideshow__arrow:hover { background: rgba(255,255,255,0.35); }
.hero-slideshow__arrow .material-icons { font-size: 20px; }
/* LTR: arrows at bottom-right */
.hero-slideshow__arrow--prev { right: 68px; }
.hero-slideshow__arrow--next { right: 20px; }

/* Dots — bottom-left, arrows are bottom-right */
.hero-slideshow__dots {
  position: absolute;
  bottom: 36px;
  left: 60px;
  transform: none;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-slideshow__dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-slideshow__dot.is-active {
  background: #fff;
  width: 36px;
}

/* --- Logo Bar --- */
.logo-bar {
  padding: 36px 0 32px;
  background: #f4f3f3;
  border-top: none;
  border-bottom: none;
}
.logo-bar__heading {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #20237a;
  margin-bottom: 24px;
}
.logo-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-bar__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-right: 1px solid var(--color-border);
  box-sizing: border-box;
}
.logo-bar__logo-item:last-child { border-right: none; }
.logo-bar__logo-item img {
  height: var(--logo-height, 60px);
  width: auto;
  max-width: 100%;
  max-height: var(--logo-height, 60px);
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(1);
  transition: all var(--transition);
}
.logo-bar__logo-item:hover img { opacity: 1; filter: grayscale(0); }
/* Text logos — Madimi One, 36px */
.logo-bar__logo-text {
  font-family: 'Madimi One', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: color var(--transition);
  white-space: nowrap;
}
.logo-bar__logo-item a { display: flex; align-items: center; }
.logo-bar__logo-item:hover .logo-bar__logo-text { color: var(--color-body-text); }

/* --- Featured Collections --- */
.featured-collections {
  padding: 52px 0 60px;
  background: #fff;
}
.featured-collections__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.featured-collections__title-wrap .section-heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.15;
  font-family: 'Manrope', sans-serif;
  color: var(--color-body-text);
}
.featured-collections__view-all {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.featured-collections__view-all:hover { opacity: 0.7; }

/* Grid — 12-col base, alternating big/small pattern per row, 388px fixed height */
.featured-collections__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* All cards fixed 388px height */
.collection-card {
  border-radius: 12px;
  overflow: hidden;
  display: block;
  height: 388px;
}

/* Row 1 pattern: big(8) + small(4) */
.featured-collections__grid .collection-card:nth-child(6n+1) { grid-column: 1 / 9; }
.featured-collections__grid .collection-card:nth-child(6n+2) { grid-column: 9 / 13; }

/* Row 2 pattern: small(4) + big(8) */
.featured-collections__grid .collection-card:nth-child(6n+3) { grid-column: 1 / 5; }
.featured-collections__grid .collection-card:nth-child(6n+4) { grid-column: 5 / 13; }

/* Row 3 pattern: big(8) + small(4) — same as row 1 */
.featured-collections__grid .collection-card:nth-child(6n+5) { grid-column: 1 / 9; }
.featured-collections__grid .collection-card:nth-child(6n+6) { grid-column: 9 / 13; }

.collection-card__link { display: block; position: relative; height: 388px; width: 100%; }
.collection-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 388px;
  width: 100%;
}
.collection-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.collection-card:hover .collection-card__image-wrap img { transform: scale(1.04); }
.collection-card__placeholder { width: 100%; height: 388px; background: #e8e4f0; }
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 35, 122, 0.6) 0%, rgba(32, 35, 122, 0) 100%);
}
.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 22px;
  z-index: 2;
}
.collection-card__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  font-family: 'Manrope', sans-serif;
}
.collection-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
/* Button — white bg, dark text, like reference */
.collection-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-body-text);
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  transition: all var(--transition);
}
.collection-card:hover .collection-card__btn {
  background: rgba(255,255,255,0.9);
}

/* --- Best Sellers --- */
.best-sellers { padding: 72px 0; background: #f4f3f3; }
.best-sellers__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.best-sellers__header .section-heading {
  font-size: 48px;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  color: #1a1c1c;
}
.best-sellers__nav { display: flex; flex-direction: row; gap: 8px; align-items: center; }
.best-sellers__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-body-text);
  transition: all var(--transition);
}
.best-sellers__arrow:hover {
  background: var(--color-body-text);
  color: #fff;
  border-color: var(--color-body-text);
}
.best-sellers__arrow .material-icons { font-size: 18px; }

.best-sellers__slider-wrap { overflow: hidden; }
.best-sellers__slider {
  display: flex;
  gap: var(--grid-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.best-sellers__slider::-webkit-scrollbar { display: none; }

.best-sellers__footer { text-align: center; margin-top: 48px; }

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - var(--grid-gap) * 3 / 4);
  min-width: 220px;
  scroll-snap-align: start;
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}
.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition), transform 0.5s ease;
}
.product-card__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card.has-hover-image:hover .product-card__image-hover { opacity: 1; }
.product-card.has-hover-image:hover .product-card__image-wrap > img:first-child { opacity: 0; }
.product-card:hover img { transform: scale(1.03); }

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.product-card__image-placeholder .material-icons { font-size: 48px; }

.product-card__quick-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  color: var(--color-body-text);
}
.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}
.product-card__quick-add:hover { background: var(--color-primary); color: #fff; }
.product-card__quick-add .material-icons { font-size: 18px; }

.product-card__vendor {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card__title a:hover { color: var(--color-primary); }
.product-card__price { font-size: 14px; font-weight: 500; }
.product-card__price--sale { color: #c0392b; }
.product-card__price--compare {
  text-decoration: line-through;
  color: var(--color-muted);
  font-weight: 400;
  margin-left: 6px;
}

/* --- Brand Logos --- */
.brand-logos { padding: 80px 0; }
.brand-logos__header,
.logo-bar__header {
  text-align: center;
  margin-bottom: 48px;
}
.brand-logos__header .section-eyebrow,
.logo-bar__header .section-eyebrow {
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #20237a;
}
.brand-logos__header .section-heading,
.logo-bar__header .section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #1a1c1c;
  letter-spacing: 0;
  text-transform: none;
}
.brand-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165.33px;
  height: 96px;
  background: transparent;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand-logos__item img,
.brand-logos__item svg.placeholder-svg {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  opacity: 0.8;
  filter: grayscale(1);
  transition: all var(--transition);
}
.brand-logos__item:hover img,
.brand-logos__item:hover svg.placeholder-svg {
  opacity: 1;
  filter: grayscale(0);
}

/* --- Philosophy / Quote --- */
.philosophy-quote {
  padding: 24px 20px;
}
.philosophy-quote__card {
  border-radius: 16px;
  padding: 60px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.philosophy-quote__icon {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  letter-spacing: -2px;
}
.philosophy-quote__text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  color: #ffffff;
  max-width: 680px;
  margin: 0 auto 32px;
}
.philosophy-quote__attribution-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.philosophy-quote__attribution-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.philosophy-quote__attribution {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* --- Footer --- */
.site-footer {
  background-color: #e9e9e9;
  color: #1a1c1c;
  padding-top: 60px;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.8fr;
  gap: 48px;
  padding-bottom: 52px;
}

/* Brand column */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer__logo-link { display: inline-block; margin-bottom: 20px; }
.site-footer__logo-link img { max-width: 160px; height: auto; }
.site-footer__logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1c1c;
  display: inline-block;
  margin-bottom: 20px;
}
.site-footer__description {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
  max-width: 260px;
}

/* Social icons — rounded square buttons */
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social-link {
  width: 36px;
  height: 36px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  background: transparent;
  transition: all var(--transition);
}
.site-footer__social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(74,74,138,0.06);
}
.site-footer__social-link .material-icons,
.site-footer__social-link .material-icons-outlined { font-size: 16px; }
.site-footer__social-link svg { display: block; }

/* Link columns */
.site-footer__column-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1c1c;
  margin-bottom: 20px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 12px; }
.site-footer__links li { list-style: none; margin: 0; padding: 0; }
.site-footer__link,
.site-footer__links a,
.site-footer__links li a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  display: block;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__link:hover,
.site-footer__links a:hover { color: var(--color-primary); }

/* Newsletter */
.site-footer__newsletter {}
.site-footer__newsletter-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.site-footer__newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #aaa;
  padding-bottom: 8px;
  gap: 8px;
}
.site-footer__newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #1a1c1c;
  outline: none;
  padding: 4px 0;
}
.site-footer__newsletter-input::placeholder { color: #999; }
.site-footer__newsletter-btn {
  background: transparent;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.site-footer__newsletter-btn:hover { opacity: 0.7; }
.site-footer__newsletter-success {
  font-size: 13px;
  color: #2d8a2d;
  margin-top: 10px;
}

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid #ccc;
  padding: 20px 0;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__copyright {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: #888;
}
.site-footer__legal-links { display: flex; gap: 20px; }
.site-footer__legal-link {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: #888;
  transition: color var(--transition);
}
.site-footer__legal-link:hover { color: #1a1c1c; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .featured-collections__grid { grid-template-columns: repeat(12, 1fr); }
  .product-card { flex: 0 0 calc(33.333% - var(--grid-gap)); }
  .best-sellers__header .section-heading { font-size: 36px; }
  .brand-logos__header .section-heading,
  .logo-bar__header .section-heading { font-size: 36px; }
}

@media (max-width: 768px) {
  /* ---- Header ---- */
  .site-header {
    left: 0;
    right: 0;
    border-radius: 0;
    height: 64px;
  }
  .site-header.is-scrolled {
    left: 0;
    right: 0;
    border-radius: 0;
    height: 64px;
  }
  .site-header__inner { height: 64px; padding: 0 16px; gap: 0; }
  .site-header.is-scrolled .site-header__inner { height: 64px; }
  .site-header__nav { display: none; }
  .site-header__menu-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .site-header__menu-toggle .material-icons { font-size: 24px; }
  .site-header__search-inline { display: none; }
  .site-header__logo img { width: 120px; height: auto; }
  .site-header.is-scrolled .site-header__logo img { width: 120px; }

  /* Mobile header: hamburger left, logo centered, icons right */
  .site-header__inner {
    position: relative;
  }
  .site-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  /* Icons pushed to the far right on mobile */
  .site-header__icons {
    margin-left: auto;
  }

  /* ---- Hero ---- */
  .hero-slideshow { margin: 0 0 12px 0; border-radius: 0; }
  .hero-slideshow__content {
    min-height: 70vh;
    padding: 80px 20px 60px;
    align-items: flex-start;
  }
  .hero-slideshow__content-inner {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 28px;
  }
  .hero-slideshow__heading { font-size: 28px; }
  .hero-slideshow__subheading { font-size: 13px; }
  .hero-slideshow__buttons { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-slideshow__arrow { width: 34px; height: 34px; bottom: 16px; }
  .hero-slideshow__arrow--prev { right: 62px; }
  .hero-slideshow__arrow--next { right: 16px; }
  .hero-slideshow__dots { bottom: 28px; left: 20px; }

  /* ---- Logo bar ---- */
  .logo-bar { padding: 24px 0 20px; }
  .logo-bar__logos { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .logo-bar__logo-item { padding: 4px 16px; border-right: none; }
  .logo-bar__logo-item img { height: var(--logo-height-mobile, 32px); }
  .logo-bar__logo-text { font-size: 16px; }

  /* ---- Featured Collections ---- */
  .featured-collections { padding: 36px 0 40px; }
  .featured-collections__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .featured-collections__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .featured-collections__grid .collection-card:nth-child(6n+1),
  .featured-collections__grid .collection-card:nth-child(6n+5) { grid-column: 1 / 2; }
  .featured-collections__grid .collection-card:nth-child(6n+2),
  .featured-collections__grid .collection-card:nth-child(6n+6) { grid-column: 2 / 3; }
  .featured-collections__grid .collection-card:nth-child(6n+3) { grid-column: 1 / 2; }
  .featured-collections__grid .collection-card:nth-child(6n+4) { grid-column: 2 / 3; }
  .collection-card { height: 220px; }
  .collection-card__link { height: 220px; }
  .collection-card__image-wrap { height: 220px; }
  .collection-card__title { font-size: 15px; }

  /* ---- Best Sellers ---- */
  .best-sellers { padding: 40px 0; }
  .best-sellers__header { margin-bottom: 24px; }
  .best-sellers__header .section-heading { font-size: 28px; }
  .product-card { flex: 0 0 calc(50% - var(--grid-gap) / 2); min-width: 160px; }

  /* ---- Brand Logos ---- */
  .brand-logos { padding: 40px 0; }
  .brand-logos__header .section-heading,
  .logo-bar__header .section-heading { font-size: 28px; }
  .brand-logos__grid { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .brand-logos__item { width: 140px; height: 80px; }

  /* ---- Quote ---- */
  .philosophy-quote { padding: 12px; }
  .philosophy-quote__card { padding: 40px 24px; border-radius: 12px; }
  .philosophy-quote__text { font-size: 16px; }

  /* ---- Footer ---- */
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  /* ---- Header ---- */
  .site-header__inner { padding: 0 12px; }

  /* ---- Hero ---- */
  .hero-slideshow__content { padding: 70px 16px 50px; }
  .hero-slideshow__heading { font-size: 24px; }

  /* ---- Featured Collections ---- */
  .featured-collections__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .featured-collections__grid .collection-card,
  .featured-collections__grid .collection-card:nth-child(n) { grid-column: 1 / -1; }
  .collection-card,
  .collection-card__link,
  .collection-card__image-wrap { height: 240px; }

  /* ---- Logo bar ---- */
  .logo-bar__logos { gap: 8px; }
  .logo-bar__logo-item { padding: 4px 12px; }

  /* ---- Brand logos ---- */
  .brand-logos__item { width: 120px; height: 70px; }

  /* ---- Best Sellers ---- */
  .best-sellers__header .section-heading { font-size: 24px; }

  /* ---- Footer ---- */
  .site-footer { padding-top: 40px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 16px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip to content */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }
[dir="rtl"] .skip-to-content { left: auto; right: 16px; }

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-banner {
  position: relative;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.collection-banner__image { position: absolute; inset: 0; }
.collection-banner__image img { width: 100%; height: 100%; object-fit: cover; }
.collection-banner__overlay { position: absolute; inset: 0; }
.collection-banner__content { position: relative; z-index: 2; }
.collection-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  margin-bottom: 16px;
}
.collection-banner__description { font-size: 15px; max-width: 600px; margin: 0 auto; opacity: 0.8; }

.collection-grid-section { padding: 48px 0 80px; }
.collection-grid-section__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.collection-grid-section__count { font-size: 13px; color: var(--color-muted); }
.collection-grid-section__sort select {
  font-family: var(--font-body);
  font-size: 13px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 6px 12px;
  background: #fff;
  cursor: pointer;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: var(--grid-gap);
}
.collection-grid__empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--color-muted); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  transition: all var(--transition);
}
.pagination a:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-main { padding: 60px 0 80px; }
.product-main__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery__main { position: relative; border-radius: 8px; overflow: hidden; background: #f5f5f5; }
.product-gallery__slide { display: none; }
.product-gallery__slide.is-active { display: block; }
.product-gallery__slide img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.product-gallery__thumb.is-active { border-color: var(--color-primary); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__vendor {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.product-info__price {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-info__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #c0392b;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
}
.product-info__description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.product-info__option { margin-bottom: 20px; }
.product-info__option-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-info__option-values { display: flex; gap: 8px; flex-wrap: wrap; }
.product-info__option-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  transition: all var(--transition);
}
.product-info__option-btn:hover,
.product-info__option-btn.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.product-info__qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.product-info__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.product-info__qty-btn {
  width: 40px;
  height: 48px;
  font-size: 20px;
  color: var(--color-body-text);
  transition: background var(--transition);
}
.product-info__qty-btn:hover { background: #f5f5f5; }
.product-info__qty-input {
  width: 52px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.product-info__add-btn { flex: 1; justify-content: center; height: 48px; font-size: 14px; }

/* ============================================
   CART PAGE
   ============================================ */
.cart-page { padding: 60px 0 80px; }
.cart-page__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 40px;
}
.cart-page__inner { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.cart-item__image img { border-radius: 6px; width: 100px; height: 100px; object-fit: cover; }
.cart-item__title { font-family: var(--font-heading); font-size: 18px; font-weight: 400; margin-bottom: 4px; }
.cart-item__title:hover { color: var(--color-primary); }
.cart-item__variant { font-size: 13px; color: var(--color-muted); margin-bottom: 8px; }
.cart-item__price { font-size: 14px; margin-bottom: 12px; }
.cart-item__qty-input {
  width: 60px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
}
.cart-item__total { text-align: right; }
.cart-item__total p { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.cart-item__remove { color: var(--color-muted); transition: color var(--transition); }
.cart-item__remove:hover { color: #c0392b; }
.cart-item__remove .material-icons { font-size: 18px; }

.cart-page__summary {
  background: #f8f8f6;
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 88px;
}
.cart-page__summary-title { font-family: var(--font-heading); font-size: 22px; font-weight: 400; margin-bottom: 20px; }
.cart-page__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.cart-page__note label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.cart-page__note textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  resize: vertical;
  margin-bottom: 16px;
}
.cart-page__checkout-btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.cart-page__continue {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: underline;
  transition: color var(--transition);
}
.cart-page__continue:hover { color: var(--color-body-text); }

.cart-page__empty { text-align: center; padding: 80px 0; }
.cart-page__empty-icon { font-size: 64px; color: #ddd; display: block; margin-bottom: 16px; }
.cart-page__empty p { font-size: 18px; color: var(--color-muted); margin-bottom: 28px; }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content { padding: 60px 0 80px; }
.page-content__inner { margin: 0 auto; }

/* Enforce font family across page content templates */
.page-content,
.page-content *:not(.material-icons):not(.material-icons-outlined) {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif !important;
}

[dir="rtl"] .page-content,
[dir="rtl"] .page-content *:not(.material-icons):not(.material-icons-outlined) {
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif !important;
  letter-spacing: 0 !important;
}

.rte { font-size: 15px; line-height: 1.8; }
.rte h2, .rte h3 { font-family: var(--font-heading); font-weight: 400; margin: 28px 0 12px; }
.rte p { margin-bottom: 16px; }
.rte a { color: var(--color-primary); text-decoration: underline; }
.rte ul, .rte ol { padding-left: 24px; margin-bottom: 16px; }
.rte li { margin-bottom: 6px; }

.page-content h1,
.page-content__title,
.page-content__body.rte h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: #1a1a2e !important;
  letter-spacing: -0.01em;
}
.page-content__title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 32px;
}

/* Page Content Body typography (specifically for static pages, to prevent breaking other pages) */
.page-content__body.rte {
  font-size: 14px;
  line-height: 1.7;
  color: #555 !important;
}
.page-content__body.rte p,
.page-content__body.rte li {
  font-size: 14px;
  line-height: 1.7;
  color: #555 !important;
}
.page-content__body.rte p {
  margin-bottom: 28px;
}
.page-content__body.rte strong,
.page-content__body.rte b {
  color: #4a4a8a;
  font-family: 'Manrope', var(--font-body);
  font-weight: 500;
  font-size: 15px;
}
.page-content__body.rte h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin: 36px 0 16px;
}
.page-content__body.rte h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.3;
  margin: 32px 0 14px;
  color: var(--color-body-text);
}
.page-content__body.rte h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  margin: 28px 0 12px;
  color: var(--color-body-text);
}
.page-content__body.rte h4 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  margin: 24px 0 10px;
  color: var(--color-body-text);
}

/* ============================================
   PRODUCT / CART PAGE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .product-main__inner { grid-template-columns: 1fr; gap: 32px; }
  .cart-page__inner { grid-template-columns: 1fr; }
  .cart-page__summary { position: static; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__total { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RTL SUPPORT — Arabic / Hebrew / Farsi / Urdu
   All overrides scoped to [dir="rtl"] so LTR
   is completely unaffected.
   ============================================ */

/* Arabic font stack */
[dir="rtl"] *:not(.material-icons):not(.material-icons-outlined) {
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif !important;
  letter-spacing: 0 !important; /* Arabic doesn't use letter-spacing */
}

/* Headings: remove italic in Arabic */
[dir="rtl"] .section-heading,
[dir="rtl"] .hero-slideshow__heading,
[dir="rtl"] .product-info__title,
[dir="rtl"] .cart-page__title,
[dir="rtl"] .page-content__title,
[dir="rtl"] .collection-banner__title,
[dir="rtl"] .collection-card__title,
[dir="rtl"] .product-card__title,
[dir="rtl"] .site-footer__logo-text,
[dir="rtl"] .mobile-nav__title {
  font-style: normal; /* no italic in Arabic */
}

/* Text alignment */
[dir="rtl"] .section-eyebrow,
[dir="rtl"] .hero-slideshow__eyebrow,
[dir="rtl"] .collection-card__eyebrow,
[dir="rtl"] .product-card__vendor,
[dir="rtl"] .product-info__vendor,
[dir="rtl"] .site-footer__column-heading,
[dir="rtl"] .brand-logos__header .section-eyebrow,
[dir="rtl"] .logo-bar__header .section-eyebrow {
  letter-spacing: 0;
}




/* Icons group: in RTL row-reverse, margin-left: auto pushes them to left visually */
[dir="rtl"] .site-header__icons {
  margin-left: 0;
  margin-right: auto;
}

/* Inline search in RTL: push to right of icons group */
[dir="rtl"] .site-header__search-inline {
  margin-left: 12px;
  margin-right: auto;
  direction: rtl;
}

[dir="rtl"] .site-header__search-inline input {
  text-align: right;
}

/* Cart badge: flip position */
[dir="rtl"] .site-header__cart-count {
  right: auto;
  left: 4px;
}

/* Dropdown opens to the right edge in RTL */
[dir="rtl"] .site-header__dropdown {
  left: auto;
  right: 0;
}

/* ---- Header — Mobile RTL overrides (≤768px) ---- */
/* On mobile the logo is absolutely centered so LTR/RTL layout is:
   RTL: [icons left] [logo center] [☰ right]
   We keep row-reverse so the hamburger (first in DOM) ends up on the right. */
@media (max-width: 768px) {
  /* Logo stays absolutely centered — reset desktop RTL margin */
  [dir="rtl"] .site-header__logo {
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
  }

  [dir="rtl"] .site-header__icons {
    display: flex !important;
    margin-right: auto;
    margin-left: 0;
  }

  /* Hamburger toggle: row-reverse puts it on the right — correct for RTL */
  [dir="rtl"] .site-header__menu-toggle {
    /* no change needed — flex-direction: row-reverse on parent handles it */
  }
}

/* Search bar input direction */
[dir="rtl"] .site-header__search-inner form {
  flex-direction: row-reverse;
}
[dir="rtl"] .site-header__search-inner input {
  text-align: right;
}

/* ---- Mobile Nav — slides from right in RTL ---- */
[dir="rtl"] .mobile-nav {
  left: auto;
  right: 0;
  transform: translateX(100%);
}
[dir="rtl"] .mobile-nav.is-open {
  transform: translateX(0);
}
[dir="rtl"] .mobile-nav__link-row { flex-direction: row-reverse; }
[dir="rtl"] .mobile-nav__link,
[dir="rtl"] .mobile-nav__sub-link,
[dir="rtl"] .mobile-nav__sub-sub-link {
  padding-left: 0;
  padding-right: 24px;
  text-align: right;
}
[dir="rtl"] .mobile-nav__sub-link { padding-right: 32px; }
[dir="rtl"] .mobile-nav__sub-sub-link { padding-right: 44px; }
[dir="rtl"] .mobile-nav__toggle { order: -1; }
[dir="rtl"] .mobile-nav__search form { flex-direction: row; }
[dir="rtl"] .mobile-nav__search input { text-align: right; direction: rtl; }
[dir="rtl"] .mobile-nav__footer { flex-direction: row-reverse; }

/* ---- Hero Slideshow ---- */
/* RTL: content--left should remain on the LEFT (start of reading but left of screen) */
[dir="rtl"] .hero-slideshow__content--left {
  justify-content: flex-start;     /* keep box on left side of screen */
  padding: 60px 60px;
}
[dir="rtl"] .hero-slideshow__content--right {
  justify-content: flex-end;
  padding: 60px 60px;
}
[dir="rtl"] .hero-slideshow__buttons { flex-direction: row; }
[dir="rtl"] .hero-slideshow__content-inner { text-align: right; }

/* RTL: arrows stay at bottom-right (arrows are bottom-right in reference regardless of direction) */
[dir="rtl"] .hero-slideshow__arrow--prev {
  right: 68px;
  left: auto;
}
[dir="rtl"] .hero-slideshow__arrow--next {
  right: 20px;
  left: auto;
}

/* RTL: dots stay bottom-left */
[dir="rtl"] .hero-slideshow__dots {
  left: 60px;
  right: auto;
}

/* RTL mobile: hero content needs full top padding to clear 64px header */
@media (max-width: 768px) {
  [dir="rtl"] .hero-slideshow__content--left,
  [dir="rtl"] .hero-slideshow__content--center,
  [dir="rtl"] .hero-slideshow__content--right {
    padding-top: 80px;
  }
}

/* RTL hero content -- restore the correct padding (was incorrectly set to 60px, overriding the 194px LTR value) */
[dir="rtl"] .hero-slideshow__content--left {
  padding: 194px 60px 60px 60px;
}
[dir="rtl"] .hero-slideshow__content--center {
  padding: 194px 60px 60px 60px;
}
[dir="rtl"] .hero-slideshow__content--right {
  padding: 194px 60px 60px 60px;
}

/* ---- Logo Bar ---- */
[dir="rtl"] .logo-bar__logos {
  flex-direction: row-reverse;
}

/* ---- Featured Collections ---- */
[dir="rtl"] .featured-collections__header {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .featured-collections__title-wrap .section-heading {
  text-align: right;
}

/* ---- Best Sellers ---- */
[dir="rtl"] .best-sellers__header {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .best-sellers__header .section-heading {
  text-align: right;
}
[dir="rtl"] .best-sellers__nav {
  flex-direction: row;
}
/* Swap arrow icons direction */
[dir="rtl"] .best-sellers__arrow--prev .material-icons,
[dir="rtl"] .best-sellers__arrow--next .material-icons {
  display: inline-block;
  transform: scaleX(-1);
}

/* ---- Brand Logos ---- */
[dir="rtl"] .brand-logos__grid {
  flex-direction: row-reverse;
}

/* ---- Philosophy Quote ---- */
/* The section has .philosophy-quote__card (container), .philosophy-quote__text (blockquote),
   .philosophy-quote__attribution, .philosophy-quote__attribution-wrap */
[dir="rtl"] .philosophy-quote__card {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .philosophy-quote__text {
  text-align: center; /* keep centered — quotes are naturally centered */
  direction: rtl;
}
[dir="rtl"] .philosophy-quote__attribution {
  direction: rtl;
  letter-spacing: 0;
}
[dir="rtl"] .philosophy-quote__attribution-wrap {
  flex-direction: row-reverse;
}

/* ---- Footer ---- */
[dir="rtl"] .site-footer__main {
  direction: rtl;
}
[dir="rtl"] .site-footer__brand {
  text-align: right;
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
[dir="rtl"] .site-footer__column,
[dir="rtl"] .site-footer__newsletter {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .site-footer__social {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
[dir="rtl"] .site-footer__newsletter-form { flex-direction: row-reverse; }
[dir="rtl"] .site-footer__newsletter-input {
  text-align: right;
}
[dir="rtl"] .site-footer__links { text-align: right; }
[dir="rtl"] .site-footer__bottom-inner {
  flex-direction: row;
}
[dir="rtl"] .site-footer__legal-links { flex-direction: row; }
[dir="rtl"] .site-footer__logo-text { flex-direction: row-reverse; }

/* ---- Collection Grid toolbar — see COLLECTION — RTL section below ---- */

/* ---- Product Page — see PDP — RTL section below ---- */

/* ---- Cart Page ---- */
[dir="rtl"] .cart-item {
  direction: rtl;
}
[dir="rtl"] .cart-item__total {
  text-align: left;
}
[dir="rtl"] .cart-page__subtotal {
  flex-direction: row-reverse;
}
[dir="rtl"] .cart-page__inner {
  direction: rtl;
}

/* ---- Product Card quick-add: flip badge position ---- */
[dir="rtl"] .product-card__quick-add {
  right: auto;
  left: 12px;
}

/* ---- Announcement bar ---- */
[dir="rtl"] .announcement-bar__text {
  direction: rtl;
}



/* ---- RTE (rich text) content ---- */
[dir="rtl"] .rte {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .rte ul,
[dir="rtl"] .rte ol {
  padding-left: 0;
  padding-right: 24px;
}

/* ---- Collection banner ---- */
[dir="rtl"] .collection-banner__content {
  direction: rtl;
}

/* ---- Mobile nav sub-links indent ---- */
[dir="rtl"] .mobile-nav__sub-link {
  padding: 10px 36px 10px 16px;
}

/* ---- Dropdown chevron / arrow icons mirror ---- */
[dir="rtl"] .site-header__nav-link .material-icons,
[dir="rtl"] .mobile-nav__link .material-icons {
  transform: scaleX(-1);
}

/* ============================================
   COLLECTION PAGE — REDESIGN
   (This section is superseded by the full redesign below ~line 4070.
    These styles are kept as cascade base but overridden further down.)
   ============================================ */

/* --- Collection Header (base) --- */
.col-header {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--color-border);
}
.col-header__inner { max-width: var(--page-width); margin: 0 auto; padding: 0 24px; }

/* Breadcrumb (base — applies to both collection and PDP) */
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb__item { font-family: 'Manrope', sans-serif; font-size: 12px; color: #888; }
.breadcrumb__link { color: #888; transition: color var(--transition); }
.breadcrumb__link:hover { color: var(--color-body-text); }
.breadcrumb__separator { display: flex; align-items: center; color: #ccc; }
.breadcrumb__separator .material-icons { font-size: 14px; vertical-align: middle; }
.breadcrumb__item--current { color: var(--color-body-text); font-weight: 500; }

.col-header__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 14px;
}
.col-header__description {
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
  color: #555;
}

/* --- Collection Main Layout --- */
.col-main { padding: 32px 0 80px; background: #fff; }
.col-main__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* =====================
   SIDEBAR
   ===================== */
.col-sidebar {
  position: sticky;
  top: 150px;
  background: #fff;
}

.col-sidebar__mobile-toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-body-text);
}
.col-sidebar__mobile-toggle .material-icons:first-child { font-size: 18px; }
.col-sidebar__mobile-toggle-arrow { margin-left: auto; font-size: 20px; transition: transform var(--transition); }

/* Filter group */
.col-filter { border-bottom: 1px solid var(--color-border); padding: 0; }
.col-filter__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-body-text);
  transition: color var(--transition);
}
.col-filter__heading:hover { color: var(--color-primary); }
.col-filter__icon { font-size: 18px; transition: transform var(--transition); }
.col-filter__heading[aria-expanded="false"] .col-filter__icon { transform: rotate(-90deg); }

.col-filter__body { padding-bottom: 14px; }
.col-filter__list { display: flex; flex-direction: column; gap: 2px; }

/* Category links */
.col-filter__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 6px 4px;
  font-size: 13px;
  color: #555;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.col-filter__link:hover { color: var(--color-body-text); border-left-color: var(--color-border); }
.col-filter__link.is-active {
  color: var(--color-primary);
  font-weight: 600;
  border-left-color: var(--color-primary);
}
.col-filter__count { font-size: 12px; color: #aaa; }

/* Checkbox filters */
.col-filter__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: color var(--transition);
}
.col-filter__checkbox-label:hover { color: var(--color-body-text); }
.col-filter__checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.col-filter__checkbox-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.col-filter__checkbox:checked + .col-filter__checkbox-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.col-filter__checkbox:checked + .col-filter__checkbox-box::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.col-filter__checkbox:focus-visible + .col-filter__checkbox-box {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Price range slider */
.col-filter__price-range { padding: 8px 0 4px; }
.col-filter__price-slider-wrap { position: relative; height: 28px; margin-bottom: 12px; }
.col-filter__price-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
}
.col-filter__price-fill {
  position: absolute;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
}
.col-filter__range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  outline: none;
}
.col-filter__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  pointer-events: all;
  cursor: pointer;
  transition: transform var(--transition);
}
.col-filter__range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.col-filter__range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  pointer-events: all;
  cursor: pointer;
}
.col-filter__price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* =====================
   TOOLBAR
   ===================== */
.col-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.col-toolbar__count { font-size: 13px; color: #888; }
.col-toolbar__right { display: flex; align-items: center; gap: 16px; }

.col-toolbar__view-toggle { display: flex; gap: 4px; }
.col-toolbar__view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all var(--transition);
}
.col-toolbar__view-btn .material-icons { font-size: 18px; }
.col-toolbar__view-btn.is-active,
.col-toolbar__view-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

.col-toolbar__sort { display: flex; align-items: center; gap: 8px; }
.col-toolbar__sort-label { font-size: 13px; color: #888; white-space: nowrap; }
.col-toolbar__sort-select-wrap { position: relative; display: flex; align-items: center; }
.col-toolbar__sort-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 7px 32px 7px 12px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.col-toolbar__sort-select:focus { border-color: var(--color-primary); }
.col-toolbar__sort-icon {
  position: absolute;
  right: 8px;
  font-size: 18px;
  color: #888;
  pointer-events: none;
}

/* Active filter tags */
.col-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.col-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #f0f0f8;
  border: 1px solid #d0d0e8;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  transition: all var(--transition);
}
.col-active-filter .material-icons { font-size: 14px; }
.col-active-filter:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.col-active-filter--clear {
  background: transparent;
  border-color: #ccc;
  color: #888;
}
.col-active-filter--clear:hover { background: #555; border-color: #555; color: #fff; }

/* =====================
   PRODUCT GRID
   ===================== */
.col-grid {
  display: grid;
  grid-template-columns: repeat(var(--col-cols, 3), 1fr);
  gap: 28px 20px;
}
.col-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: #aaa;
  font-size: 16px;
}

/* List view */
.col-grid[data-view="list"] {
  grid-template-columns: 1fr;
  gap: 16px;
}
.col-grid[data-view="list"] .col-product-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px;
}
.col-grid[data-view="list"] .col-product-card__image-wrap {
  aspect-ratio: 1/1;
  border-radius: 6px;
}

/* =====================
   PRODUCT CARD (collection)
   ===================== */
.col-product-card { display: flex; flex-direction: column; }

.col-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f3;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}
.col-product-card__image-link { display: block; width: 100%; height: 100%; }
.col-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.col-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.col-product-card.has-hover-image:hover .col-product-card__img--primary { opacity: 0; }
.col-product-card.has-hover-image:hover .col-product-card__img--hover { opacity: 1; }
.col-product-card:hover .col-product-card__img { transform: scale(1.03); }

.col-product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.col-product-card__img-placeholder .material-icons { font-size: 48px; }

/* Badge */
.col-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  color: #fff;
  z-index: 2;
  line-height: 1.4;
}
.col-product-card__badge--new { background: #1a1a2e; }
.col-product-card__badge--sale { background: #c0392b; }
.col-product-card__badge--best { background: #4a4a8a; }

/* Quick add */
.col-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(26, 26, 46, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  border-radius: 0 0 8px 8px;
}
.col-product-card__quick-add .material-icons { font-size: 16px; }
.col-product-card:hover .col-product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}
.col-product-card__quick-add:hover { background: var(--color-primary); }

/* Card info */
.col-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.col-product-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-body-text);
}
.col-product-card__title a { transition: color var(--transition); }
.col-product-card__title a:hover { color: var(--color-primary); }

/* Stars */
.col-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.col-product-card__stars { display: flex; align-items: center; gap: 1px; }
.col-product-card__star { font-size: 14px; color: #f5a623; }
.col-product-card__star--empty { color: #ddd; }
.col-product-card__rating-count { font-size: 11px; color: #aaa; }

/* Price */
.col-product-card__price-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.col-product-card__price {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-body-text);
}
.col-product-card__price--sale { color: var(--color-body-text); }
.col-product-card__price--compare {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* =====================
   PAGINATION
   ===================== */
.col-pagination { margin-top: 48px; display: flex; justify-content: center; }
.col-pagination__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.col-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body-text);
  background: #fff;
  transition: all var(--transition);
  cursor: pointer;
}
.col-pagination__btn:hover:not(.is-current):not(.is-disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.col-pagination__btn.is-current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  cursor: default;
}
.col-pagination__btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.col-pagination__btn--arrow .material-icons { font-size: 18px; }
.col-pagination__item--ellipsis span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  font-size: 14px;
  color: #aaa;
}

/* =====================
   COLLECTION — RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .col-main__inner { grid-template-columns: 200px 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .col-main__inner { grid-template-columns: 1fr; }

  .col-sidebar {
    position: static;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0 16px;
    overflow: hidden;
  }
  .col-sidebar__mobile-toggle { display: flex; }
  .col-sidebar__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .col-sidebar__body.is-open { max-height: 1200px; }

  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .col-grid[data-view="list"] { grid-template-columns: 1fr; }
  .col-grid[data-view="list"] .col-product-card { grid-template-columns: 120px 1fr; }

  .col-toolbar { flex-direction: column; align-items: flex-start; }
  .col-toolbar__right { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .col-product-card__title { font-size: 14px; }
  .col-product-card__price { font-size: 14px; }
  .col-header__title { font-size: 28px; }
}

/* =====================
   COLLECTION — RTL
   ===================== */
[dir="rtl"] .col-header__inner { direction: rtl; text-align: right; }
[dir="rtl"] .col-header__breadcrumb { direction: rtl; }
[dir="rtl"] .col-header__title { text-align: right; }
[dir="rtl"] .col-header__description { text-align: right; }
/* breadcrumb list direction (covers both PDP and collection breadcrumbs) */
[dir="rtl"] .breadcrumb__separator .material-icons { transform: scaleX(-1); }

[dir="rtl"] .col-main__inner { direction: rtl; }

/* Sidebar */
[dir="rtl"] .col-filter__link {
  border-left: none;
  border-right: 2px solid transparent;
  padding: 6px 4px 6px 0;
  flex-direction: row-reverse;
}
[dir="rtl"] .col-filter__link:hover { border-right-color: var(--color-border); }
[dir="rtl"] .col-filter__link.is-active { border-right-color: var(--color-primary); }
[dir="rtl"] .col-filter__heading { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .col-filter__checkbox-label { flex-direction: row-reverse; }
[dir="rtl"] .col-filter__price-labels { flex-direction: row-reverse; }
[dir="rtl"] .col-sidebar__mobile-toggle { flex-direction: row-reverse; }
[dir="rtl"] .col-sidebar__mobile-toggle-arrow { margin-left: 0; margin-right: auto; }

/* Toolbar */
[dir="rtl"] .col-toolbar { flex-direction: row-reverse; }
[dir="rtl"] .col-toolbar__right { flex-direction: row-reverse; }
[dir="rtl"] .col-toolbar__sort { flex-direction: row-reverse; }
[dir="rtl"] .col-toolbar__sort-select { padding: 7px 12px 7px 32px; }
[dir="rtl"] .col-toolbar__sort-icon { right: auto; left: 8px; }
[dir="rtl"] .col-toolbar__count { text-align: right; }
/* On mobile toolbar stacks to column — keep RTL text alignment */
@media (max-width: 768px) {
  [dir="rtl"] .col-toolbar { flex-direction: column; align-items: flex-end; }
  [dir="rtl"] .col-toolbar__right { flex-direction: row-reverse; }
}

/* Active filters */
[dir="rtl"] .col-active-filters { flex-direction: row-reverse; }
[dir="rtl"] .col-active-filter { flex-direction: row-reverse; }

/* Product card badge — flip to right in RTL */
[dir="rtl"] .col-product-card__badge {
  left: auto;
  right: 12px;
}

/* Product card info */
[dir="rtl"] .col-product-card__info { text-align: right; direction: rtl; }
[dir="rtl"] .col-product-card__rating { flex-direction: row-reverse; }
[dir="rtl"] .col-product-card__price-row { flex-direction: row-reverse; }

/* List view RTL */
[dir="rtl"] .col-grid[data-view="list"] .col-product-card { direction: rtl; }

/* Pagination */
[dir="rtl"] .col-pagination__btn--arrow .material-icons { transform: scaleX(-1); }

/* ============================================
   PRODUCT DETAIL PAGE (PDP) — REDESIGN
   ============================================ */

/* --- Breadcrumb --- */
.pdp__breadcrumb { padding: 20px 0 8px; }
.breadcrumb__list { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.breadcrumb__item { font-family: 'Manrope', sans-serif; font-size: 12px; color: #888; }
.breadcrumb__item--current { color: var(--color-body-text); font-weight: 500; }
.breadcrumb__link { color: #888; transition: color var(--transition); }
.breadcrumb__link:hover { color: var(--color-primary); }
.breadcrumb__separator { display: flex; align-items: center; color: #ccc; }
.breadcrumb__separator .material-icons { font-size: 14px; }

/* --- PDP Section --- */
.pdp { padding: 0 0 60px; background: #fff; }

/* --- Main grid: gallery left, info right --- */
.pdp__grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 52px;
  align-items: start;
  padding-top: 20px;
}

/* =====================
   GALLERY
   ===================== */
.pdp-gallery { position: sticky; top: 150px; }

.pdp-gallery__main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f0eeeb;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}
.pdp-gallery__slide {
  display: none;
  width: 100%;
  height: 100%;
}
.pdp-gallery__slide.is-active { display: block; }
.pdp-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-gallery__slide--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.pdp-gallery__slide--placeholder .material-icons { font-size: 64px; }

/* Badge on main image */
.pdp-gallery__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  color: #fff;
  z-index: 3;
}
.pdp-gallery__badge--new { background: #1a1a2e; }
.pdp-gallery__badge--sale { background: #c0392b; }

/* Thumbnails */
.pdp-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-gallery__thumb {
  width: calc(25% - 7px);
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f0eeeb;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition);
}
.pdp-gallery__thumb:hover { border-color: #ccc; }
.pdp-gallery__thumb.is-active { border-color: var(--color-primary); }

/* =====================
   INFO PANEL
   ===================== */
.pdp-info { padding-top: 8px; }

.pdp-info__vendor {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* h1 — Manrope Light (300) as specified */
.pdp-info__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-body-text);
  letter-spacing: -0.01em;
}

/* Price + rating row */
.pdp-info__price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: none;
}
.pdp-info__price-wrap { display: flex; align-items: baseline; gap: 10px; }
.pdp-info__price {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-body-text);
}
.pdp-info__price--sale { color: var(--color-body-text); }
.pdp-info__price--compare {
  font-size: 15px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* Stars */
.pdp-info__rating { display: flex; align-items: center; gap: 6px; }
.pdp-info__stars { display: flex; gap: 1px; }
.pdp-star { font-size: 16px; color: #f5a623; }
.pdp-star--empty { color: #ddd; }
.pdp-info__rating-count { font-size: 12px; color: #888; text-decoration: underline; }
.pdp-info__rating-count:hover { color: var(--color-primary); }

/* Short description */
.pdp-info__short-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

/* Meta: SKU + availability */
.pdp-info__meta { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.pdp-info__meta-item { font-size: 13px; display: flex; align-items: center; gap: 6px; font-family: 'Manrope', sans-serif; }
.pdp-info__meta-label { color: #999; font-weight: 500; }
.pdp-info__meta-value { color: var(--color-body-text); font-weight: 500; }

.pdp-info__availability {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pdp-info__availability .material-icons { font-size: 14px; }
.pdp-info__availability--in { color: #2e7d32; }
.pdp-info__availability--out { color: #c0392b; }

/* Variant options */
.pdp-info__option { margin-bottom: 20px; }
.pdp-info__option-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pdp-info__option-selected {
  color: var(--color-body-text);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.pdp-info__option-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-info__option-btn {
  padding: 9px 20px;
  border: 1.5px solid #d8d8d8;
  border-radius: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body-text);
  background: #fff;
  transition: all var(--transition);
  cursor: pointer;
}
.pdp-info__option-btn:hover { border-color: #888; }
.pdp-info__option-btn.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* Qty + ATC row */
.pdp-info__qty-atc {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 18px;
}
.pdp-info__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #d8d8d8;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.pdp-info__qty-btn {
  width: 38px;
  height: 50px;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-body-text);
  background: #fff;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-info__qty-btn:hover { background: #f5f5f5; }
.pdp-info__qty-input {
  width: 46px;
  height: 50px;
  text-align: center;
  border: none;
  border-left: 1.5px solid #d8d8d8;
  border-right: 1.5px solid #d8d8d8;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  background: #fff;
}
.pdp-info__atc-btn {
  flex: 1;
  justify-content: center;
  gap: 8px;
  height: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 6px;
}
.pdp-info__atc-btn .material-icons { font-size: 18px; }
.pdp-info__atc-btn--full { width: 100%; justify-content: center; margin-bottom: 20px; height: 50px; border-radius: 6px; }

/* Delivery badge */
.pdp-info__delivery {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8f9fb;
  border-radius: 8px;
  margin-top: 4px;
  border: 1px solid #e4e8ef;
}
.pdp-info__delivery-icon { font-size: 22px; color: var(--color-primary); flex-shrink: 0; margin-top: 1px; }
.pdp-info__delivery-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--color-body-text);
}
.pdp-info__delivery-text p { font-size: 12px; color: #888; margin: 0; line-height: 1.5; font-family: 'Manrope', sans-serif; }

/* Trust badges */
.pdp-info__trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.pdp-info__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
}
.pdp-info__trust-item .material-icons { font-size: 16px; color: var(--color-primary); }

/* =====================
   PRODUCT TABS
   ===================== */
.pdp-tabs {
  padding: 48px 0 64px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.pdp-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-tabs__nav::-webkit-scrollbar { display: none; }

.pdp-tabs__nav-btn {
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
}
.pdp-tabs__nav-btn:hover { color: var(--color-body-text); }
.pdp-tabs__nav-btn.is-active {
  color: var(--color-body-text);
  border-bottom-color: var(--color-body-text);
  font-weight: 600;
}

.pdp-tabs__panel { display: none; }
.pdp-tabs__panel.is-active { display: block; }

.pdp-tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pdp-tabs__panel-inner:has(.pdp-tabs__panel-image:empty),
.pdp-tabs__panel-inner:not(:has(.pdp-tabs__panel-image)) {
  grid-template-columns: 1fr;
  max-width: 780px;
}

/* h2 — Manrope Light (300) as specified */
.pdp-tabs__panel-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--color-body-text);
  letter-spacing: -0.01em;
}
.pdp-tabs__panel-body {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.pdp-tabs__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.pdp-tabs__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}
.pdp-tabs__bullet-icon {
  font-size: 8px;
  color: var(--color-primary);
  margin-top: 5px;
  flex-shrink: 0;
}

.pdp-tabs__panel-image {
  border-radius: 12px;
  overflow: hidden;
}
.pdp-tabs__panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

/* =====================
   RELATED PRODUCTS
   ===================== */
.pdp-related {
  padding: 52px 0 68px;
  background: #f7f7f5;
}

.pdp-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

/* eyebrow text */
.pdp-related__header .section-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

/* h2 — Manrope Light (300) */
.pdp-related__heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-body-text);
  letter-spacing: -0.01em;
}
.pdp-related__nav { display: flex; gap: 8px; align-items: center; }
.pdp-related__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-body-text);
  background: #fff;
  transition: all var(--transition);
}
.pdp-related__arrow:hover {
  background: var(--color-body-text);
  color: #fff;
  border-color: var(--color-body-text);
}
.pdp-related__arrow .material-icons { font-size: 18px; }

.pdp-related__slider-wrap { overflow: hidden; }
.pdp-related__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.pdp-related__slider::-webkit-scrollbar { display: none; }

.pdp-related__card {
  flex: 0 0 calc(25% - 15px);
  min-width: 200px;
  scroll-snap-align: start;
}
.pdp-related__card-link { display: block; }
.pdp-related__card-image {
  border-radius: 10px;
  overflow: hidden;
  background: #ebebeb;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}
.pdp-related__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pdp-related__card:hover .pdp-related__card-image img { transform: scale(1.04); }
.pdp-related__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.pdp-related__card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--color-body-text);
  line-height: 1.35;
  transition: color var(--transition);
}
.pdp-related__card:hover .pdp-related__card-title { color: var(--color-primary); }
.pdp-related__card-price {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-body-text);
}

/* =====================
   PDP — RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .pdp__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-gallery { position: static; }
  .pdp-tabs__panel-inner { grid-template-columns: 1fr; gap: 32px; }
  .pdp-related__card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .pdp-info__qty-atc { gap: 10px; }
  .pdp-info__atc-btn { font-size: 12px; }
  .pdp-tabs__nav-btn { padding: 12px 18px; }
  .pdp-related__card { flex: 0 0 calc(50% - 10px); }
  .pdp-related__header { gap: 12px; }
}

@media (max-width: 600px) {
  .pdp__grid { padding-top: 12px; }
  .pdp-gallery__thumb { width: calc(25% - 7px); }
  .pdp-info__qty-atc { flex-direction: column; align-items: stretch; }
  .pdp-info__qty { width: fit-content; }
  .pdp-info__atc-btn { width: 100%; height: 48px; }
  .pdp-info__atc-btn--full { width: 100%; }
  .pdp-tabs__nav-btn { padding: 10px 14px; font-size: 12px; }
  .pdp-related__card { flex: 0 0 calc(50% - 10px); }
  .pdp-related__header { flex-direction: column; align-items: flex-start; }
  .pdp-related__nav { align-self: flex-start; }
}

@media (max-width: 480px) {
  .pdp-info__title { font-size: 26px; }
  .pdp-info__price { font-size: 22px; }
  .pdp-gallery__thumbs { gap: 6px; }
  .pdp-gallery__thumb { width: calc(25% - 5px); }
  .pdp-related__card { flex: 0 0 calc(50% - 10px); min-width: 140px; }
  .pdp-tabs__panel-heading { font-size: 20px; }
}

/* =====================
   PDP — RTL
   ===================== */
[dir="rtl"] .pdp__grid { direction: rtl; }

/* Gallery */
[dir="rtl"] .pdp-gallery__badge {
  left: auto;
  right: 14px;
}

/* Info panel */
[dir="rtl"] .pdp-info { text-align: right; direction: rtl; }
[dir="rtl"] .pdp-info__vendor { text-align: right; }
[dir="rtl"] .pdp-info__title { text-align: right; }
[dir="rtl"] .pdp-info__short-desc { text-align: right; }
[dir="rtl"] .pdp-info__meta { align-items: flex-end; direction: rtl; }
[dir="rtl"] .pdp-info__option-label { text-align: right; }
[dir="rtl"] .pdp-info__qty-input {
  border-left: 1.5px solid #d8d8d8;
  border-right: 1.5px solid #d8d8d8;
}
[dir="rtl"] .pdp-info__delivery { text-align: right; }
[dir="rtl"] .pdp-info__delivery-text strong { text-align: right; }

/* On mobile */
@media (max-width: 600px) {
  [dir="rtl"] .pdp-info__qty-atc { flex-direction: column; align-items: stretch; }
  [dir="rtl"] .pdp-info__qty { width: fit-content; }
}

/* Tabs */
[dir="rtl"] .pdp-tabs__panel-inner { direction: rtl; }
[dir="rtl"] .pdp-tabs__panel-heading { text-align: right; }
[dir="rtl"] .pdp-tabs__panel-body { text-align: right; }
[dir="rtl"] .pdp-tabs__bullets { direction: rtl; }
[dir="rtl"] .pdp-tabs__bullets li { text-align: right; }
[dir="rtl"] .pdp-tabs__bullet-icon { margin-top: 5px; }

/* Related products */
[dir="rtl"] .pdp-related__header { flex-direction: row-reverse; }
[dir="rtl"] .pdp-related__nav { flex-direction: row; }
[dir="rtl"] .pdp-related__arrow--prev .material-icons { transform: scaleX(-1); }
[dir="rtl"] .pdp-related__arrow--next .material-icons { transform: scaleX(-1); }
[dir="rtl"] .pdp-related__card-title { text-align: right; }
[dir="rtl"] .pdp-related__card-price { text-align: right; }
[dir="rtl"] .pdp-related__card-info { text-align: right; direction: rtl; }
/* RTL related header stacks correctly on mobile */
@media (max-width: 600px) {
  [dir="rtl"] .pdp-related__header { flex-direction: column; align-items: flex-end; }
}

/* ============================================
   CART PAGE — REDESIGN
   ============================================ */

/* --- Page header --- */
.cart { padding: 40px 0 80px; }

.cart__header { margin-bottom: 36px; }
.cart__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}
.cart__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-body-text);
  margin-bottom: 16px;
}
.cart__continue-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.cart__continue-link .material-icons { font-size: 16px; transition: transform var(--transition); }
.cart__continue-link:hover .material-icons { transform: translateX(-3px); }

/* --- Body: items + summary --- */
.cart__body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* =====================
   CART ROWS (items)
   ===================== */
.cart__items { display: flex; flex-direction: column; }

.cart-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
  transition: opacity 0.3s, transform 0.3s;
}
.cart-row:first-child { border-top: 1px solid var(--color-border); }

/* Image */
.cart-row__image {
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f3;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.cart-row__image a { display: block; width: 100%; height: 100%; }
.cart-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cart-row:hover .cart-row__image img { transform: scale(1.03); }
.cart-row__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.cart-row__image-placeholder .material-icons { font-size: 40px; }

/* Details */
.cart-row__details { position: relative; padding-right: 36px; }

.cart-row__remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  border-radius: 50%;
  transition: all var(--transition);
}
.cart-row__remove .material-icons { font-size: 18px; }
.cart-row__remove:hover { color: #c0392b; background: #fef0f0; }

.cart-row__vendor {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.cart-row__title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cart-row__title a { color: var(--color-body-text); transition: color var(--transition); }
.cart-row__title a:hover { color: var(--color-primary); }
.cart-row__variant {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.cart-row__desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 360px;
}

/* Qty stepper + price */
.cart-row__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.cart-row__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.cart-row__qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-body-text);
  background: #fff;
  transition: background var(--transition);
}
.cart-row__qty-btn .material-icons { font-size: 16px; }
.cart-row__qty-btn:hover { background: #f5f5f5; }
.cart-row__qty-value {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  background: #fff;
}
.cart-row__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-body-text);
  white-space: nowrap;
}

/* =====================
   SUMMARY PANEL
   ===================== */
.cart-summary {
  position: sticky;
  top: 88px;
  background: #f8f8f6;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--color-border);
}
.cart-summary__title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Summary lines */
.cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.cart-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-body-text);
}
.cart-summary__line-value { color: var(--color-muted); }

/* Total */
.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.cart-summary__total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-body-text);
}
.cart-summary__total-value {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--color-primary);
}

/* Checkout button */
.cart-summary__checkout-btn {
  width: 100%;
  justify-content: center;
  height: 52px;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.cart-summary__checkout-note {
  text-align: center;
  font-size: 11px;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 20px;
}

/* Promo code */
.cart-summary__promo { padding-top: 20px; border-top: 1px solid var(--color-border); }
.cart-summary__promo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cart-summary__promo-form {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.cart-summary__promo-input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-body-text);
}
.cart-summary__promo-input::placeholder { color: #bbb; }
.cart-summary__promo-btn {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: transparent;
  border-left: 1px solid var(--color-border);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.cart-summary__promo-btn:hover { background: var(--color-primary); color: #fff; }
.cart-summary__promo-msg {
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}
.cart-summary__promo-msg--success { color: #2e7d32; }
.cart-summary__promo-msg--error { color: #c0392b; }

/* Order note */
.cart-summary__note { padding-top: 20px; border-top: 1px solid var(--color-border); margin-top: 20px; }
.cart-summary__note-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-body-text);
}
.cart-summary__note-input {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition);
}
.cart-summary__note-input:focus { border-color: var(--color-primary); }

/* =====================
   EMPTY CART
   ===================== */
.cart__empty {
  text-align: center;
  padding: 80px 0;
  max-width: 400px;
  margin: 0 auto;
}
.cart__empty-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cart__empty-icon-wrap .material-icons { font-size: 40px; color: #ccc; }
.cart__empty-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 12px;
}
.cart__empty-text { font-size: 15px; color: var(--color-muted); margin-bottom: 28px; }

/* =====================
   TRUST BADGE STRIP
   ===================== */
.cart-trust { padding: 36px 0; border-top: 1px solid var(--color-border); }
.cart-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.cart-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.cart-trust__icon { font-size: 32px; color: var(--color-primary); }
.cart-trust__item img { width: 36px; height: 36px; object-fit: contain; }
.cart-trust__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-body-text);
}

/* =====================
   CART — RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .cart__body { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart__title { font-size: clamp(32px, 8vw, 56px); font-family: 'Manrope', sans-serif; font-weight: 300; }
}

@media (max-width: 600px) {
  .cart-row { grid-template-columns: 90px 1fr; gap: 16px; padding: 20px 0; }
  .cart-row__title { font-size: 16px; font-family: 'Manrope', sans-serif; font-weight: 300; }
  .cart-row__price { font-size: 16px; }
  .cart-summary__total-value { font-size: 26px; font-family: 'Manrope', sans-serif; font-weight: 300; }
  .cart-trust__inner { gap: 32px; }
  .cart__title { font-size: 32px; font-family: 'Manrope', sans-serif; font-weight: 300; }
}

/* =====================
   CART — RTL
   ===================== */
[dir="rtl"] .cart__header { direction: rtl; }
[dir="rtl"] .cart__continue-link { flex-direction: row-reverse; }
[dir="rtl"] .cart__continue-link .material-icons { transform: scaleX(-1); }
[dir="rtl"] .cart__continue-link:hover .material-icons { transform: scaleX(-1) translateX(-3px); }

[dir="rtl"] .cart__body { direction: rtl; }

/* Cart rows */
[dir="rtl"] .cart-row__details {
  padding-right: 0;
  padding-left: 36px;
}
[dir="rtl"] .cart-row__remove {
  right: auto;
  left: 0;
}
[dir="rtl"] .cart-row__bottom { flex-direction: row-reverse; }
[dir="rtl"] .cart-row__qty { flex-direction: row-reverse; }
[dir="rtl"] .cart-row__qty-value {
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
}

/* Summary */
[dir="rtl"] .cart-summary { direction: rtl; text-align: right; }
[dir="rtl"] .cart-summary__line { flex-direction: row-reverse; }
[dir="rtl"] .cart-summary__total { flex-direction: row-reverse; }
[dir="rtl"] .cart-summary__promo-form { flex-direction: row-reverse; }
[dir="rtl"] .cart-summary__promo-input { text-align: right; }
[dir="rtl"] .cart-summary__promo-btn {
  border-left: none;
  border-right: 1px solid var(--color-border);
}
[dir="rtl"] .cart-summary__checkout-note { direction: rtl; }

/* Trust strip */
[dir="rtl"] .cart-trust__inner { flex-direction: row-reverse; }

/* Empty cart */
[dir="rtl"] .cart__empty { direction: rtl; }
[dir="rtl"] .cart__empty-title { direction: rtl; }
[dir="rtl"] .cart__empty-text { direction: rtl; }

/* Order note */
[dir="rtl"] .cart-summary__note-label { text-align: right; }
[dir="rtl"] .cart-summary__note-input { text-align: right; direction: rtl; }


/* ============================================
   404 PAGE
   ============================================ */

.error-404 {
  position: relative;
  min-height: calc(100vh - 134px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
  background: var(--color-body-bg);
}

/* Soft decorative blobs */
.error-404__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.error-404__blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(74,74,138,0.08) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}
.error-404__blob--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(160,160,208,0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
}

.error-404__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- Left: content ---- */
.error-404__eyebrow {
  display: block;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.error-404__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-body-text);
  margin-bottom: 20px;
}
.error-404__heading em {
  font-style: italic;
  color: var(--color-primary);
}

.error-404__body {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Search */
.error-404__search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  padding: 0 0 0 14px;
  background: #f7f7f7;
  margin-bottom: 28px;
  max-width: 480px;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}
.error-404__search:focus-within {
  border-color: var(--color-primary);
  background: #fff;
}
.error-404__search-icon {
  font-size: 18px;
  color: #aaa;
  flex-shrink: 0;
  pointer-events: none;
  margin-right: 8px;
}
.error-404__search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-body-text);
  padding: 13px 0;
  min-width: 0;
}
.error-404__search-input::placeholder { color: #aaa; }
.error-404__search-btn {
  border-radius: 0 4px 4px 0;
  padding: 14px 20px;
  font-size: 12px;
  border: none;
  flex-shrink: 0;
  align-self: stretch;
}

/* Buttons */
.error-404__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Quick links */
.error-404__quick-links {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.error-404__quick-links-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.error-404__quick-links-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-404__quick-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
  padding-bottom: 1px;
}
.error-404__quick-link:hover { border-bottom-color: var(--color-primary); }
.error-404__quick-links-list li:not(:last-child) .error-404__quick-link::after {
  content: '·';
  margin-left: 6px;
  color: var(--color-border);
  border: none;
}

/* ---- Right: 404 graphic ---- */
.error-404__graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  user-select: none;
}

.error-404__number {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.error-404__digit {
  font-family: var(--font-heading);
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 300;
  color: var(--color-body-text);
  letter-spacing: -0.04em;
  opacity: 0.08;
}

.error-404__zero {
  width: clamp(96px, 11.2vw, 160px);
  height: clamp(96px, 11.2vw, 160px);
  border-radius: 50%;
  border: 6px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 0 0 12px rgba(74,74,138,0.06),
    0 0 0 24px rgba(74,74,138,0.03);
}
.error-404__zero-inner {
  font-family: var(--font-heading);
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.error-404__graphic-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .error-404__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .error-404__content { order: 2; }
  .error-404__graphic { order: 1; }
  .error-404__eyebrow,
  .error-404__heading,
  .error-404__body { margin-left: auto; margin-right: auto; }
  .error-404__search { margin-left: auto; margin-right: auto; }
  .error-404__buttons { justify-content: center; }
  .error-404__quick-links { justify-content: center; }
}

@media (max-width: 480px) {
  .error-404 { padding: 48px 0; }
  .error-404__buttons { flex-direction: column; align-items: stretch; }
  .error-404__buttons .btn { justify-content: center; }
  .error-404__search { max-width: 100%; }
  .error-404__digit { font-size: 80px; }
  .error-404__zero {
    width: 64px;
    height: 64px;
    border-width: 4px;
  }
  .error-404__zero-inner { font-size: 40px; }
}

/* =====================
   404 — RTL
   ===================== */
[dir="rtl"] .error-404 { direction: rtl; }
[dir="rtl"] .error-404__inner { direction: rtl; }
[dir="rtl"] .error-404__eyebrow { text-align: right; letter-spacing: 0; }
[dir="rtl"] .error-404__heading { text-align: right; }
[dir="rtl"] .error-404__body { text-align: right; }

/* Search bar */
[dir="rtl"] .error-404__search { flex-direction: row-reverse; padding: 0 14px 0 0; }
[dir="rtl"] .error-404__search-icon { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .error-404__search-input { text-align: right; }
[dir="rtl"] .error-404__search-btn { border-radius: 4px 0 0 4px; }

/* Buttons + links */
[dir="rtl"] .error-404__buttons { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .error-404__quick-links { flex-direction: row-reverse; }
[dir="rtl"] .error-404__quick-links-label { text-align: right; letter-spacing: 0; }
[dir="rtl"] .error-404__quick-links-list { flex-direction: row-reverse; }
[dir="rtl"] .error-404__quick-links-list li:not(:last-child) .error-404__quick-link::after {
  content: '·';
  margin-left: 0;
  margin-right: 6px;
}

/* Graphic — stays on its side, no flip needed */
[dir="rtl"] .error-404__graphic-caption { letter-spacing: 0; direction: rtl; }

/* On mobile (stacked), reset row-reverse to column for buttons */
@media (max-width: 900px) {
  [dir="rtl"] .error-404__inner { text-align: center; }
  [dir="rtl"] .error-404__eyebrow,
  [dir="rtl"] .error-404__heading,
  [dir="rtl"] .error-404__body { text-align: center; margin-left: auto; margin-right: auto; }
  [dir="rtl"] .error-404__buttons { flex-direction: row-reverse; justify-content: center; }
  [dir="rtl"] .error-404__quick-links { justify-content: center; }
  [dir="rtl"] .error-404__search { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  [dir="rtl"] .error-404__buttons { flex-direction: column; align-items: stretch; }
}


/* ============================================
   COLLECTION PAGE — REDESIGN
   ============================================ */

/* --- Header --- */
.col-header {
  background: #f5f5f3;
}
.col-header__inner {
  padding-top: 28px;
  padding-bottom: 24px;
}
.col-header__breadcrumb { margin-bottom: 10px; }
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item,
.breadcrumb__separator {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb__link {
  color: #888;
  transition: color var(--transition);
}
.breadcrumb__link:hover { color: var(--color-primary); }
.breadcrumb__item--current { color: var(--color-primary); font-weight: 600; }

.col-header__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: #1a1c1c;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.col-header__description {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  max-width: 480px;
}
.col-header__description p { margin: 0 0 8px; }
.col-header__description p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.col-main { background: #ffffff; padding: 32px 0 64px; }
.col-main__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Sidebar --- */
.col-sidebar { position: sticky; top: 150px; }
.col-sidebar__mobile-toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-body-text);
  border-bottom: 1px solid var(--color-border);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.col-sidebar__mobile-toggle .material-icons { font-size: 20px; }
.col-sidebar__mobile-toggle-arrow { margin-left: auto; transition: transform 0.25s ease; }
.col-sidebar__body.is-open .col-sidebar__mobile-toggle-arrow,
.col-sidebar__mobile-toggle[aria-expanded='true'] .col-sidebar__mobile-toggle-arrow { transform: rotate(180deg); }

/* Filter group */
.col-filter {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
  margin-bottom: 0;
}
.col-filter__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1c1c;
}
.col-filter__icon { font-size: 18px; color: #888; transition: transform 0.25s ease; }
.col-filter__heading[aria-expanded='false'] .col-filter__icon { transform: rotate(0deg); }
.col-filter__heading[aria-expanded='true'] .col-filter__icon { transform: rotate(180deg); }

.col-filter__body { padding-bottom: 14px; }
.col-filter__body[hidden] { display: none; }

.col-filter__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }

/* Category links */
.col-filter__item { margin: 0; }
.col-filter__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 5px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
  transition: color var(--transition);
}
.col-filter__link:hover { color: var(--color-primary); }
.col-filter__link.is-active {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 3px;
}
.col-filter__count { font-size: 12px; color: #aaa; margin-left: 4px; }
[dir="rtl"] .col-filter__count { margin-left: 0; margin-right: 4px; }
.col-filter__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #444;
}
.col-filter__checkbox-label:hover { color: #1a1c1c; }
.col-filter__checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.col-filter__checkbox-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.col-filter__checkbox:checked + .col-filter__checkbox-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.col-filter__checkbox:checked + .col-filter__checkbox-box::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* Price slider */
.col-filter__price-range { padding: 4px 0 8px; }
.col-filter__price-slider-wrap { position: relative; height: 24px; margin-bottom: 10px; }
.col-filter__price-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  transform: translateY(-50%);
}
.col-filter__price-fill {
  position: absolute;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
}
.col-filter__range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}
.col-filter__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: pointer;
  pointer-events: all;
}
.col-filter__range::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  cursor: pointer;
  pointer-events: all;
}
.col-filter__price-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* --- Main content area --- */
.col-content { min-width: 0; }

/* Collection description + YouTube grid */
.col-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
}
.col-desc h1, .col-desc h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  color: #1a1c1c;
  margin-bottom: 12px;
}
.col-desc p { margin-bottom: 10px; }
.col-desc__video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.col-desc__video-wrap {
  flex: 1 1 calc(50% - 8px);
  min-width: 280px;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.col-desc__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Toolbar --- */
.col-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  gap: 12px;
  flex-wrap: wrap;
}
.col-toolbar__count {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #888;
}
.col-toolbar__right { display: flex; align-items: center; gap: 16px; }
.col-toolbar__view-toggle { display: flex; gap: 4px; }
.col-toolbar__view-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #888;
  transition: all var(--transition);
}
.col-toolbar__view-btn.is-active,
.col-toolbar__view-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.col-toolbar__view-btn .material-icons { font-size: 18px; }

.col-toolbar__sort { display: flex; align-items: center; gap: 8px; }
.col-toolbar__sort-label {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}
.col-toolbar__sort-select-wrap { position: relative; display: flex; align-items: center; }
.col-toolbar__sort-select {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1c1c;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 7px 32px 7px 12px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 140px;
}
.col-toolbar__sort-select:focus { outline: none; border-color: var(--color-primary); }
.col-toolbar__sort-icon {
  position: absolute;
  right: 8px;
  font-size: 18px;
  color: #888;
  pointer-events: none;
}

/* Active filter tags */
.col-active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.col-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: #f0f0f8;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  transition: background var(--transition);
}
.col-active-filter:hover { background: #e4e4f5; }
.col-active-filter .material-icons { font-size: 14px; }
.col-active-filter--clear { background: transparent; color: #888; border: 1px solid var(--color-border); }
.col-active-filter--clear:hover { background: #f5f5f5; color: #1a1c1c; }

/* --- Product Grid --- */
.col-grid {
  display: grid;
  grid-template-columns: repeat(var(--col-cols, 3), 1fr);
  gap: 24px 20px;
}
.col-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #888;
}

/* Product card */
.col-product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.col-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.col-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f5f3;
  aspect-ratio: 1 / 1;
}
.col-product-card__image-link { display: block; width: 100%; height: 100%; }
.col-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity var(--transition);
}
.col-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.col-product-card.has-hover-image:hover .col-product-card__img--hover { opacity: 1; }
.col-product-card.has-hover-image:hover .col-product-card__img--primary { opacity: 0; }
.col-product-card:hover .col-product-card__img { transform: scale(1.03); }
.col-product-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
}
.col-product-card__img-placeholder .material-icons { font-size: 48px; }

/* Badge */
.col-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.col-product-card__badge--new { background: #1a1a2e; }
.col-product-card__badge--sale { background: #c0392b; }
.col-product-card__badge--best { background: var(--color-primary); }

/* Quick add */
.col-product-card__quick-add {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1a1c1c;
  opacity: 0;
  transition: all var(--transition);
  z-index: 3;
  border: none;
  cursor: pointer;
}
.col-product-card:hover .col-product-card__quick-add { opacity: 1; transform: translateX(-50%) translateY(0); }
.col-product-card__quick-add:hover { background: var(--color-primary); color: #fff; }
.col-product-card__quick-add .material-icons { font-size: 16px; }

/* Card info */
.col-product-card__info { padding: 14px 14px 16px; }
.col-product-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px;
  color: #1a1c1c;
}
.col-product-card__title a { color: inherit; transition: color var(--transition); }
.col-product-card__title a:hover { color: var(--color-primary); }

/* Stars */
.col-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.col-product-card__stars { display: flex; gap: 1px; }
.col-product-card__star { font-size: 13px !important; color: #f5a623; }
.col-product-card__star--empty { color: #ddd; }
.col-product-card__rating-count {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #888;
}

/* Price */
.col-product-card__price-row { display: flex; align-items: center; gap: 8px; }
.col-product-card__price {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}
.col-product-card__price--sale { color: var(--color-primary); }
.col-product-card__price--compare {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* --- Pagination --- */
.col-pagination { margin-top: 48px; }
.col-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.col-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #fff;
  transition: all var(--transition);
  text-decoration: none;
}
.col-pagination__btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.col-pagination__btn.is-current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.col-pagination__btn--arrow { color: #888; }
.col-pagination__btn--arrow.is-disabled { opacity: 0.35; pointer-events: none; }
.col-pagination__item--ellipsis span {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: #888;
}

/* --- Responsive Redesign Overrides --- */
@media (max-width: 768px) {
  .col-main__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .col-sidebar {
    position: static;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0 16px;
    overflow: hidden;
  }
  .col-sidebar__mobile-toggle {
    display: flex;
  }
  .col-sidebar__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .col-sidebar__body.is-open {
    max-height: 1500px;
    padding-bottom: 20px;
  }
  .col-sidebar__body.is-open + .col-sidebar__mobile-toggle {
    border-bottom-color: transparent;
  }
  .col-grid:not([data-view="list"]) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 12px;
  }
}

@media (max-width: 400px) {
  .col-grid:not([data-view="list"]) { grid-template-columns: 1fr !important; }
}

/* ============================================
   PAGE CONTENT — EXTENDED STYLES
   ============================================ */

/* Breadcrumb inside page-content */
.page-content__breadcrumb { margin-bottom: 20px; }

/* Responsive */
@media (max-width: 768px) {
  .page-content { padding: 40px 0 60px; }
  .page-content__title { font-size: 28px; }
}

/* RTL */
[dir="rtl"] .page-content__inner { text-align: right; direction: rtl; }
[dir="rtl"] .page-content__title { text-align: right; }
[dir="rtl"] .page-content__body { text-align: right; }

/* ============================================
   RESPONSIVE & RTL — REMAINING FIXES
   ============================================ */

/* ---- Announcement bar — RTL letter-spacing reset ---- */
[dir="rtl"] .announcement-bar__text { letter-spacing: 0; }

/* ---- Logo bar — border flip for RTL ---- */
/* In LTR items have border-right separators; in RTL flip to border-left */
[dir="rtl"] .logo-bar__logo-item {
  border-right: none;
  border-left: 1px solid var(--color-border);
}
[dir="rtl"] .logo-bar__logo-item:last-child { border-left: none; }
/* Logo heading text direction */
[dir="rtl"] .logo-bar__heading { direction: rtl; letter-spacing: 0; }

/* ---- Featured collections — RTL view-all link alignment ---- */
[dir="rtl"] .featured-collections__view-all { text-align: left; }

/* ---- Best sellers — RTL product card vendor text ---- */
[dir="rtl"] .product-card__vendor { text-align: right; letter-spacing: 0; }
[dir="rtl"] .product-card__title { text-align: right; }
[dir="rtl"] .product-card__price { text-align: right; }
[dir="rtl"] .product-card__info { direction: rtl; }

/* ---- Brand logos — RTL heading alignment ---- */
[dir="rtl"] .brand-logos__header,
[dir="rtl"] .logo-bar__header { direction: rtl; }
[dir="rtl"] .brand-logos__header .section-eyebrow,
[dir="rtl"] .logo-bar__header .section-eyebrow { letter-spacing: 0; text-align: center; }
[dir="rtl"] .brand-logos__header .section-heading,
[dir="rtl"] .logo-bar__header .section-heading { text-align: center; }

/* ---- Collection header — mobile responsive ---- */
@media (max-width: 480px) {
  .col-header__title { font-size: 24px; }
  .col-header__description { font-size: 13px; }
}

/* ---- Collection header — RTL ---- */
/* (These supplement the existing col-header RTL rules) */
[dir="rtl"] .col-header__description { max-width: none; }

/* ---- Collection main — RTL col-desc video grid ---- */
[dir="rtl"] .col-desc__video-grid { direction: rtl; }

/* ---- Product tabs — mobile: single column always ---- */
@media (max-width: 600px) {
  .pdp-tabs__panel-inner { grid-template-columns: 1fr !important; gap: 24px; }
}

/* ---- Product related — mobile: 2 cards per row minimum ---- */
@media (max-width: 360px) {
  .pdp-related__card { flex: 0 0 calc(100% - 10px); min-width: 0; }
}

/* ---- Cart — mobile: summary full-width, note field usable ---- */
@media (max-width: 480px) {
  .cart { padding: 28px 0 60px; }
  .cart__header { margin-bottom: 24px; }
  .cart-summary__checkout-btn { height: 48px; }
  .cart__empty { padding: 60px 0; }
}

/* ---- Cart — RTL: vendor text in cart rows ---- */
[dir="rtl"] .cart-row__vendor { text-align: right; letter-spacing: 0; direction: rtl; }
[dir="rtl"] .cart-row__title { text-align: right; direction: rtl; }
[dir="rtl"] .cart-row__variant { text-align: right; direction: rtl; }
[dir="rtl"] .cart-row__desc { text-align: right; direction: rtl; }

/* ---- 404 — extra small mobile ---- */
@media (max-width: 360px) {
  .error-404__search { padding: 0 10px 0 0; }
  [dir="rtl"] .error-404__search { padding: 0 0 0 10px; }
  .error-404__heading { font-size: 28px; }
}

/* ---- Page content — mobile ---- */
@media (max-width: 480px) {
  .page-content { padding: 32px 0 48px; }
}

/* ---- Gift card page — RTL ---- */
[dir="rtl"] .gc-page { direction: rtl; }
[dir="rtl"] .gc-card__hero { direction: rtl; }
[dir="rtl"] .gc-card__eyebrow { letter-spacing: 0; }
[dir="rtl"] .gc-card__how-to { direction: rtl; text-align: right; }
[dir="rtl"] .gc-card__code-wrap { flex-direction: row-reverse; }
[dir="rtl"] .gc-card__code { text-align: right; direction: ltr; } /* keep code LTR */
[dir="rtl"] .gc-card__actions { direction: rtl; }
[dir="rtl"] .gc-card__actions .btn { flex-direction: row-reverse; }
[dir="rtl"] .gc-page__print-btn { flex-direction: row-reverse; }

/* ---- Hero slideshow — mobile content padding RTL (index page hero) ---- */
@media (max-width: 768px) {
  [dir="rtl"] .hero-slideshow__content--left,
  [dir="rtl"] .hero-slideshow__content--center,
  [dir="rtl"] .hero-slideshow__content--right {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  [dir="rtl"] .hero-slideshow__dots { left: 20px; right: auto; }
  [dir="rtl"] .hero-slideshow__arrow--prev { right: 62px; left: auto; }
  [dir="rtl"] .hero-slideshow__arrow--next { right: 16px; left: auto; }
}

/* ---- Footer — mobile RTL stacking ---- */
@media (max-width: 768px) {
  [dir="rtl"] .site-footer__main { direction: rtl; }
  [dir="rtl"] .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  [dir="rtl"] .site-footer__main { grid-template-columns: 1fr; }
  [dir="rtl"] .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Breadcrumbs — ensure separator always mirrors in RTL (catch-all) ---- */
[dir="rtl"] .breadcrumb__separator .material-icons { display: inline-block; transform: scaleX(-1); }

/* ---- RTE — list indentation RTL ---- */
[dir="rtl"] .rte ul { list-style-position: inside; padding-right: 0; }
[dir="rtl"] .rte ol { list-style-position: inside; padding-right: 0; }

/* ---- Buttons — icon order in RTL ---- */
[dir="rtl"] .btn { flex-direction: row-reverse; }
/* Exception: icon-only buttons (no text) should not reverse */
[dir="rtl"] .btn .material-icons:only-child { /* icon-only, keep as-is */ }

/* ---- Mobile nav — ensure icon row in footer is symmetric ---- */
@media (max-width: 768px) {
  [dir="rtl"] .mobile-nav__footer { flex-direction: row-reverse; }
  [dir="rtl"] .mobile-nav__footer-link { flex-direction: column; }
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-page { padding-bottom: 80px; background: #fff; }

.article-page__hero { overflow: hidden; max-height: 520px; }
.article-page__hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.article-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 36px;
}

.article-page__breadcrumb { margin-bottom: 24px; }

/* Tags */
.article-page__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.article-page__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  color: var(--color-primary);
  transition: all var(--transition);
}
.article-page__tag:hover { background: var(--color-primary); color: #fff; }

/* Title */
.article-page__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--color-body-text);
}

/* Meta row */
.article-page__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 36px;
}
.article-page__date,
.article-page__author,
.article-page__read-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
}
.article-page__date .material-icons,
.article-page__author .material-icons,
.article-page__read-time .material-icons { font-size: 14px; }

/* Body */
.article-page__body { margin-bottom: 48px; }
.article-page__body.rte { font-size: 16px; line-height: 1.85; }
.article-page__body.rte h2,
.article-page__body.rte h3 { font-family: var(--font-heading); font-weight: 400; margin: 36px 0 14px; }
.article-page__body.rte h2 { font-size: clamp(22px, 3vw, 34px); }
.article-page__body.rte h3 { font-size: clamp(18px, 2.5vw, 26px); }
.article-page__body.rte p { margin-bottom: 18px; }
.article-page__body.rte img { border-radius: 8px; margin: 24px 0; }
.article-page__body.rte blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 12px 24px;
  margin: 28px 0;
  font-style: italic;
  color: #555;
  background: #f8f8f8;
  border-radius: 0 4px 4px 0;
}

/* Share */
.article-page__share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 36px;
}
.article-page__share-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}
.article-page__share-links { display: flex; gap: 10px; }
.article-page__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-body-text);
  transition: all var(--transition);
}
.article-page__share-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* Prev / Next */
.article-page__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.article-page__nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body-text);
  transition: color var(--transition);
}
.article-page__nav-link:hover { color: var(--color-primary); }
.article-page__nav-link .material-icons { font-size: 18px; }

/* Back link */
.article-page__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.article-page__back-link:hover { gap: 10px; }
.article-page__back-link .material-icons { font-size: 16px; }

/* Article page — responsive */
@media (max-width: 768px) {
  .article-page__hero-image img { height: 280px; }
  .article-page__inner { padding-top: 24px; }
}
@media (max-width: 480px) {
  .article-page__hero-image img { height: 220px; }
  .article-page__meta { gap: 12px; }
  .article-page__nav { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Article page — RTL */
[dir="rtl"] .article-page__inner { direction: rtl; }
[dir="rtl"] .article-page__title { text-align: right; }
[dir="rtl"] .article-page__meta { flex-direction: row-reverse; }
[dir="rtl"] .article-page__date,
[dir="rtl"] .article-page__author,
[dir="rtl"] .article-page__read-time { flex-direction: row-reverse; }
[dir="rtl"] .article-page__tags { flex-direction: row-reverse; }
[dir="rtl"] .article-page__share { flex-direction: row-reverse; }
[dir="rtl"] .article-page__share-label { letter-spacing: 0; }
[dir="rtl"] .article-page__share-links { flex-direction: row-reverse; }
[dir="rtl"] .article-page__nav { flex-direction: row-reverse; }
[dir="rtl"] .article-page__nav-link--prev { flex-direction: row-reverse; }
[dir="rtl"] .article-page__nav-link--prev .material-icons { transform: scaleX(-1); }
[dir="rtl"] .article-page__nav-link--next { flex-direction: row-reverse; }
[dir="rtl"] .article-page__nav-link--next .material-icons { transform: scaleX(-1); }
[dir="rtl"] .article-page__back-link { flex-direction: row-reverse; }
[dir="rtl"] .article-page__back-link .material-icons { transform: scaleX(-1); }
[dir="rtl"] .article-page__body.rte { direction: rtl; text-align: right; }
[dir="rtl"] .article-page__body.rte blockquote {
  border-left: none;
  border-right: 3px solid var(--color-primary);
  border-radius: 4px 0 0 4px;
}


/* ============================================
   BLOG PAGE
   ============================================ */

.blog-page__header { margin-bottom: 40px; }
.blog-page__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--color-body-text);
}

/* Tag filter */
.blog-page__tag-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-page__tag-btn {
  display: inline-block;
  padding: 6px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-muted);
  transition: all var(--transition);
}
.blog-page__tag-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.blog-page__tag-btn.is-active { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }

/* Grid */
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(var(--blog-cols, 3), 1fr);
  gap: 32px 24px;
  margin-bottom: 48px;
}
.blog-page__empty { color: var(--color-muted); font-size: 16px; padding: 40px 0; text-align: center; }

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.10); }

.blog-card__image-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-card__image-wrap img { transform: scale(1.04); }

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
  transition: opacity var(--transition);
}
.blog-card__tag:hover { opacity: 0.7; }

.blog-card__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--color-body-text);
}
.blog-card__title a { transition: color var(--transition); }
.blog-card__title a:hover { color: var(--color-primary); }

.blog-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card__date,
.blog-card__author {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-muted);
  font-family: 'Manrope', sans-serif;
}

.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: auto;
  transition: gap var(--transition);
}
.blog-card__read-more:hover { gap: 8px; }
.blog-card__read-more .material-icons { font-size: 16px; }

/* Blog — responsive */
@media (max-width: 768px) {
  .blog-page__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}
@media (max-width: 480px) {
  .blog-page__grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-page__title { font-size: 32px; }
}

/* Blog — RTL */
[dir="rtl"] .blog-page__header { direction: rtl; text-align: right; }
[dir="rtl"] .blog-page__tag-filter { flex-direction: row-reverse; }
[dir="rtl"] .blog-card__body { direction: rtl; text-align: right; }
[dir="rtl"] .blog-card__meta { flex-direction: row-reverse; }
[dir="rtl"] .blog-card__read-more { flex-direction: row-reverse; }
[dir="rtl"] .blog-card__read-more .material-icons { transform: scaleX(-1); }
[dir="rtl"] .blog-card__tag { letter-spacing: 0; }

/* ============================================
   LIST COLLECTIONS PAGE
   ============================================ */

.list-collections__header { margin-bottom: 40px; }
.list-collections__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--color-body-text);
}
.list-collections__desc {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 520px;
}
.list-collections__empty { color: var(--color-muted); padding: 40px 0; text-align: center; }

/* Grid */
.list-collections__grid {
  display: grid;
  grid-template-columns: repeat(var(--lc-cols, 3), 1fr);
  gap: 20px;
}

/* Card */
.lc-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.lc-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebebeb;
}
.lc-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.lc-card:hover .lc-card__image-wrap img { transform: scale(1.04); }
.lc-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.lc-card__placeholder .material-icons { font-size: 48px; }
.lc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.lc-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 2;
}
.lc-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.lc-card__count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* List collections — responsive */
@media (max-width: 768px) {
  .list-collections__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .list-collections__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lc-card__title { font-size: 15px; }
  .list-collections__title { font-size: 28px; }
}

/* List collections — RTL */
[dir="rtl"] .list-collections__header { direction: rtl; text-align: right; }
[dir="rtl"] .list-collections__desc { text-align: right; }
[dir="rtl"] .lc-card__content { direction: rtl; text-align: right; }
[dir="rtl"] .lc-card__count { letter-spacing: 0; }

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-page__form-wrap { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.search-page__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--color-body-text);
}

.search-page__form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-page__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 0 14px;
  background: #f7f7f7;
  transition: border-color var(--transition), background var(--transition);
}
.search-page__input-wrap:focus-within {
  border-color: var(--color-primary);
  background: #fff;
}
.search-page__icon { font-size: 20px; color: #aaa; flex-shrink: 0; pointer-events: none; }
.search-page__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-body-text);
  padding: 13px 0;
  min-width: 0;
}
.search-page__input::placeholder { color: #aaa; }
.search-page__clear {
  display: flex;
  align-items: center;
  color: #aaa;
  transition: color var(--transition);
  flex-shrink: 0;
}
.search-page__clear:hover { color: var(--color-body-text); }
.search-page__clear .material-icons { font-size: 18px; }
.search-page__submit {
  height: 50px;
  flex-shrink: 0;
  white-space: nowrap;
}

.search-page__results-header { margin-bottom: 28px; }
.search-page__count {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
}
.search-page__count strong { color: var(--color-body-text); font-weight: 600; }
.search-page__suggestions-label { font-size: 14px; color: var(--color-muted); margin-top: 8px; }

/* Results grid — reuses col-product-card styles */
.search-page__grid {
  display: grid;
  grid-template-columns: repeat(var(--search-cols, 4), 1fr);
  gap: 28px 20px;
}

/* Article result card */
.search-article-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.search-article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.search-article-card__image-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.search-article-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.search-article-card:hover .search-article-card__image-wrap img { transform: scale(1.03); }
.search-article-card__body { padding: 16px; }
.search-article-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.search-article-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.search-article-card__title a:hover { color: var(--color-primary); }
.search-article-card__date { font-size: 11px; color: var(--color-muted); }

/* Page result card */
.search-page-card {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.search-page-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.search-page-card__title { font-family: var(--font-heading); font-size: 18px; font-weight: 400; }
.search-page-card__title a:hover { color: var(--color-primary); }

/* Search — responsive */
@media (max-width: 1024px) {
  .search-page__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .search-page__form { flex-direction: column; }
  .search-page__input-wrap { width: 100%; }
  .search-page__submit { width: 100%; justify-content: center; }
  .search-page__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
}
@media (max-width: 480px) {
  .search-page__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .search-page__title { font-size: 28px; }
  .search-page__form-wrap { margin-bottom: 32px; }
}

/* Search — RTL */
[dir="rtl"] .search-page__form-wrap { direction: rtl; }
[dir="rtl"] .search-page__title { text-align: right; }
[dir="rtl"] .search-page__form { flex-direction: row-reverse; }
[dir="rtl"] .search-page__input-wrap { flex-direction: row-reverse; }
[dir="rtl"] .search-page__input { text-align: right; }
[dir="rtl"] .search-page__results-header { direction: rtl; text-align: right; }
[dir="rtl"] .search-article-card__body { direction: rtl; text-align: right; }
[dir="rtl"] .search-article-card__type { letter-spacing: 0; }
[dir="rtl"] .search-page-card { direction: rtl; text-align: right; }
[dir="rtl"] .search-page-card__type { letter-spacing: 0; }
@media (max-width: 768px) {
  [dir="rtl"] .search-page__form { flex-direction: column; }
}

/* ============================================
   PASSWORD PAGE
   ============================================ */

.password-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.password-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.password-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.password-page__bg-overlay {
  position: absolute;
  inset: 0;
}
.password-page__bg--color { background: #1a1a2e; }

.password-page__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 24px;
  gap: 32px;
}

/* Logo */
.password-page__logo { text-align: center; }
.password-page__logo img { max-width: 160px; height: auto; display: inline-block; }
.password-page__shop-name {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Card */
.password-page__card {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 44px 44px 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
}

.password-page__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.password-page__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-body-text);
  margin-bottom: 14px;
}

.password-page__subtext {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.password-page__form {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.password-page__email-input {
  flex: 1;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: none;
  outline: none;
  background: #f7f7f7;
  color: var(--color-body-text);
  min-width: 0;
  transition: background var(--transition);
}
.password-page__email-input:focus { background: #fff; }
.password-page__email-input::placeholder { color: #aaa; }
.password-page__submit {
  border-radius: 0;
  padding: 13px 20px;
  font-size: 12px;
  flex-shrink: 0;
  height: auto;
  align-self: stretch;
}

.password-page__success {
  font-size: 13px;
  color: #2e7d32;
  font-weight: 500;
  margin-top: 8px;
}
.password-page__error {
  font-size: 13px;
  color: #c0392b;
  margin-top: 8px;
}

.password-page__login-hint {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 20px;
}
.password-page__login-link {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
}
.password-page__login-form { margin-top: 16px; }

/* Footer */
.password-page__footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.password-page__footer-text a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* Password — responsive */
@media (max-width: 480px) {
  .password-page__card { padding: 32px 24px 36px; }
  .password-page__form { flex-direction: column; border-radius: 8px; }
  .password-page__email-input { border-radius: 8px 8px 0 0; border-bottom: 1.5px solid var(--color-border); }
  .password-page__submit { border-radius: 0 0 8px 8px; width: 100%; justify-content: center; }
}

/* Password — RTL */
[dir="rtl"] .password-page__card { direction: rtl; }
[dir="rtl"] .password-page__eyebrow { letter-spacing: 0; }
[dir="rtl"] .password-page__form { flex-direction: row-reverse; }
[dir="rtl"] .password-page__email-input { text-align: right; }
[dir="rtl"] .password-page__submit { border-radius: 0; }
@media (max-width: 480px) {
  [dir="rtl"] .password-page__form { flex-direction: column; }
  [dir="rtl"] .password-page__email-input { border-radius: 8px 8px 0 0; }
}

/* ============================================
   CONTACT PAGE — FORM & LAYOUT
   ============================================ */

.contact-form-section {
  background-color: var(--color-body-bg);
}

.contact-form__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-form__inner .page-content__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 16px;
  color: #1a1a2e;
  text-align: center;
}

.contact-form__content {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-form__fields {
    grid-template-columns: 1fr;
  }
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-body-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.contact-form__label span {
  color: #c0392b;
  margin-left: 4px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background-color: #fafafa;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-body-text);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(74, 74, 138, 0.12);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aaa;
  font-family: var(--font-body);
  font-size: 14px;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit-wrap {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
}

.contact-form__submit {
  min-width: 160px;
  justify-content: center;
  font-weight: 600;
}

/* Status alerts */
.contact-form__status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form__status p {
  margin: 0;
  font-weight: 500;
}

.contact-form__status .material-icons {
  font-size: 20px;
  flex-shrink: 0;
}

.contact-form__status--success {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
}

.contact-form__status--errors {
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
  flex-direction: column;
}

.contact-form__status--errors p {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form__status--errors ul {
  margin: 0;
  padding-left: 20px;
}

/* --- Contact Page — RTL overrides --- */
[dir="rtl"] .contact-form__inner {
  direction: rtl;
}

[dir="rtl"] .contact-form__inner .page-content__title,
[dir="rtl"] .contact-form__content {
  text-align: center;
}

[dir="rtl"] .contact-form__label {
  text-align: right;
  justify-content: flex-start;
}

[dir="rtl"] .contact-form__label span {
  margin-left: 0;
  margin-right: 4px;
}

[dir="rtl"] .contact-form__input,
[dir="rtl"] .contact-form__textarea {
  text-align: right;
}

[dir="rtl"] .contact-form__submit-wrap {
  justify-content: flex-start;
}

[dir="rtl"] .contact-form__status {
  text-align: right;
}

[dir="rtl"] .contact-form__status--errors ul {
  padding-left: 0;
  padding-right: 20px;
}

/* Custom footer bottom widgets styling */
.site-footer__bottom-left-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__compliance-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__compliance-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-footer__compliance-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
[dir="rtl"] .site-footer__compliance-item {
  align-items: flex-end;
  text-align: right;
}
.compliance-label {
  opacity: 0.65;
  font-size: 10px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.05em;
  color: var(--color-body-text);
}
[dir="rtl"] .compliance-label {
  letter-spacing: 0;
}
.compliance-value {
  font-weight: 700;
  font-size: 12px;
  color: var(--color-body-text);
}
.site-footer__ksa-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-footer__payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer__payment-icons img {
  width: 48px;
  height: 30px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 4px 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
}

/* Language Switcher display classes */
.site-header__localization--desktop {
  display: inline-flex;
}
.site-header__localization--mobile {
  display: none !important;
}

.site-header__localization {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  position: relative;
}
.localization-toggle-btn {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: transparent;
  color: var(--color-body-text);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background-color var(--transition), border-color var(--transition);
  display: inline-block;
  text-align: center;
}
.localization-toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
}
.localization-toggle-btn:focus {
  outline: none;
}
/* RTL adjustment for margins */
[dir="rtl"] .site-header__localization {
  margin-right: 0;
  margin-left: 12px;
}

@media (max-width: 768px) {
  .site-header__localization--desktop {
    display: none !important;
  }
  .site-header__localization--mobile {
    display: inline-flex !important;
    align-items: center;
    margin-left: 8px;
    position: relative;
    z-index: 2;
  }
  [dir="rtl"] .site-header__localization--mobile {
    margin-left: 0;
    margin-right: 8px;
  }
  .localization-toggle-btn {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 16px;
  }
  /* On mobile, make header icon buttons slightly more compact to guarantee zero overlap */
  .site-header__icon-btn {
    width: 36px;
    height: 36px;
  }
  .site-header__icon-btn .material-icons-outlined {
    font-size: 20px;
  }
}

