/* ============================================================
   VALORIAN â€” LUXURY PREMIUM LAYER
   valorian-theme.css â€” Mobile-first, fully responsive desktop
   ============================================================ */

/* â”€â”€ VALORIAN 3-ROW HEADER â”€â”€ */
.vlr-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: #ffffff;
  color: #000;
  transform: translateZ(0);
  will-change: transform;
}

/* Adjust page content padding because the sticky header occupies layout flow space */
.page-content {
  padding-top: 0;
}

/* Row 1: Announcement bar */
.vlr-topbar {
  background: #0A0A0A;
  height: 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: margin-top 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.vlr-topbar.is-hidden {
  margin-top: -28px;
}
.vlr-topbar__inner {
  display: flex;
  width: max-content;
  animation: vlrMarquee 30s linear infinite;
  will-change: transform;
}
.vlr-topbar__marquee-inner {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.vlr-topbar__announce {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C5C0B8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding-right: 80px;
  display: inline-block;
  white-space: nowrap;
}
@keyframes vlrMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.vlr-badge-v {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D5B861;
  color: #fff;
  width: 16px; height: 16px;
  font-size: 11px;
  border-radius: 2px;
  font-weight: 700;
}
/* Topbar is now dynamic on scroll, removing display:none for 640px */

/* Row 2: Brand bar */
.vlr-brandbar {
  background: #ffffff;
  border-bottom: 1px solid #f2f2f2;
}
.vlr-brandbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 50px;
  gap: 8px;
}
.vlr-brandbar__left {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
.vlr-brandbar__burger {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; color: #000;
  cursor: pointer;
}
.vlr-brandbar__burger svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.vlr-brandbar__links {
  display: none;
}
@media (min-width: 1024px) {
  .vlr-brandbar__burger { display: none; }
  .vlr-brandbar__links {
    display: flex;
    gap: 16px;
  }
  .vlr-brandbar__links a {
    font-size: 13px;
    font-weight: 600;
    color: #767676;
    text-transform: capitalize;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .vlr-brandbar__links a:hover { color: #000; }
  .vlr-brandbar__links a.is-active {
    color: #000;
    border-bottom: 2px solid #000;
  }
}

.vlr-brandbar__logo {
  grid-column: 2;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
}
@media (min-width: 1024px) {
  .vlr-brandbar__logo { font-size: 40px; letter-spacing: 0.2em; text-align: center; font-weight: 400; }
}
.vlr-brandbar__logo:hover { opacity: 0.65; }

.vlr-brandbar__actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.vlr-search-bar {
  display: none;
}
@media (min-width: 1024px) {
  .vlr-search-bar {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 6px;
    margin-right: 24px;
    transition: border-color 0.3s ease;
    position: relative;
  }
  .vlr-search-bar:focus-within {
    border-bottom-color: #000;
  }
  .vlr-search-bar input {
    border: none; outline: none; font-size: 13px; font-family: inherit; color: #000; background: transparent; width: 150px;
    transition: width 0.3s ease;
  }
  .vlr-search-bar input:focus {
    width: 220px;
  }
  .vlr-search-bar input::placeholder { color: #A0A0A0; font-weight: 400; text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }
  .vlr-search-bar button {
    background: none; border: none; padding: 0; cursor: pointer; color: #000; display: flex; align-items: center;
  }
  .vlr-search-bar button svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.5; fill: none; transition: transform 0.2s ease; }
  .vlr-search-bar button:hover svg { transform: scale(1.15); }

  .vlr-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 16px;
  }
  .vlr-search-dropdown.is-open {
    display: flex;
  }
  .vlr-search-dropdown__title {
    font-size: 11px;
    text-transform: uppercase;
    color: #A0A0A0;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  .vlr-search-dropdown__results {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .vlr-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s;
  }
  .vlr-search-item:hover { opacity: 0.7; }
  .vlr-search-item img {
    width: 48px; height: 64px; object-fit: cover; background: #F8F8F8;
  }
  .vlr-search-item__info {
    display: flex; flex-direction: column; gap: 4px;
  }
  .vlr-search-item__title {
    font-size: 12px; font-weight: 500; line-height: 1.2;
  }
  .vlr-search-item__price {
    font-size: 12px; font-weight: 400; color: #767676;
  }
}

.vlr-nav__icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; color: #000;
  position: relative; cursor: pointer;
}
.vlr-nav__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.2; }

.vlr-brandbar__account-mobile { display: inline-flex; }

.vlr-nav__count {
  position: absolute;
  top: -2px; right: -4px;
  background: #000;
  color: #fff;
  font-size: 11px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vlr-nav__count[data-count="0"] { display: none; }

/* Row 3: Category nav (desktop only) */
.vlr-catbar {
  background: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  justify-content: center;
}
.vlr-catbar__inner {
  display: flex;
  align-items: center;
  height: 30px;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--space-4);
}
.vlr-catbar__inner::-webkit-scrollbar {
  display: none;
}
.vlr-catbar__link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  transition: opacity 0.16s;
  position: relative;
  text-decoration: none;
}
.vlr-catbar__link:hover { opacity: 0.6; }
.vlr-catbar__link--sale { color: var(--color-error); }
.vlr-catbar__link--sale:hover { color: var(--color-error); opacity: 0.6; }
@media (max-width: 768px) { .vlr-catbar { display: none; } }

/* â”€â”€ ACCOUNT PAGE & MODALS â”€â”€ */
.acc-page { min-height: 100vh; background: var(--color-off-white); }
.auth-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.7);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-modal.is-open { display: flex; }
.auth-card {
  background: var(--color-white);
  width: 100%;
  max-width: 440px;
  padding: 48px 40px;
  position: relative;
}
@media (max-width: 480px) { .auth-card { padding: 36px 24px; } }
.auth-card__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: 0;
  cursor: pointer;
  color: var(--color-mid-gray);
}
.auth-card__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.auth-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--color-cream); margin-bottom: 32px; }
.auth-tab {
  flex: 1; text-align: center;
  padding: 12px 0;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  cursor: pointer;
  color: var(--color-mid-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  background: none;
}
.auth-tab.is-active { color: var(--color-black); border-bottom-color: var(--color-black); }
.auth-panel { display: none; }
.auth-panel.is-active { display: block; }
.auth-field { margin-bottom: 20px; }
.auth-field label {
  display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; color: var(--color-mid-gray); margin-bottom: 6px;
}
.auth-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-cream);
  font-size: 14px;
  background: var(--color-white);
  color: var(--color-black);
  transition: border-color .2s;
}
.auth-field input:focus { border-color: var(--color-black); outline: none; }
.auth-field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-btn {
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
  padding: 14px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  border: 0; cursor: pointer;
  margin-top: 8px;
  transition: background .2s;
}
.auth-btn:hover { background: var(--color-charcoal); }
.auth-err {
  margin-top: 12px;
  padding: 10px 14px;
  background: #FEF2F2;
  color: var(--color-error);
  font-size: 13px;
  display: none;
}
.auth-err.is-shown { display: block; }
.auth-link {
  display: block; text-align: center; margin-top: 18px;
  font-size: 12px; color: var(--color-mid-gray);
  cursor: pointer; text-decoration: underline;
}

/* Dashboard hero */
.acc-hero {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 40px var(--container-pad);
}
.acc-hero__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.acc-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-editorial);
  font-size: 28px; font-weight: 300;
  color: var(--color-white);
  flex-shrink: 0;
}
.acc-hero__name {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.acc-hero__sub {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}
.acc-logout {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 8px 18px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.acc-logout:hover { border-color: #fff; color: #fff; }

/* Tabs */
.acc-tabs-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-cream);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 10;
}
.acc-tabs-bar::-webkit-scrollbar { display: none; }
.acc-tabs-inner {
  display: flex;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.acc-tab {
  padding: 16px 20px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: var(--color-mid-gray);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.acc-tab.is-active { color: var(--color-black); border-bottom-color: var(--color-black); }

/* Content area */
.acc-content {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 40px var(--container-pad);
}
.acc-panel { display: none; }
.acc-panel.is-active { display: block; }
.acc-section-title {
  font-family: var(--font-editorial);
  font-size: 28px; font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* â”€â”€ Loyalty â”€â”€ */
.loyalty-hero {
  background: linear-gradient(135deg, var(--color-charcoal), #2A2520);
  color: var(--color-white);
  padding: 40px;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.loyalty-badge {
  width: 100px; height: 100px; flex-shrink: 0;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.loyalty-badge__pts {
  font-family: var(--font-editorial);
  font-size: 28px; font-weight: 300;
  color: var(--color-gold-light);
}
.loyalty-badge__lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.loyalty-info__tier {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-gold); font-weight: 700; margin-bottom: 6px;
}
.loyalty-info__title {
  font-family: var(--font-editorial);
  font-size: 28px; font-weight: 300; margin-bottom: 6px;
}
.loyalty-info__desc { font-size: 13px; color: rgba(255,255,255,.6); max-width: 400px; }

.loyalty-progress {
  background: var(--color-white);
  border: 1px solid var(--color-cream);
  padding: 24px;
  margin-bottom: 20px;
}
.loyalty-progress__head {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--color-mid-gray);
  margin-bottom: 10px;
}
.loyalty-bar {
  height: 4px; background: var(--color-cream); border-radius: 2px; overflow: hidden;
}
.loyalty-bar__fill {
  height: 100%; background: var(--color-gold);
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}
.loyalty-perks {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.loyalty-perk {
  background: var(--color-white);
  border: 1px solid var(--color-cream);
  padding: 20px;
}
.loyalty-perk__icon {
  width: 36px; height: 36px;
  background: var(--color-off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.loyalty-perk__icon svg { width: 18px; height: 18px; stroke: var(--color-gold); fill: none; stroke-width: 1.5; }
.loyalty-perk__title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.loyalty-perk__desc { font-size: 12px; color: var(--color-mid-gray); }

/* ==========================================================================
   COLLECTION LUXURY LAYOUT
   ========================================================================== */
.collection-header {
  background: var(--color-white);
}
.collection-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-2) var(--container-pad) var(--space-4);
  text-align: left;
}
.collection-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-black);
  font-family: var(--font-body);
}

.vlr-sub-box {
  background: #f8f8f8;
  border-top: 1px solid var(--color-cream);
  border-bottom: 1px solid var(--color-cream);
  margin-bottom: 24px;
}
.vlr-sub-box__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 16px 24px;
}
.vlr-sub-tabs {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid var(--color-cream);
}
.vlr-sub-tabs li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-mid-gray);
  text-decoration: none;
  padding-bottom: 12px;
  display: block;
  text-transform: capitalize;
}
.vlr-sub-tabs li.is-active a {
  color: var(--color-black);
  border-bottom: 2px solid var(--color-black);
  font-weight: 600;
}
.vlr-sub-icons {
  display: flex;
  gap: 40px;
}
.vlr-sub-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-mid-gray);
  transition: color 0.2s ease;
}
.vlr-sub-icon:hover {
  color: var(--color-black);
}
.vlr-sub-icon svg {
  stroke: currentColor;
}
.vlr-sub-icon span {
  font-size: 11px;
  font-weight: 500;
}

.vlr-sub-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 4px;
}
.vlr-sub-icon:hover .vlr-sub-color {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* SIDEBAR LAYOUT */
.vlr-sidebar-group {
  margin-bottom: 24px;
}
.vlr-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-black);
}
.vlr-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vlr-sidebar-list li a {
  font-size: 13px;
  color: var(--color-mid-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vlr-sidebar-list li a:hover {
  color: var(--color-black);
}
.vlr-sidebar-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vlr-sidebar-checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-mid-gray);
  cursor: pointer;
}
.vlr-sidebar-checkboxes input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-mid-gray);
  border-radius: 2px;
  appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.vlr-sidebar-checkboxes input[type="checkbox"]:checked {
  background-color: var(--color-black);
  border-color: var(--color-black);
}
.vlr-sidebar-checkboxes input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* TOOLBAR */
.vlr-toolbar {
  margin-bottom: 32px;
}
.vlr-toolbar__top {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-cream);
  margin-bottom: 16px;
}
.vlr-toolbar__filters {
  display: flex;
  gap: 24px;
}
.vlr-toolbar__btn {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--color-mid-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.vlr-toolbar__btn:hover {
  color: var(--color-black);
}
.vlr-toolbar__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vlr-toolbar__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
.vlr-toolbar__sort {
  display: flex;
  gap: 24px;
}

/* PRODUCT CARDS LUXURY STYLE */
.vlr-product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--color-white);
}
.vlr-product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-off-white);
  margin-bottom: 12px;
}
.vlr-product-card__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease-out);
}
.vlr-product-card__img--hover {
  opacity: 0;
}
.vlr-product-card:hover .vlr-product-card__img--hover {
  opacity: 1;
}

/* Badges */
.vlr-product-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.vlr-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  text-transform: uppercase;
}
.vlr-badge--black {
  background: var(--color-black);
  color: var(--color-white);
}
.vlr-badge--pink {
  background: #f7a8b8; /* A nice trending pink */
  color: var(--color-black);
}

/* Heart Icon */
.vlr-product-card__heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vlr-product-card__heart svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-black);
  stroke-width: 1.5;
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.vlr-product-card__heart:hover svg {
  stroke-width: 2;
}
.vlr-product-card__heart.is-liked svg {
  fill: var(--color-black);
}

/* Quick View */
.vlr-product-card__quickview-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  z-index: 2;
}
.vlr-product-card:hover .vlr-product-card__quickview-container {
  transform: translateY(0);
  opacity: 1;
}
@media (hover: none) {
  .vlr-product-card__quickview-container {
    transform: translateY(0);
    opacity: 1;
  }
}
.vlr-quick-view-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-cream);
  padding: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  cursor: pointer;
  transition: background 0.2s ease;
}
.vlr-quick-view-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Info */
.vlr-product-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vlr-product-card__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 4px;
}
.vlr-product-card__name {
  font-size: 12px;
  color: var(--color-mid-gray);
  margin-bottom: 6px;
}
.vlr-product-card__price-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.vlr-price {
  font-size: 12px;
  font-weight: 500;
}
.vlr-price--original {
  text-decoration: line-through;
  color: var(--color-mid-gray);
}
.vlr-price--sale {
  color: var(--color-error);
}

/* Swatches */
.vlr-color-swatches {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.vlr-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

/* Swiper Continuous Marquee Loop Styles */
.swiper-luxury .swiper-wrapper {
  transition-timing-function: linear !important;
}


/* ============================================================
   VALORIAN â€” LUXURY FASHION DESIGN SYSTEM
   main.css â€” Design Tokens, Reset, Typography, Utilities
   ============================================================ */

/* â”€â”€ DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Color Palette */
  --color-black:        #0A0A0A;
  --color-white:        #FFFFFF;
  --color-off-white:    #F7F4F0;
  --color-cream:        #EDE8E1;
  --color-warm-gray:    #C5C0B8;
  --color-mid-gray:     #7A7570;
  --color-dark-gray:    #3A3530;
  --color-gold:         #B8965A;
  --color-gold-light:   #D4AF7A;
  --color-gold-dark:    #8A6C38;
  --color-charcoal:     #1C1A18;
  --color-error:        #8B2635;
  --color-success:      #2D5016;

  /* Backgrounds */
  --bg-primary:         var(--color-off-white);
  --bg-dark:            var(--color-black);
  --bg-card:            var(--color-white);
  --bg-overlay:         rgba(10, 10, 10, 0.85);

  /* Typography */
  --font-editorial:     'Playfair Display', Georgia, serif;
  --font-body:          'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:          'Courier New', Courier, monospace;

  /* Type Scale */
  --text-xs:    0.75rem;    /* 12px â€” raised from 10px for WCAG AA */
  --text-sm:    0.8125rem;  /* 13px */
  --text-base:  0.875rem;   /* 14px */
  --text-md:    1rem;       /* 16px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   2rem;       /* 32px */
  --text-3xl:   3rem;       /* 48px */
  --text-4xl:   4.5rem;     /* 72px */
  --text-5xl:   6rem;       /* 96px */
  --text-6xl:   8rem;       /* 128px */
  --text-hero:  clamp(4rem, 10vw, 10rem);

  /* Font Weights */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    600;

  /* Line Heights */
  --leading-tight:  1.1;
  --leading-snug:   1.3;
  --leading-normal: 1.6;
  --leading-loose:  2;

  /* Letter Spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.08em;
  --tracking-wider:   0.15em;
  --tracking-widest:  0.25em;

  /* Spacing Scale */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;
  --space-40:  10rem;
  --space-48:  12rem;

  /* Container */
  --container-max:    1440px;
  --container-wide:   1280px;
  --container-normal: 1080px;
  --container-narrow: 720px;
  --container-pad:    clamp(1.5rem, 4vw, 4rem);

  /* Breakpoints (reference â€” use in media queries) */
  /* --bp-sm: 640px | --bp-md: 768px | --bp-lg: 1024px | --bp-xl: 1280px */

  /* Border Radius */
  --radius-none:  0;
  --radius-sm:    2px;
  --radius-md:    4px;
  --radius-lg:    8px;
  --radius-full:  9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:   0 32px 80px rgba(0,0,0,0.20);
  --shadow-gold: 0 4px 24px rgba(184,150,90,0.25);

  /* Transitions */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:      0.15s;
  --dur-normal:    0.35s;
  --dur-slow:      0.65s;
  --dur-cinematic: 1.2s;

  /* Z-index scale */
  --z-below:   -1;
  --z-base:     0;
  --z-above:    1;
  --z-sticky:  10;
  --z-drawer:  50;
  --z-overlay: 80;
  --z-modal:   90;
  --z-top:    100;

  /* Nav height */
  --nav-height: 108px;
  --nav-height-scrolled: 56px;
}

/* â”€â”€ CSS RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff; /* evita flash negro en scroll/zoom */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-black);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

/* â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.t-hero {
  font-family: var(--font-editorial);
  font-size: var(--text-hero);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.t-display {
  font-family: var(--font-editorial);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.t-headline {
  font-family: var(--font-editorial);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: var(--weight-light);
  line-height: var(--leading-snug);
}

.t-subheadline {
  font-family: var(--font-editorial);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: var(--weight-light);
  line-height: var(--leading-snug);
}

.t-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.t-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.t-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.t-caption {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
}

/* â”€â”€ LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--wide   { max-width: var(--container-wide); }
.container--normal { max-width: var(--container-normal); }
.container--narrow { max-width: var(--container-narrow); }

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* â”€â”€ UTILITY CLASSES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.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;
}

.u-overflow-hidden { overflow: hidden; }
.u-relative        { position: relative; }
.u-absolute        { position: absolute; }
.u-full            { width: 100%; height: 100%; }

/* Aspect ratios */
.aspect-portrait   { aspect-ratio: 3 / 4; }
.aspect-square     { aspect-ratio: 1 / 1; }
.aspect-landscape  { aspect-ratio: 4 / 3; }
.aspect-cinema     { aspect-ratio: 16 / 9; }
.aspect-ultra      { aspect-ratio: 21 / 9; }

.object-cover {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Dividers */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-cream);
}

.divider--dark {
  background: var(--color-dark-gray);
}

/* Gold accent line */
.accent-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

/* â”€â”€ PAGE LOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: var(--z-top);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader__logo {
  font-family: var(--font-editorial);
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-widest);
  color: var(--color-white);
  text-transform: uppercase;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--dur-cinematic) var(--ease-out);
}

/* â”€â”€ PAGE TRANSITION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: calc(var(--z-top) - 1);
  transform: translateY(100%);
  pointer-events: none;
}

/* â”€â”€ REVEAL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.94);
}

/* â”€â”€ MEDIA: PAGE PADDING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-content {
  background-color: var(--color-white);
  padding-top: var(--nav-height);
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }
}


/* ============================================================
   VALORIAN â€” COMPONENTS CSS
   MegaMenu, Cards, Cart, Search, Footer, etc.
   ============================================================ */


/* â”€â”€ MEGA MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Page dimmer that appears behind the menu */
.mega-menu-backdrop {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(0,0,0,0.35);
  
  -webkit-
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.mega-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.mega-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  border-top: 1px solid #e8e4df;
  z-index: 9999;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-menu__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-8) var(--container-pad) var(--space-10);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: var(--space-10);
  align-items: start;
}

.mega-menu__col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: var(--space-4);
  font-weight: 600;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid #f0ece8;
}

.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mega-menu__link {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-black);
  transition: color 0.15s ease, padding-left 0.15s ease;
  display: block;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.mega-menu__link:hover {
  color: #8B6914;
  padding-left: 6px;
}

.mega-menu__feature {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.mega-menu__feature-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mega-menu__feature:hover .mega-menu__feature-img {
  transform: scale(1.05);
}

.mega-menu__feature-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
  padding-top: var(--space-8);
}

/* Hover accent bar on columns */
.mega-menu__inner > div:not(.mega-menu__feature):hover {
  /* subtle left border accent handled via link hover */
}



/* â”€â”€ MOBILE MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: var(--z-overlay);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 60px;
}

.mobile-menu__logo {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: var(--weight-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
}

.mobile-menu__close {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.mobile-menu__nav {
  flex: 1;
  padding: var(--space-8) var(--space-6);
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-family: var(--font-editorial);
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  color: var(--color-white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  transition: transform var(--dur-normal);
}

.mobile-nav-item.is-open .mobile-nav-trigger svg {
  transform: rotate(45deg);
}

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.mobile-nav-item.is-open .mobile-nav-sub {
  max-height: 500px;
}

.mobile-nav-sub__link {
  display: block;
  padding: var(--space-3) 0;
  color: var(--color-warm-gray);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wide);
  transition: color var(--dur-fast);
}

.mobile-nav-sub__link:hover { color: var(--color-gold); }

.mobile-menu__footer {
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-menu__footer-link {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-warm-gray);
}

/* â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #1a1a1a;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-20) var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

.hero__overline {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: var(--weight-light);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
  max-width: 900px;
}

.hero__subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: var(--weight-light);
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-6);
  max-width: 500px;
  font-style: italic;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-10);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  right: var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollLine 2s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  transition: all var(--dur-normal) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--dur-normal) var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

.btn--primary::before { background: var(--color-cream); }
.btn--primary:hover { color: var(--color-black); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn--outline::before { background: rgba(255,255,255,0.1); }
.btn--outline:hover { border-color: var(--color-white); }

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}

.btn--dark::before { background: var(--color-charcoal); }
.btn--dark:hover { color: var(--color-white); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn--gold::before { background: var(--color-gold-dark); }
.btn--gold:hover { color: var(--color-white); }

.btn--ghost {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn--ghost::before { background: var(--color-black); }
.btn--ghost:hover { color: var(--color-white); }

.btn--sm {
  padding: var(--space-3) var(--space-5);
  font-size: 11px;
}

.btn--full { width: 100%; }

/* â”€â”€ PRODUCT CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-card {
  position: relative;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  aspect-ratio: 3 / 4;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out),
              opacity var(--dur-normal) var(--ease-out);
}

.product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out);
}

.product-card:hover .product-card__img--primary {
  transform: scale(1.04);
  opacity: 0;
}

.product-card:hover .product-card__img--hover {
  opacity: 1;
}

.product-card__actions {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  display: flex;
  gap: var(--space-2);
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--dur-normal) var(--ease-out),
              opacity var(--dur-normal) var(--ease-out);
}

.product-card:hover .product-card__actions {
  transform: translateY(0);
  opacity: 1;
}

.product-card__quick-add {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  background: rgba(255,255,255,0.95);
  color: var(--color-black);
  border: 1px solid var(--color-white);
  backdrop-filter: blur(8px);
  transition: background var(--dur-fast), color var(--dur-fast);
  cursor: pointer;
}

.product-card__quick-add:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.product-card__wishlist {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white);
  backdrop-filter: blur(8px);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}

.product-card__wishlist:hover { background: var(--color-black); }
.product-card__wishlist:hover svg { stroke: var(--color-white); }

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-black);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--dur-fast), fill var(--dur-fast);
}

.product-card__wishlist.is-liked svg {
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: var(--space-1) var(--space-2);
  background: var(--color-black);
  color: var(--color-white);
  font-weight: var(--weight-medium);
}

.product-card__badge--sale {
  background: var(--color-error);
}

.product-card__badge--new {
  background: var(--color-gold);
}

.product-card__info {
  padding: var(--space-4) var(--space-1) var(--space-2);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.product-card__brand {
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

.product-card__name {
  font-family: var(--font-editorial);
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  line-height: 1.2;
  color: var(--color-black);
  transition: color var(--dur-fast);
}

.product-card:hover .product-card__name {
  color: var(--color-gold-dark);
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.product-card__price {
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--color-black);
}

.product-card__price--original {
  color: var(--color-warm-gray);
  text-decoration: line-through;
  font-size: var(--text-sm);
}

.product-card__price--sale {
  color: var(--color-error);
}

.product-card__swatches {
  display: flex;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform var(--dur-fast);
}

.swatch:hover, .swatch.active {
  transform: scale(1.3);
  border-color: var(--color-black);
}

/* â”€â”€ PRODUCT GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  background: transparent;
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Editorial offset grid */
.product-grid--editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: var(--space-4);
}

/* â”€â”€ SECTION HEADERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-cream);
}

.section-header__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.section-header__link {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-mid-gray);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.section-header__link:hover { color: var(--color-black); }

.section-header__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--dur-fast);
}

.section-header__link:hover svg { transform: translateX(4px); }

/* â”€â”€ EDITORIAL BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.editorial-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.editorial-banner__media {
  position: absolute;
  inset: 0;
}

.editorial-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.editorial-banner__content {
  position: relative;
  z-index: 2;
  padding: var(--space-24) var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

.editorial-banner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.editorial-banner__half {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-10);
}

.editorial-banner__half img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.editorial-banner__half:hover img {
  transform: scale(1.04);
}

.editorial-banner__half-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .editorial-banner--split { grid-template-columns: 1fr; }
}

/* â”€â”€ CART DRAWER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-drawer) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-out);
  backdrop-filter: blur(4px);
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100%;
  background: var(--color-white);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-cream);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-wide);
}

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-black);
  transition: opacity var(--dur-fast);
}

.cart-drawer__close:hover { opacity: 0.5; }

.cart-drawer__close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6) var(--space-8);
}

.cart-drawer__items::-webkit-scrollbar { width: 4px; }
.cart-drawer__items::-webkit-scrollbar-track { background: var(--color-cream); }
.cart-drawer__items::-webkit-scrollbar-thumb { background: var(--color-warm-gray); }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-cream);
}

.cart-item__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 80px;
  background: var(--color-cream);
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cart-item__name {
  font-family: var(--font-editorial);
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  line-height: 1.2;
}

.cart-item__variant {
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
  letter-spacing: var(--tracking-wide);
}

.cart-item__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-item__price {
  font-size: var(--text-base);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--color-cream);
}

.cart-item__qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-black);
  cursor: pointer;
  transition: background var(--dur-fast);
  line-height: 1;
}

.cart-item__qty-btn:hover { background: var(--color-cream); }

.cart-item__qty-num {
  font-size: var(--text-sm);
  min-width: 24px;
  text-align: center;
}

.cart-item__remove {
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--dur-fast);
  background: none;
  border: none;
}

.cart-item__remove:hover { color: var(--color-error); }

.cart-drawer__footer {
  padding: var(--space-6) var(--space-8);
  border-top: 1px solid var(--color-cream);
  flex-shrink: 0;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.cart-drawer__subtotal-label {
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
}

.cart-drawer__subtotal-value {
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
}

.cart-drawer__note {
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
  text-align: center;
  margin-top: var(--space-3);
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--color-mid-gray);
  padding: var(--space-10);
}

.cart-drawer__empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-warm-gray);
  fill: none;
  stroke-width: 1;
}

.cart-drawer__empty-title {
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  color: var(--color-dark-gray);
}

.cart-drawer__empty-text {
  font-size: var(--text-sm);
  text-align: center;
}

/* â”€â”€ SEARCH OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--container-pad);
  border-bottom: 1px solid var(--color-cream);
  min-height: var(--nav-height);
}

.search-overlay__input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-overlay__icon {
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  stroke: var(--color-mid-gray);
  fill: none;
  stroke-width: 1.5;
  pointer-events: none;
}

.search-overlay__input {
  width: 100%;
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-8);
  font-family: var(--font-editorial);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: var(--weight-light);
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-black);
}

.search-overlay__input::placeholder { color: var(--color-warm-gray); }

.search-overlay__close {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-mid-gray);
  cursor: pointer;
  transition: color var(--dur-fast);
  white-space: nowrap;
}

.search-overlay__close:hover { color: var(--color-black); }

.search-overlay__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-10) var(--container-pad);
  max-width: var(--container-wide);
  margin-inline: auto;
  width: 100%;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.search-suggestion-tag {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-cream);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.search-suggestion-tag:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* â”€â”€ NEWSLETTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.newsletter {
  background: var(--color-black);
  padding: var(--space-24) var(--container-pad);
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--weight-light);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.newsletter__subtitle {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-warm-gray);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
}

.newsletter__form {
  display: flex;
  max-width: 480px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,0.2);
}

.newsletter__input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  background: transparent;
  color: var(--color-white);
}

.newsletter__input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter__submit {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  background: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
  font-weight: var(--weight-medium);
  transition: background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}

.newsletter__submit:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: var(--space-20) var(--container-pad) var(--space-10);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-logo {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: var(--weight-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer__col-title {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-6);
  font-weight: var(--weight-medium);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-family: var(--font-editorial);
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast);
}

.footer__link:hover { color: var(--color-gold-light); }

.footer__bottom {
  padding-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.2);
  letter-spacing: var(--tracking-wide);
}

.footer__socials {
  display: flex;
  gap: var(--space-5);
}

.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--dur-fast);
}

.footer__social:hover {
  border-color: var(--color-gold);
  background: rgba(184,150,90,0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--dur-fast);
}

.footer__social:hover svg { stroke: var(--color-gold); }

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; }
  .mega-menu__inner { grid-template-columns: 1fr; }
  .search-results { grid-template-columns: repeat(2, 1fr); }
  .navbar__nav { display: none; }
}

/* â”€â”€ SIZE SELECTOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.size-btn {
  min-width: 48px;
  height: 48px;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid var(--color-cream);
  color: var(--color-dark-gray);
  cursor: pointer;
  transition: all var(--dur-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover:not(.disabled) {
  border-color: var(--color-black);
  color: var(--color-black);
}

.size-btn.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.size-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* â”€â”€ FILTER SIDEBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  align-self: flex-start;
  max-height: calc(100vh - var(--nav-height) - var(--space-12));
  overflow-y: auto;
}

.filter-group {
  border-bottom: 1px solid var(--color-cream);
  padding: var(--space-5) 0;
}

.filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  font-weight: var(--weight-medium);
  padding-bottom: var(--space-3);
}

.filter-group__header svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--dur-fast);
}

.filter-group.is-open .filter-group__header svg {
  transform: rotate(180deg);
}

.filter-group__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-normal) var(--ease-out);
}

.filter-group.is-open .filter-group__body {
  max-height: 400px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  transition: color var(--dur-fast);
}

.filter-option:hover { color: var(--color-black); }

.filter-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-fast);
}

.filter-option.is-checked .filter-checkbox {
  background: var(--color-black);
  border-color: var(--color-black);
}

.filter-option.is-checked .filter-checkbox::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-white);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* â”€â”€ LOADING SKELETON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.skeleton {
  background: linear-gradient(90deg,
    var(--color-cream) 25%,
    var(--color-warm-gray) 50%,
    var(--color-cream) 75%
  );
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes skeletonPulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* â”€â”€ TOAST NOTIFICATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-top);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
}

.toast {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--dur-normal) var(--ease-spring);
  min-width: 260px;
  justify-content: center;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--success { background: var(--color-success); }
.toast--error   { background: var(--color-error); }

/* â”€â”€ MOBILE FILTER DRAWER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.filter-drawer.is-open { transform: translateY(0); }

.filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-cream);
}

.filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-6);
}

.filter-drawer__footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* â”€â”€ UTILITY CLASSES (migrated from inline styles) â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Collection grid â€” 3-col masonry-style layout */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

/* Wide collection card â€” spans 2 cols with 16:9 ratio */
.collection-card--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* Section backgrounds */
.section--white {
  background: var(--color-white);
}

.section--cream {
  background: var(--color-cream);
}

/* Section with black background + white text */
.section--black {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

/* Scroll-to-top button */
.btn-scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  opacity: 0;
  transition: opacity var(--dur-normal);
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
}

/* â”€â”€ ERROR STATE UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-error {
  color: var(--color-error);
}
.error-state {
  padding: var(--space-16);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}


/* â”€â”€ BRAND STATEMENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.brand-statement {
  background: var(--color-cream, #F5F0E8);
  padding: 3rem var(--space-6, 1.5rem);
  text-align: center;
  border-top: 1px solid var(--color-border, #E8E0D5);
  border-bottom: 1px solid var(--color-border, #E8E0D5);
}

.brand-statement__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3, 0.75rem);
}

.brand-statement__overline {
  font-family: var(--font-ui, sans-serif);
  font-size: var(--text-xs, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark, #A0853A);
}

.brand-statement__headline {
  font-family: var(--font-editorial, 'Playfair Display', serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-black, #0D0D0D);
  letter-spacing: -0.01em;
  margin: 0;
}

.brand-statement__body {
  font-family: var(--font-editorial, 'Playfair Display', serif);
  font-size: var(--text-lg, 1.125rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-mid-gray, #6B6B6B);
  line-height: 1.7;
  margin: 0;
}

.brand-statement__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2, 0.5rem);
  font-family: var(--font-ui, sans-serif);
  font-size: var(--text-xs, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black, #0D0D0D);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-fast, 150ms), gap var(--dur-fast, 150ms);
  margin-top: var(--space-3, 0.75rem);
}

.brand-statement__link:hover {
  color: var(--color-gold-dark, #A0853A);
  gap: var(--space-3, 0.75rem);
}

@media (max-width: 640px) {
  .brand-statement {
    padding: 2rem var(--space-6, 1.5rem);
  }
  .brand-statement__headline {
    font-size: 2rem;
  }
}

/* Hide badges when empty */
.vlr-nav__count[data-count="0"] { display: none !important; }


/* Pulse animation for size selector */
@keyframes pulse-attention {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); border-color: var(--color-black); }
  70% { box-shadow: 0 0 0 6px rgba(0,0,0,0); border-color: var(--color-black); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.pulse-attention {
  animation: pulse-attention 1.5s ease-out;
}


/* Breadcrumb */
.breadcrumb-link { color: var(--color-mid-gray); transition: color var(--dur-fast); }
.breadcrumb-link:hover { color: var(--color-black); }



/* ============================================================
   VALORIAN â€” ANIMATIONS CSS
   Keyframes, GSAP helpers, scroll reveals, transitions
   ============================================================ */

/* â”€â”€ GSAP UTILITY CLASSES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gsap-hidden { visibility: hidden; }

/* â”€â”€ FADE TRANSITIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* â”€â”€ HERO CHAR REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.char-wrap {
  overflow: hidden;
  display: inline-block;
}

.char {
  display: inline-block;
  transform: translateY(110%);
}

/* â”€â”€ PARALLAX â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-parallax] {
  will-change: transform;
}

/* â”€â”€ HOVER EFFECTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hover-lift {
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
  box-shadow: var(--shadow-gold);
}

/* â”€â”€ IMAGE REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.img-reveal {
  overflow: hidden;
  position: relative;
}

.img-reveal__inner {
  transform: scale(1.1);
  transition: transform var(--dur-cinematic) var(--ease-out);
}

.img-reveal.is-visible .img-reveal__inner {
  transform: scale(1);
}

/* â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 20s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  padding-right: var(--space-6);
  font-family: var(--font-editorial);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

.marquee__sep {
  color: var(--color-gold);
  font-size: var(--text-xs);
}

/* â”€â”€ SWIPER OVERRIDES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.swiper-luxury {
  overflow: visible !important;
}

.swiper-luxury .swiper-wrapper {
  align-items: stretch;
}

.swiper-luxury .swiper-slide {
  height: auto;
}

.swiper-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.swiper-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}

.swiper-btn:hover {
  background: var(--color-black);
  border-color: var(--color-black);
}

.swiper-btn:hover svg { stroke: var(--color-white); }

.swiper-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-black);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--dur-fast);
}

.swiper-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

/* â”€â”€ SCROLL PROGRESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  z-index: calc(var(--z-top) + 1);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* â”€â”€ CURSOR (desktop) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-black);
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--z-top) + 2);
  transform: translate(-50%, -50%);
  /* mix-blend-mode removed for performance */
}

@media (hover: none) {
  .cursor { display: none; }
}

/* â”€â”€ PRODUCT IMAGE ZOOM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.zoom-container.is-zoomed {
  cursor: zoom-out;
}

.zoom-container img {
  transition: transform 0.1s linear;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  will-change: transform;
}

.zoom-container.is-zoomed img {
  transform: scale(2.2);
}

/* â”€â”€ COLLECTION GRID ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-card {
  transition: transform var(--dur-normal) var(--ease-out);
}

.product-card.is-filtering {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.product-card.is-showing {
  opacity: 1;
  transform: scale(1);
}

/* â”€â”€ PRODUCT PAGE GALLERY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-gallery {
  display: flex;
  gap: var(--space-3);
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 72px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 72px;
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  border: 1px solid transparent;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-black);
}

.gallery-thumb:hover { opacity: 0.85; }

.product-gallery__main {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.product-gallery__main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* â”€â”€ STICKY PRODUCT INFO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-info-sticky {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  align-self: flex-start;
  max-height: calc(100vh - var(--nav-height) - var(--space-12));
  overflow-y: auto;
}

/* â”€â”€ ADD TO CART ANIMATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes cartPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

.btn--add-cart.is-loading {
  pointer-events: none;
  animation: cartPulse 0.5s var(--ease-in-out) infinite;
}

.btn--add-cart.is-success {
  background: var(--color-success);
  border-color: var(--color-success);
}

/* â”€â”€ SECTION TRANSITIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section {
  position: relative;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section--cream {
  background: var(--color-cream);
}

.section--white {
  background: var(--color-white);
}

.section-pad {
  padding-block: var(--space-12);
}

.section-pad--lg {
  padding-block: var(--space-20);
}

.section-pad--sm {
  padding-block: var(--space-8);
}

/* â”€â”€ SPLIT REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.split-text {
  overflow: hidden;
}

.split-text .line {
  display: block;
  overflow: hidden;
}

.split-text .line-inner {
  display: block;
  transform: translateY(100%);
}

/* â”€â”€ LOADING MORE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.load-more-trigger {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-cream);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* â”€â”€ BADGE PULSE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes badgePop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.badge-pop {
  animation: badgePop var(--dur-normal) var(--ease-spring) forwards;
}

/* â”€â”€ FEATURED COLLECTION CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2/3;
  background: var(--color-cream);
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.1) 60%,
    transparent 100%
  );
  transition: opacity var(--dur-normal);
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6);
  transform: translateY(8px);
  transition: transform var(--dur-normal) var(--ease-out);
}

.collection-card:hover .collection-card__content {
  transform: translateY(0);
}

.collection-card__overline {
  font-size: 9px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-2);
}

.collection-card__title {
  font-family: var(--font-editorial);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--weight-light);
  color: var(--color-white);
  line-height: 1.1;
}

.collection-card__cta {
  margin-top: var(--space-4);
  font-size: 10px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-normal) var(--ease-out) 0.05s;
}

.collection-card:hover .collection-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.collection-card__cta::after {
  content: 'â†’';
}


/* ============================================================
   VALORIAN â€” EDITORIAL LUXURY SEARCH EXPERIENCE
   search-luxury.css â€” Complete redesign
   Inspired by SSENSE Â· NET-A-PORTER Â· REVOLVE Â· FARFETCH
   ============================================================ */

:root {
  --sx-dur-fast:  0.18s;
  --sx-dur:       0.44s;
  --sx-dur-slow:  0.65s;
  --sx-ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --sx-ease-in:   cubic-bezier(0.55, 0, 1, 0.45);
  --sx-bg:        #FAFAF8;
  --sx-sidebar-w: 296px;
  --sx-z:         9000;
  --sx-gold:      #B8965A;
  --sx-black:     #0A0A0A;
  --sx-cream:     #EDE8E1;
  --sx-gray:      #7A7570;
  --sx-off-white: #F7F4F0;
  --sx-serif:     'Playfair Display', 'Times New Roman', Georgia, serif;
  --sx-sans:      'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body.search-open { overflow: hidden; }

.vlr-search-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0);
  backdrop-filter: blur(0px) saturate(1);
  -webkit-backdrop-filter: blur(0px) saturate(1);
  z-index: calc(var(--sx-z) - 1);
  pointer-events: none;
  transition: background var(--sx-dur) var(--sx-ease), backdrop-filter var(--sx-dur) var(--sx-ease);
}
.vlr-search-backdrop.is-visible {
  background: rgba(10,10,10,0.48);
  backdrop-filter: blur(8px) saturate(0.8);
  -webkit-backdrop-filter: blur(8px) saturate(0.8);
  pointer-events: all;
}

@media (min-width: 1024px) {
  .vlr-header-search-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; color: #000;
    transition: opacity var(--sx-dur-fast);
  }
  .vlr-header-search-btn:hover { opacity: 0.45; }
  .vlr-header-search-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  .vlr-search-panel {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: var(--sx-z);
    background: var(--sx-bg);
    max-height: 84vh;
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(-14px);
    pointer-events: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 0 0.5px rgba(0,0,0,0.05), 0 20px 40px rgba(0,0,0,0.08), 0 48px 96px rgba(0,0,0,0.10);
    transition: opacity var(--sx-dur) var(--sx-ease), transform var(--sx-dur) var(--sx-ease);
    overflow: hidden;
  }
  .vlr-search-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: all; }

  .vlr-search-panel__input-row {
    display: flex; align-items: center;
    padding: 0 clamp(2rem, 5vw, 5rem);
    height: 76px; border-bottom: 0.5px solid var(--sx-cream);
    flex-shrink: 0;
  }
  .vlr-search-panel__icon { flex-shrink: 0; color: var(--sx-black); display: flex; align-items: center; margin-right: 20px; }
  .vlr-search-panel__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }

  .vlr-search-panel__input {
    flex: 1;
    font-family: var(--sx-serif);
    font-size: clamp(1.375rem, 2.2vw, 1.875rem);
    font-weight: 300; letter-spacing: 0.01em;
    color: var(--sx-black); background: transparent;
    border: none; outline: none; line-height: 1;
  }
  .vlr-search-panel__input::placeholder { color: #C5BEB7; font-style: italic; }

  .vlr-search-panel__clear {
    flex-shrink: 0; width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: var(--sx-gray); opacity: 0; pointer-events: none;
    transition: opacity var(--sx-dur-fast); border-radius: 50%;
  }
  .vlr-search-panel__clear.is-visible { opacity: 1; pointer-events: all; }
  .vlr-search-panel__clear:hover { color: var(--sx-black); }
  .vlr-search-panel__clear svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }
  .vlr-search-panel__close { display: none; }

  .vlr-search-panel__body { display: flex; flex: 1; overflow: hidden; }

  .vlr-search-panel__left {
    width: var(--sx-sidebar-w); flex-shrink: 0;
    border-right: 0.5px solid var(--sx-cream);
    padding: 2.25rem 2rem 2.25rem 2.75rem;
    overflow-y: auto; display: flex; flex-direction: column; gap: 2rem;
  }
  .vlr-search-panel__left::-webkit-scrollbar { width: 0; }

  .vlr-search-panel__right {
    flex: 1; overflow-y: auto;
    padding: 2.25rem clamp(2rem, 4vw, 4.5rem);
  }
  .vlr-search-panel__right::-webkit-scrollbar { width: 3px; }
  .vlr-search-panel__right::-webkit-scrollbar-thumb { background: var(--sx-cream); }
}

@media (max-width: 1023px) {
  .vlr-search-panel {
    position: fixed; inset: 0; z-index: var(--sx-z);
    background: var(--sx-bg);
    display: flex; flex-direction: column;
    transform: translateY(100%);
    transition: transform var(--sx-dur) var(--sx-ease);
    overflow: hidden;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .vlr-search-panel.is-open { transform: translateY(0); }

  .vlr-search-panel__input-row {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    border-bottom: 0.5px solid var(--sx-cream);
    flex-shrink: 0; background: var(--sx-bg);
    position: sticky; top: 0; z-index: 2;
  }
  .vlr-search-panel__icon { display: flex; color: #000; flex-shrink: 0; }
  .vlr-search-panel__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .vlr-search-panel__input {
    flex: 1; font-family: var(--sx-serif); font-size: 1.125rem;
    font-weight: 300; letter-spacing: 0.01em;
    color: var(--sx-black); background: transparent; border: none; outline: none;
  }
  .vlr-search-panel__input::placeholder { color: #C5BEB7; font-style: italic; }
  .vlr-search-panel__clear {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: var(--sx-gray); opacity: 0; pointer-events: none; transition: opacity var(--sx-dur-fast);
  }
  .vlr-search-panel__clear.is-visible { opacity: 1; pointer-events: all; }
  .vlr-search-panel__clear svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; }
  .vlr-search-panel__close {
    font-family: var(--sx-sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--sx-black); background: none; border: none; cursor: pointer;
    padding: 0; white-space: nowrap; flex-shrink: 0;
  }
  .vlr-search-panel__body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; display: flex; flex-direction: column; }
  .vlr-search-panel__left { padding: 1.75rem 1.25rem 0; display: flex; flex-direction: column; gap: 1.75rem; }
  .vlr-search-panel__right { padding: 1.75rem 1.25rem; }
}

/* â”€â”€ SIDEBAR BLOCKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sx-sidebar-block { display: flex; flex-direction: column; }

.sx-section-label {
  font-family: var(--sx-sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--sx-gray); margin-bottom: 1rem; display: block;
}

.sx-trending-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.sx-trending-pill {
  font-family: var(--sx-sans); font-size: 11.5px; letter-spacing: 0.03em;
  color: var(--sx-black); border: 0.5px solid rgba(10,10,10,0.22);
  padding: 5px 13px; background: transparent; cursor: pointer; line-height: 1.4;
  transition: background var(--sx-dur-fast), border-color var(--sx-dur-fast), color var(--sx-dur-fast);
  white-space: nowrap;
}
.sx-trending-pill:hover { background: var(--sx-black); border-color: var(--sx-black); color: #fff; }

.sx-editorial-list { display: flex; flex-direction: column; }
.sx-editorial-link {
  font-family: var(--sx-serif); font-size: 1.0625rem; font-weight: 300;
  color: var(--sx-black); text-decoration: none;
  padding: 9px 0; border-bottom: 0.5px solid var(--sx-cream);
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: 0.01em; transition: opacity var(--sx-dur-fast);
}
.sx-editorial-link:last-child { border-bottom: none; }
.sx-editorial-link:hover { opacity: 0.55; }
.sx-editorial-link::after {
  content: 'â†’'; font-family: var(--sx-sans); font-size: 11px;
  opacity: 0; transform: translateX(-5px);
  transition: opacity var(--sx-dur-fast), transform var(--sx-dur-fast);
}
.sx-editorial-link:hover::after { opacity: 1; transform: translateX(0); }

.sx-recent-list { display: flex; flex-direction: column; gap: 2px; }
.sx-recent-item {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  font-family: var(--sx-sans); font-size: 13px; letter-spacing: 0.02em;
  color: var(--sx-black); cursor: pointer;
  transition: opacity var(--sx-dur-fast);
  border: none; background: none; text-align: left; width: 100%;
}
.sx-recent-item:hover { opacity: 0.5; }
.sx-recent-icon { color: var(--sx-gray); opacity: 0.55; flex-shrink: 0; }
.sx-recent-icon svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; display: block; }
.sx-recent-clear {
  font-family: var(--sx-sans); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sx-gray); background: none; border: none; cursor: pointer;
  margin-top: 8px; padding: 0; transition: color var(--sx-dur-fast); text-align: left;
}
.sx-recent-clear:hover { color: var(--sx-black); }

/* â”€â”€ RESULTS AREA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sx-results-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--sx-cream);
}
.sx-section-heading {
  font-family: var(--sx-serif); font-size: clamp(1.125rem, 1.8vw, 1.4375rem);
  font-weight: 300; letter-spacing: 0.02em; color: var(--sx-black);
}
.sx-results-count {
  font-family: var(--sx-sans); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sx-gray);
}
.sx-view-all {
  font-family: var(--sx-sans); font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--sx-black); text-decoration: none;
  border-bottom: 0.5px solid currentColor; padding-bottom: 1px;
  transition: opacity var(--sx-dur-fast); white-space: nowrap;
}
.sx-view-all:hover { opacity: 0.5; }

/* â”€â”€ PRODUCT GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sx-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 28px 16px;
}
@media (min-width: 1024px) { .sx-product-grid { grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); gap: 32px 20px; } }
@media (min-width: 1400px) { .sx-product-grid { grid-template-columns: repeat(auto-fill, minmax(188px, 1fr)); } }

/* â”€â”€ PRODUCT CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sx-product-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 10px; position: relative; }
.sx-product-card__img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--sx-off-white); }
.sx-product-card__img,
.sx-product-card__img-alt {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity var(--sx-dur) var(--sx-ease), transform var(--sx-dur-slow) var(--sx-ease);
  will-change: opacity, transform;
}
.sx-product-card__img-alt { opacity: 0; }
.sx-product-card:hover .sx-product-card__img     { opacity: 0; }
.sx-product-card:hover .sx-product-card__img-alt { opacity: 1; }
.sx-product-card:hover .sx-product-card__img-wrap img { transform: scale(1.045); }

.sx-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--sx-sans); font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; z-index: 1; line-height: 1.4;
}
.sx-badge--new        { background: var(--sx-black); color: #fff; }
.sx-badge--trending   { background: transparent; border: 0.5px solid var(--sx-gold); color: var(--sx-gold); }
.sx-badge--bestseller { background: var(--sx-off-white); color: var(--sx-black); border: 0.5px solid rgba(0,0,0,0.18); }
.sx-badge--editor     { background: var(--sx-gold); color: #fff; }

.sx-product-card__brand {
  font-family: var(--sx-sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sx-gray); line-height: 1;
}
.sx-product-card__name {
  font-family: var(--sx-serif); font-size: 0.9375rem; font-weight: 300;
  color: var(--sx-black); line-height: 1.3; letter-spacing: 0.01em;
}
.sx-product-card__price {
  font-family: var(--sx-serif); font-size: 0.875rem; font-weight: 300;
  color: var(--sx-black); letter-spacing: 0.02em;
}

/* â”€â”€ SKELETON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes sx-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.sx-skeleton-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 28px 16px;
}
@media (min-width: 1024px) { .sx-skeleton-grid { grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); gap: 32px 20px; } }
.sx-skeleton-card { display: flex; flex-direction: column; gap: 10px; }
.sx-skeleton-img,
.sx-skeleton-line {
  background: linear-gradient(90deg, #EDE8E1 25%, #F5F2EE 50%, #EDE8E1 75%);
  background-size: 1200px 100%;
  animation: sx-shimmer 1.8s infinite linear;
}
.sx-skeleton-img      { aspect-ratio: 3/4; width: 100%; }
.sx-skeleton-line     { height: 9px; border-radius: 2px; }
.sx-skeleton-line--xs { width: 40%; }
.sx-skeleton-line--sm { width: 55%; }
.sx-skeleton-line--md { width: 75%; }

/* â”€â”€ EMPTY STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sx-empty { padding: 3.5rem 0; text-align: center; }
.sx-empty__headline {
  font-family: var(--sx-serif); font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 300; color: var(--sx-black); letter-spacing: 0.02em; margin-bottom: 0.75rem;
}
.sx-empty__sub {
  font-family: var(--sx-sans); font-size: 13px;
  color: var(--sx-gray); letter-spacing: 0.04em; line-height: 1.6;
}
.sx-collection-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 2rem; }
.sx-collection-pill {
  font-family: var(--sx-sans); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--sx-black); border: 0.5px solid rgba(10,10,10,0.22);
  padding: 7px 16px; text-decoration: none;
  transition: background var(--sx-dur-fast), color var(--sx-dur-fast);
}
.sx-collection-pill:hover { background: var(--sx-black); color: #fff; }

/* â”€â”€ STAGGERED ENTRANCE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes sx-card-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sx-product-card { animation: sx-card-in 0.42s var(--sx-ease) both; }
.sx-product-card:nth-child(1) { animation-delay: 0.00s; }
.sx-product-card:nth-child(2) { animation-delay: 0.05s; }
.sx-product-card:nth-child(3) { animation-delay: 0.10s; }
.sx-product-card:nth-child(4) { animation-delay: 0.15s; }
.sx-product-card:nth-child(5) { animation-delay: 0.20s; }
.sx-product-card:nth-child(6) { animation-delay: 0.24s; }
.sx-product-card:nth-child(7) { animation-delay: 0.28s; }
.sx-product-card:nth-child(8) { animation-delay: 0.31s; }

/* â”€â”€ FOCUS RINGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sx-product-card:focus-visible,
.sx-trending-pill:focus-visible,
.sx-editorial-link:focus-visible,
.sx-recent-item:focus-visible,
.sx-collection-pill:focus-visible {
  outline: 1.5px solid var(--sx-black);
  outline-offset: 3px;
}

.sx-view-all-footer {
  text-align: center; margin-top: 2.5rem;
  padding-top: 1.5rem; border-top: 0.5px solid var(--sx-cream);
}

/* ── STICKY HEADER TRANSITIONS ─────────────────────────────── */
.vlr-header {
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.vlr-header--stuck {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.vlr-header--hidden {
  transform: translateY(-100%);
}

/* ── PRODUCT CARD — QUICK ADD & SIZE CHIPS ─────────────────── */
.vlr-product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.vlr-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 10px 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.vlr-product-card:hover .vlr-product-card__quick-add,
.vlr-product-card:focus-within .vlr-product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.vlr-quick-add-btn {
  display: block;
  width: 100%;
  padding: 9px 12px;
  background: #0A0A0A;
  color: #fff;
  border: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.18s;
}
.vlr-quick-add-btn:hover { background: #333; }
.vlr-quick-add-btn--sold { background: #aaa; cursor: not-allowed; }
.vlr-quick-add-btn--select { background: transparent; color: #0A0A0A; border: 1px solid #0A0A0A; }
.vlr-quick-add-btn--select:hover { background: #0A0A0A; color: #fff; }

/* Size chips in quick-add */
.vlr-size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.vlr-size-chip {
  padding: 5px 8px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #0A0A0A;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.15s, color 0.15s;
}
.vlr-size-chip:hover {
  background: #0A0A0A;
  color: #fff;
}

/* ── BADGES (updated) ─────────────────────────────────────── */
.vlr-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 1px;
}
.vlr-badge--black   { background: #0A0A0A; color: #fff; }
.vlr-badge--sale    { background: #C0392B; color: #fff; }
.vlr-badge--urgent  { background: #8B4513; color: #fff; }
.vlr-badge--neutral { background: #fff; color: #0A0A0A; border: 1px solid #0A0A0A; }

/* ── STICKY ADD TO CART BAR (PDP) ─────────────────────────── */
.vlr-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.vlr-sticky-atc.is-visible { transform: translateY(0); }
.vlr-sticky-atc__title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
@media (min-width: 768px) { .vlr-sticky-atc__title { display: block; } }
.vlr-sticky-atc__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.vlr-sticky-atc__btn {
  padding: 12px 28px;
  background: #0A0A0A;
  color: #fff;
  border: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.18s;
  flex-shrink: 0;
}
.vlr-sticky-atc__btn:hover { background: #333; }
.vlr-sticky-atc__btn:disabled { background: #aaa; cursor: not-allowed; }

/* ── COLLECTION SORT/FILTER BAR ───────────────────────────── */
.vlr-sort-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.vlr-sort-btn {
  padding: 7px 14px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: border-color 0.15s, background 0.15s;
}
.vlr-sort-btn:hover, .vlr-sort-btn.is-active {
  border-color: #0A0A0A;
  background: #0A0A0A;
  color: #fff;
}
.vlr-sort-spacer { flex: 1; }
.vlr-sort-select {
  padding: 7px 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border-radius: 2px;
}

/* ── SEARCH KEYBOARD NAV ──────────────────────────────────── */
.sx-product-card.is-focused,
.sx-trending-pill.is-focused,
.sx-editorial-link.is-focused {
  outline: 2px solid #0A0A0A;
  outline-offset: 2px;
}





