/** Shopify CDN: Minification failed

Line 164:0 Unexpected "}"

**/
/* ============================================
   ELITE WELLNESS SPA SUPPLIES — THEME CSS
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

: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: 'Cormorant Garamond', Georgia, 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;
}

/* Non-homepage templates need padding-top to clear the fixed 134px header */
body:not(.template-index) main#main-content {
  padding-top: 134px;
}

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: 20px;
  right: 20px;
  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-scrolled {
  max-height: 75px;
  height: 75px;
  border-radius: 10px !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: 140px;
  height: auto;
  transition: width 0.45s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0 32px;
  height: 134px;
  transition: height 0.45s ease;
}
}

.site-header__logo { flex-shrink: 0; margin-right: 48px; }
.site-header__logo img {
  display: block;
  width: 245px;
  height: 92px;
  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: 0; align-items: center; }

.site-header__nav-item { position: relative; }
.site-header__nav-link {
  display: block;
  padding: 8px 14px;
  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__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
}
.site-header__nav-item:hover .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--color-body-text);
  transition: background var(--transition);
}
.site-header__dropdown-link:hover { background: #f5f5f5; }

.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;
  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;
  /* Side and bottom margins with rounded corners */
  margin: 0 20px 20px 20px;
  border-radius: 16px;
}

.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;
  padding: 6px 40px;
  border-right: 1px solid var(--color-border);
}
.logo-bar__logo-item:last-child { border-right: none; }
.logo-bar__logo-item img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  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(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 45%, transparent 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);
}
.product-card__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__image-hover { opacity: 1; }
.product-card:hover .product-card__image-wrap > img:first-child { opacity: 0; }

.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 { text-align: center; margin-bottom: 48px; }
.brand-logos__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 {
  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: #f3f4f4;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand-logos__item img {
  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 { opacity: 1; filter: grayscale(0); }
.brand-logos__name {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  color: #1a1c1c;
  transition: color var(--transition);
  text-align: center;
}
.brand-logos__item:hover .brand-logos__name { color: var(--color-primary); }

/* --- 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 { 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; }
  .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; }

  /* ---- 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-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 { 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; }
  .brand-logos__name { font-size: 14px; }

  /* ---- 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; }

/* ============================================
   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 { max-width: 800px; margin: 0 auto; }
.page-content__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 32px;
}
.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; }

/* ============================================
   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"] body,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select,
[dir="rtl"] button {
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0; /* Arabic doesn't use letter-spacing */
}

/* Headings keep a serif feel with Arabic-compatible fallback */
[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-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
  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 {
  letter-spacing: 0;
}

/* ---- Header ---- */
[dir="rtl"] .site-header__inner {
  flex-direction: row-reverse;
}

/* In RTL: logo on right, nav flows right-to-left, icons+search on left */
[dir="rtl"] .site-header__logo {
  margin-right: 0;
  margin-left: 48px;
}

/* Nav links RTL */
[dir="rtl"] .site-header__nav-list {
  flex-direction: row-reverse;
}

/* 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;
  flex-direction: row-reverse;
}

/* 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 form {
  flex-direction: row-reverse;
}
[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;
}

/* 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-reverse; }
[dir="rtl"] .mobile-nav__search input { text-align: right; }
[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;
}

/* ---- 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 ---- */
[dir="rtl"] .philosophy-quote__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .philosophy-quote__content { text-align: right; }
[dir="rtl"] .philosophy-quote__icon {
  transform: scaleX(-1); /* mirror the quote mark */
}

/* ---- 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-reverse;
}
[dir="rtl"] .site-footer__legal-links { flex-direction: row-reverse; }
[dir="rtl"] .site-footer__logo-text { flex-direction: row-reverse; }

/* ---- Collection Grid toolbar ---- */
[dir="rtl"] .collection-grid-section__toolbar {
  flex-direction: row-reverse;
}

/* ---- Product Page ---- */
[dir="rtl"] .product-main__inner {
  direction: rtl;
}
[dir="rtl"] .product-gallery__thumbs {
  flex-direction: row-reverse;
}
[dir="rtl"] .product-info__option-values {
  flex-direction: row-reverse;
}
[dir="rtl"] .product-info__qty-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .product-info__qty {
  flex-direction: row-reverse;
}
[dir="rtl"] .product-info__qty-input {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
[dir="rtl"] .product-info__price {
  flex-direction: row-reverse;
}

/* ---- 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;
}

/* ---- Pagination ---- */
[dir="rtl"] .pagination {
  flex-direction: row-reverse;
}

/* ---- 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
   ============================================ */

/* --- Collection Header --- */
.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 */
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb__item { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #888; }
.breadcrumb__link { color: #888; transition: color var(--transition); }
.breadcrumb__link:hover { color: var(--color-body-text); }
.breadcrumb__separator .material-icons { font-size: 14px; color: #bbb; vertical-align: middle; }
.breadcrumb__item--current { color: var(--color-body-text); font-weight: 600; }

.col-header__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  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: 88px;
  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:hover .col-product-card__img--primary { opacity: 0; }
.col-product-card: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; }
[dir="rtl"] .breadcrumb__list { flex-direction: row-reverse; }
[dir="rtl"] .breadcrumb__separator .material-icons { transform: scaleX(-1); }
[dir="rtl"] .col-header__description { text-align: right; }

[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; }
[dir="rtl"] .col-filter__checkbox-label { flex-direction: row-reverse; }
[dir="rtl"] .col-filter__price-labels { flex-direction: row-reverse; }

/* 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; }

/* 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;
}

/* Stars — keep LTR order (stars read left-to-right universally) */
[dir="rtl"] .col-product-card__rating { flex-direction: row-reverse; }
[dir="rtl"] .col-product-card__price-row { flex-direction: row-reverse; }
[dir="rtl"] .col-product-card__info { text-align: right; }

/* Pagination */
[dir="rtl"] .col-pagination__list { flex-direction: row-reverse; }
[dir="rtl"] .col-pagination__btn--arrow .material-icons { transform: scaleX(-1); }

/* Mobile sidebar toggle */
[dir="rtl"] .col-sidebar__mobile-toggle { flex-direction: row-reverse; }
[dir="rtl"] .col-sidebar__mobile-toggle-arrow { margin-left: 0; margin-right: auto; }

/* ============================================
   PRODUCT DETAIL PAGE (PDP) — REDESIGN
   ============================================ */

/* --- Breadcrumb (reused from collection, already defined) --- */
.pdp__breadcrumb { padding: 20px 0 0; }

/* --- PDP Section --- */
.pdp { padding: 0 0 60px; background: #fff; }

/* --- Main grid: gallery left, info right --- */
.pdp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 28px;
}

/* =====================
   GALLERY
   ===================== */
.pdp-gallery { position: sticky; top: 88px; }

.pdp-gallery__main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f3;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}
.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: 10px;
  flex-wrap: wrap;
}
.pdp-gallery__thumb {
  width: calc(25% - 8px);
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f5f5f3;
  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: 4px; }

.pdp-info__vendor {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.pdp-info__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-body-text);
}

/* Price + rating row */
.pdp-info__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.pdp-info__price-wrap { display: flex; align-items: baseline; gap: 10px; }
.pdp-info__price {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-body-text);
}
.pdp-info__price--sale { color: var(--color-body-text); }
.pdp-info__price--compare {
  font-size: 16px;
  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-size: 14px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
}

/* Meta: SKU + availability */
.pdp-info__meta { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.pdp-info__meta-item { font-size: 13px; display: flex; align-items: center; gap: 6px; }
.pdp-info__meta-label { color: #888; 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: 13px;
  font-weight: 500;
}
.pdp-info__availability .material-icons { font-size: 15px; }
.pdp-info__availability--in { color: #2e7d32; }
.pdp-info__availability--out { color: #c0392b; }

/* Variant options */
.pdp-info__option { margin-bottom: 18px; }
.pdp-info__option-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  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: 8px 18px;
  border: 1.5px 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;
}
.pdp-info__option-btn:hover { border-color: var(--color-body-text); }
.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: 20px;
}
.pdp-info__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.pdp-info__qty-btn {
  width: 40px;
  height: 48px;
  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: 48px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  background: #fff;
}
.pdp-info__atc-btn {
  flex: 1;
  justify-content: center;
  gap: 8px;
  height: 48px;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.pdp-info__atc-btn .material-icons { font-size: 18px; }
.pdp-info__atc-btn--full { width: 100%; justify-content: center; margin-bottom: 20px; }

/* Delivery badge */
.pdp-info__delivery {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8f8f6;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
}
.pdp-info__delivery-icon { font-size: 22px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.pdp-info__delivery-text strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.pdp-info__delivery-text p { font-size: 12px; color: #888; margin: 0; line-height: 1.5; }

/* 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);
}

.pdp-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-tabs__nav::-webkit-scrollbar { display: none; }

.pdp-tabs__nav-btn {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  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: 60px;
  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;
}

.pdp-tabs__panel-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
.pdp-tabs__panel-body {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.pdp-tabs__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pdp-tabs__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.pdp-tabs__bullet-icon {
  font-size: 8px;
  color: var(--color-primary);
  margin-top: 5px;
  flex-shrink: 0;
}

.pdp-tabs__panel-image {
  border-radius: 10px;
  overflow: hidden;
}
.pdp-tabs__panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* =====================
   RELATED PRODUCTS
   ===================== */
.pdp-related {
  padding: 48px 0 64px;
  background: #f8f8f6;
}

.pdp-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.pdp-related__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
}
.pdp-related__nav { display: flex; gap: 8px; }
.pdp-related__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);
  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: 8px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}
.pdp-related__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.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: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--color-body-text);
  line-height: 1.3;
  transition: color var(--transition);
}
.pdp-related__card:hover .pdp-related__card-title { color: var(--color-primary); }
.pdp-related__card-price { font-size: 14px; font-weight: 600; color: var(--color-body-text); }

/* =====================
   PDP — RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 32px; }
  .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: 600px) {
  .pdp__grid { padding-top: 16px; }
  .pdp-gallery__thumb { width: calc(25% - 8px); }
  .pdp-info__qty-atc { flex-direction: column; }
  .pdp-info__qty { width: fit-content; }
  .pdp-info__atc-btn { width: 100%; }
  .pdp-tabs__nav-btn { padding: 12px 16px; font-size: 12px; }
  .pdp-related__card { flex: 0 0 calc(50% - 10px); }
  .pdp-related__header { flex-direction: column; align-items: flex-start; }
}

/* =====================
   PDP — RTL
   ===================== */
[dir="rtl"] .pdp__breadcrumb { direction: rtl; }
[dir="rtl"] .pdp__grid { direction: rtl; }

/* Gallery */
[dir="rtl"] .pdp-gallery__badge {
  left: auto;
  right: 14px;
}
[dir="rtl"] .pdp-gallery__thumbs { flex-direction: row-reverse; }

/* Info panel */
[dir="rtl"] .pdp-info { text-align: right; }
[dir="rtl"] .pdp-info__price-row { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__price-wrap { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__rating { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__meta { align-items: flex-end; }
[dir="rtl"] .pdp-info__meta-item { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__availability { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__option-label { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .pdp-info__option-btns { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__qty-atc { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__qty { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__qty-input {
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
}
[dir="rtl"] .pdp-info__atc-btn { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__delivery { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .pdp-info__trust { flex-direction: row-reverse; }
[dir="rtl"] .pdp-info__trust-item { flex-direction: row-reverse; }

/* Tabs */
[dir="rtl"] .pdp-tabs__nav { flex-direction: row-reverse; }
[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 { flex-direction: row-reverse; }

/* Related products */
[dir="rtl"] .pdp-related__header { flex-direction: row-reverse; }
[dir="rtl"] .pdp-related__nav { flex-direction: row-reverse; }
[dir="rtl"] .pdp-related__arrow .material-icons { transform: scaleX(-1); }
[dir="rtl"] .pdp-related__card-title { text-align: right; }
[dir="rtl"] .pdp-related__card-price { text-align: right; }

/* ============================================
   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: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  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: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  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: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  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: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  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: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  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); }
}

@media (max-width: 600px) {
  .cart-row { grid-template-columns: 90px 1fr; gap: 16px; padding: 20px 0; }
  .cart-row__title { font-size: 16px; }
  .cart-row__price { font-size: 16px; }
  .cart-summary__total-value { font-size: 26px; }
  .cart-trust__inner { gap: 32px; }
  .cart__title { font-size: 32px; }
}

/* =====================
   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; }


/* ============================================
   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; }
}


/* ============================================
   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; }

/* Checkbox items */
.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:hover .col-product-card__img--hover { opacity: 1; }
.col-product-card: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 --- */
@media (max-width: 900px) {
  .col-main__inner { grid-template-columns: 1fr; }
  .col-sidebar { position: static; }
  .col-sidebar__mobile-toggle { display: flex; }
  .col-sidebar__body { display: none; }
  .col-sidebar__body.is-open { display: block; }
  .col-desc__video-wrap { flex: 1 1 100%; }
}

@media (max-width: 640px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .col-toolbar { flex-direction: column; align-items: flex-start; }
  .col-toolbar__right { width: 100%; justify-content: flex-end; }
  .col-product-card__quick-add { display: none; }
  .col-desc__video-wrap { flex: 1 1 100%; }
}

@media (max-width: 400px) {
  .col-grid { grid-template-columns: 1fr; }
}
