/* ==========================================================================
   STYLE.CSS — Parfums Élite
   Matching exactly: toguezparfums.com (Dawn theme, Urbanist font)
   ========================================================================== */

/* --------------------------------------------------------------------------
   GOOGLE FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* --------------------------------------------------------------------------
   CSS VARIABLES — Extracted from toguezparfums.com computed styles
   -------------------------------------------------------------------------- */
:root {
  /* Colors — scheme 1 (white bg / black fg) */
  --color-background: 255, 255, 255;
  --color-foreground: 0, 0, 0;
  --color-background-contrast: 191, 191, 191;
  --color-shadow: 0, 0, 0;
  --color-button: 0, 0, 0;
  --color-button-text: 255, 255, 255;
  --color-secondary-button: 255, 255, 255;
  --color-secondary-button-text: 0, 0, 0;
  --color-link: 0, 0, 0;
  --color-badge-foreground: 0, 0, 0;
  --color-badge-background: 255, 255, 255;
  --color-badge-border: 0, 0, 0;
  --gradient-background: #ffffff;

  /* Scheme 2 — light grey */
  --color-bg-2: 243, 243, 243;
  --gradient-bg-2: #f3f3f3;
  --color-fg-2: 18, 18, 18;

  /* Scheme 3 — black */
  --color-bg-3: 0, 0, 0;
  --gradient-bg-3: #000000;
  --color-fg-3: 255, 255, 255;

  /* Typography */
  --font-body-family: Urbanist, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 300;
  --font-body-weight-bold: 600;
  --font-heading-family: Urbanist, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;

  /* Layout */
  --page-width: 130rem;
  --page-width-margin: 0rem;
  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;

  /* Grid spacing */
  --grid-desktop-vertical-spacing: 8px;
  --grid-desktop-horizontal-spacing: 8px;
  --grid-mobile-vertical-spacing: 4px;
  --grid-mobile-horizontal-spacing: 4px;

  /* Product card */
  --product-card-image-padding: 0.0rem;
  --product-card-corner-radius: 0.0rem;
  --product-card-text-alignment: left;
  --product-card-border-width: 0.0rem;
  --product-card-border-opacity: 0.0;
  --product-card-shadow-opacity: 0.0;

  /* Buttons */
  --buttons-radius: 2px;
  --buttons-radius-outset: 3px;
  --buttons-border-width: 1px;
  --buttons-border-opacity: 1.0;

  /* Inputs */
  --inputs-radius: 0px;
  --inputs-border-width: 1px;
  --inputs-border-opacity: 0.55;

  /* Variant pills */
  --variant-pills-radius: 40px;
  --variant-pills-border-width: 1px;
  --variant-pills-border-opacity: 0.55;

  /* Badge */
  --badge-corner-radius: 4.0rem;

  /* Durations */
  --duration-short: .1s;
  --duration-default: .2s;
  --duration-medium: .3s;
  --duration-long: .5s;
  --duration-extra-long: .6s;
  --ease-out-slow: cubic-bezier(0, 0, .3, 1);

  /* Alpha */
  --alpha-button-background: 1;
  --alpha-button-border: 1;
  --alpha-link: .85;
  --alpha-badge-border: .1;

  /* Header */
  --header-height: 6.0rem;
  --announcement-height: 3.6rem;

  /* My additional tokens */
  --color-accent: #b8934a;
  --color-accent-hover: #d4a96a;
  --color-success: #22c55e;
  --color-error: #ef4444;
}

/* --------------------------------------------------------------------------
   RESET & BASE (matching Dawn theme)
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
}

@media screen and (min-width: 750px) {
  body { font-size: 1.6rem; }
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  color: rgb(var(--color-foreground));
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break: break-word;
  margin: 0;
}

h1, .h1 { font-size: calc(var(--font-heading-scale) * 3rem); }
h2, .h2 { font-size: calc(var(--font-heading-scale) * 2rem); }
h3, .h3 { font-size: calc(var(--font-heading-scale) * 1.7rem); }
h4, .h4 { font-size: calc(var(--font-heading-scale) * 1.5rem); }

@media only screen and (min-width: 750px) {
  h1, .h1 { font-size: calc(var(--font-heading-scale) * 4rem); }
  h2, .h2 { font-size: calc(var(--font-heading-scale) * 2.4rem); }
  h3, .h3 { font-size: calc(var(--font-heading-scale) * 1.8rem); }
}

.hxl {
  font-size: calc(var(--font-heading-scale) * 5rem);
  line-height: 1.1;
}
@media only screen and (min-width: 750px) {
  .hxl { font-size: calc(var(--font-heading-scale) * 6.2rem); }
}

a { color: rgba(var(--color-link), var(--alpha-link)); text-decoration: none; }
a:hover { color: rgb(var(--color-link)); }

img { display: block; max-width: 100%; }
p { margin: 0 0 1rem 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
* { outline: none; }

/* Utility */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
}
.hidden { display: none !important; }
.full-width-link {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 4;
}
.uppercase { text-transform: uppercase; }
.center { text-align: center; }

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 750px) {
  .page-width { padding: 0 5rem; }
}

@media screen and (min-width: 990px) {
  .page-width { padding: 0 5rem; }
}

/* --------------------------------------------------------------------------
   ANNOUNCEMENT BAR (from toguezparfums - black bg, white text)
   -------------------------------------------------------------------------- */
.announcement-bar {
  background-color: rgb(var(--color-bg-3));
  color: rgba(var(--color-fg-3), 1);
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  letter-spacing: 0.12rem;
  text-align: center;
  padding: 0.8rem 4rem;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.announcement-bar__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.announcement-bar__link {
  color: rgba(var(--color-fg-3), 0.75);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  font-size: 1.2rem;
}
.announcement-bar__link:hover {
  color: rgb(var(--color-fg-3));
}

/* Announcement slider */
.announcement-slider {
  overflow: hidden;
  width: 100%;
}

.announcement-slider__track {
  display: flex;
  gap: 8rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.announcement-slider__track p {
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08rem;
  color: rgba(var(--color-fg-3), 0.9);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.announcement-slider__track p::before {
  content: '✦';
  font-size: 0.8rem;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   HEADER — Black, exactly matching toguezparfums.com
   background: #000; height: ~125px desktop; sticky
   -------------------------------------------------------------------------- */

/* Header wrapper — sticky black bar */
.header-wrapper--black {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #000;
  transition: box-shadow var(--duration-default) ease;
}
.header-wrapper--black.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Header inner — Mobile FIRST: single row hamburger|logo|icons */
.header--black {
  display: grid;
  align-items: center;
  /* Mobile: hamburger(44px) | logo(flex) | 2 icons search+cart(76px) */
  grid-template-columns: 4.4rem 1fr 7.6rem;
  grid-template-areas: "hamburger heading icons";
  grid-template-rows: 1fr;
  min-height: 6rem;
  padding: 0 1.2rem;
  position: relative;
  color: rgba(255,255,255,0.75);
  background: #000;
  /* Single line, no wrapping */
  overflow: hidden;
}

@media screen and (min-width: 480px) {
  .header--black {
    min-height: 7rem;
    padding: 0 1.6rem;
    grid-template-columns: 4.8rem 1fr 9.6rem;
  }
}

@media screen and (min-width: 750px) {
  .header--black {
    min-height: 8rem;
    padding: 0 3.2rem;
    /* tablet: show account too = 3 icons */
    grid-template-columns: 4.8rem 1fr 13.2rem;
  }
}

@media screen and (min-width: 990px) {
  .header--black {
    min-height: 12.5rem;
    padding: 0 5rem;
    /* Desktop: logo | nav | icons — hamburger hidden */
    grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
    grid-template-areas: "heading navigation icons";
    overflow: visible;
  }
}

/* ── Logo ── */
.header--black .header__heading {
  grid-area: heading;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center; /* always centered on mobile */
  font-size: inherit;
  min-width: 0; /* allow shrink */
}

@media screen and (min-width: 990px) {
  .header--black .header__heading { justify-content: flex-start; }
}

.header--black .header__heading-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.header--black .header__heading-logo-wrapper {
  display: flex;
  align-items: center;
  line-height: 1;
}

.header--black .header__heading-logo {
  /* Compact on mobile — matches reference screenshot */
  height: 5rem;
  width: auto;
  max-width: 20rem;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media screen and (min-width: 480px) {
  .header--black .header__heading-logo { height: 5.8rem; max-width: 22rem; }
}

@media screen and (min-width: 750px) {
  .header--black .header__heading-logo { height: 6.5rem; max-width: 26rem; }
}

@media screen and (min-width: 990px) {
  .header--black .header__heading-logo { height: 9.5rem; max-width: 34rem; }
}

/* Logo fallback text */
.header__logo-fallback {
  flex-direction: column;
  align-items: flex-start;
}
.header__logo-fallback-text {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.header__logo-fallback-sub {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

/* ── Hamburger (mobile only) ── */
.header--black .header__hamburger {
  grid-area: hamburger;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Always visible on mobile */
}

@media screen and (min-width: 990px) {
  /* Hide on desktop — grid area collapses */
  .header--black .header__hamburger {
    display: none;
    width: 0;
    overflow: hidden;
  }
}

.header--black .header__icon--menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  padding: 0;
  flex-shrink: 0;
}
.header--black .header__icon--menu:hover { color: #fff; }

/* Hamburger / Close icon toggle */
.hamburger-icon .icon-close { display: none; }
.hamburger-icon.is-open .icon-hamburger { display: none; }
.hamburger-icon.is-open .icon-close { display: block; }

.hamburger-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

/* ── Desktop Navigation ── */
.header--black .header__inline-menu {
  grid-area: navigation;
  display: none;
}

@media screen and (min-width: 990px) {
  .header--black .header__inline-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Nav list */
.header--black .list-menu--inline {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.header--black .list-menu__item {
  position: relative;
}

/* Nav link base */
.header--black .header__menu-item,
.header--black .header__menu-item--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.4rem;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration-default);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body-family);
  height: 12.5rem;
  line-height: 1;
}

.header--black .header__menu-item:hover,
.header--black .header__menu-item--dropdown:hover,
.header--black .header__menu-item--dropdown.is-open {
  color: #fff;
}

/* Active nav item */
.header--black .header__active-menu-item {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  font-weight: 600;
}

/* Caret icon */
.header--black .icon-caret {
  width: 1rem;
  height: 1rem;
  transition: transform var(--duration-default);
}
.header--black .header__menu-item--dropdown.is-open .icon-caret {
  transform: rotate(180deg);
}

/* ── Shop By Brand Dropdown ── */
.header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 22rem;
  max-height: 70vh;
  overflow-y: auto;
  background: #000;
  border: 0.1rem solid rgba(255,255,255,0.1);
  padding: 0.8rem 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-0.8rem);
  transition:
    opacity var(--duration-default) ease,
    visibility var(--duration-default) ease,
    transform var(--duration-default) ease;
  pointer-events: none;
  list-style: none;
  margin: 0;
}

.header__submenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Scrollbar styling for dropdown */
.header__submenu::-webkit-scrollbar { width: 4px; }
.header__submenu::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.header__submenu::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }

.header__submenu li a {
  display: block;
  padding: 0.9rem 2rem;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--duration-short);
  white-space: nowrap;
}
.header__submenu li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  padding-left: 2.6rem;
}

/* ── Header Icons (right) ── */
.header--black .header__icons {
  grid-area: icons;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  /* Prevent overflow */
  flex-shrink: 0;
}

.header--black .header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Compact on mobile */
  width: 3.8rem;
  height: 3.8rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: color var(--duration-default);
  flex-shrink: 0;
}
.header--black .header__icon:hover { color: #fff; }

/* Mobile icon sizes — compact */
.header--black .header__icon svg { width: 1.8rem; height: 1.8rem; }
.header--black .header__icon--cart svg { width: 2.2rem; height: 2.2rem; }

/* Hide account icon on mobile (only show on desktop, like reference) */
.header--black .header__icon--account { display: none; }

@media screen and (min-width: 750px) {
  .header--black .header__icon { width: 4.4rem; height: 4.4rem; }
  .header--black .header__icon svg { width: 2rem; height: 2rem; }
  .header--black .header__icon--cart svg { width: 2.6rem; height: 2.6rem; }
  .header--black .header__icon--account { display: flex; }
}

@media screen and (min-width: 990px) {
  .header--black .header__icon svg { width: 2rem; height: 2rem; }
  .header--black .header__icon--cart svg { width: 3rem; height: 3rem; }
}


/* Cart badge */
.cart-count-bubble {
  position: absolute;
  top: 0.4rem;
  right: 0.2rem;
  min-width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  font-family: var(--font-body-family);
}
.cart-count-bubble[style*="display:none"] { display: none !important; }

/* ── Search Modal ── */
.search-modal {
  background: #111;
  border-bottom: 0.1rem solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 199;
}

.search-modal__content {
  padding: 1.6rem 5rem;
  max-width: var(--page-width);
  margin: 0 auto;
}

.search-modal__form {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.search-modal__field {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.2rem;
  border-bottom: 0.1rem solid rgba(255,255,255,0.3);
  padding-bottom: 0.8rem;
}

.search-modal__field svg {
  width: 1.8rem;
  height: 1.8rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.search-modal__field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body-family);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
  padding: 0;
}

.search-modal__field input::placeholder { color: rgba(255,255,255,0.35); }

.search-modal__reset,
.search-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  padding: 0.4rem;
  transition: color var(--duration-default);
}
.search-modal__reset:hover,
.search-modal__close:hover { color: #fff; }
.search-modal__reset svg,
.search-modal__close svg { width: 1.8rem; height: 1.8rem; }

/* ── MOBILE DRAWER — Black bg (matching toguezparfums) ── */
.menu-drawer--black {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(36rem, 100vw);
  background: #000;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform var(--duration-extra-long) var(--ease-out-slow);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.menu-drawer--black.is-open { transform: translateX(0); }

/* Drawer scrollbar */
.menu-drawer--black::-webkit-scrollbar { width: 4px; }
.menu-drawer--black::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
.menu-drawer--black::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); }

.menu-drawer__inner-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 7rem; /* space for the close area */
}

.menu-drawer__navigation-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 3.2rem;
}

/* Nav list */
.menu-drawer__navigation { flex: 1; }

.menu-drawer__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-drawer__menu-item {
  display: block;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 0.1rem solid rgba(255,255,255,0.06);
  transition: color var(--duration-default), background var(--duration-default);
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-body-family);
  line-height: 1;
}

.menu-drawer__menu-item:hover,
.menu-drawer__menu-item:focus {
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.menu-drawer__menu-item--active {
  color: #fff;
}

/* SHOP BY BRAND submenu in drawer */
.menu-drawer__details {
  border-bottom: 0.1rem solid rgba(255,255,255,0.06);
}
.menu-drawer__details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}
.menu-drawer__details summary::-webkit-details-marker { display: none; }

.menu-drawer__arrow {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.menu-drawer__arrow .icon-arrow { display: block; }
.menu-drawer__arrow .icon-caret { display: none; }

/* When open, show caret only */
.menu-drawer__details[open] .menu-drawer__arrow .icon-arrow { display: none; }
.menu-drawer__details[open] .menu-drawer__arrow .icon-caret { display: block; }

.menu-drawer__arrow svg {
  width: 1.4rem;
  height: 1.4rem;
  color: rgba(255,255,255,0.4);
}

/* Submenu panel */
.menu-drawer__submenu {
  background: rgba(255,255,255,0.03);
}

.menu-drawer__inner-submenu {
  padding: 0;
}

.menu-drawer__back-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  border-bottom: 0.1rem solid rgba(255,255,255,0.06);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-body-family);
  transition: color var(--duration-default);
}
.menu-drawer__back-btn:hover { color: #fff; }
.menu-drawer__back-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(180deg);
}

.menu-drawer__submenu .menu-drawer__menu-item {
  font-size: 1.3rem;
  padding: 1.2rem 2.4rem 1.2rem 3.2rem;
  text-transform: none;
  letter-spacing: 0.04rem;
  border-bottom-color: rgba(255,255,255,0.04);
}

/* Utility links at bottom */
.menu-drawer__utility-links {
  padding: 2.4rem;
  border-top: 0.1rem solid rgba(255,255,255,0.08);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-drawer__account {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--duration-default);
}
.menu-drawer__account:hover { color: #fff; }
.menu-drawer__account svg { width: 2rem; height: 2rem; }

/* Social links in drawer */
.list-social {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.list-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color var(--duration-default);
  text-decoration: none;
}
.list-social__link:hover { color: #fff; }
.list-social__link svg { width: 2rem; height: 2rem; }

/* ── Overlay ── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 350;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
.menu-overlay.active {
  display: block;
  animation: fadeIn var(--duration-medium) ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* --------------------------------------------------------------------------
   HERO SLIDER — Shopify Dawn style (toguezparfums)
   -------------------------------------------------------------------------- */

/* ── Slideshow section wrapper ── */
.slideshow {
  position: relative;
  overflow: hidden;
  background: #000;
  line-height: 0;
  /* ارتفاع ثابت بناءً على نسبة العرض للارتفاع — يجعل كلا الصورتين بنفس الحجم */
  aspect-ratio: 16 / 7;
  width: 100%;
}

@media screen and (min-width: 990px) {
  .slideshow {
    aspect-ratio: 16 / 6;
    max-height: 80rem;
  }
}

/* ── Each slide — all absolute, container controls height ── */
.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-slow);
  pointer-events: none;
}

.slideshow__slide.active {
  opacity: 1;
  pointer-events: auto;
  /* لا position: relative هنا — الـ container هو الذي يتحكم بالحجم */
}

/* ── Image container — fills slide completely ── */
.slideshow__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.slideshow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Dark gradient overlay — left to right, like toguezparfums ── */
.slideshow__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.05) 70%,
    transparent 100%
  );
}

/* ── page-width utility used inside slides ── */
.banner--desktop-transparent {
  background: transparent;
}

/* ── Banner content — positioned over the media, top-left ── */
.banner__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  padding: 3.2rem 1.5rem;
  line-height: 1;
}

.banner__content--top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

@media screen and (min-width: 750px) {
  .banner__content { padding: 4rem 5rem; }
}

@media screen and (min-width: 990px) {
  .banner__content { padding: 5rem 5rem 6rem; }
}

/* ── Banner box — dark semi-transparent box (color-scheme-3 gradient) ── */
.banner__box,
.slideshow__text {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 2.4rem 2.8rem;
  max-width: 46rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

@media screen and (min-width: 750px) {
  .banner__box,
  .slideshow__text { padding: 3.2rem 3.6rem; max-width: 52rem; }
}

@media screen and (min-width: 990px) {
  .banner__box,
  .slideshow__text { padding: 4rem 4.8rem; max-width: 58rem; }
}

/* ── Text alignment helpers ── */
.slideshow__text--left { text-align: left; }

@media screen and (max-width: 749px) {
  .slideshow__text-mobile--center { text-align: center; align-items: center; }
}

/* ── Banner heading (inline-richtext h1) ── */
.banner__heading {
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  margin: 0;
}

.banner__heading strong,
.banner__heading.inline-richtext strong { font-weight: 700; }

@media screen and (min-width: 750px) {
  .banner__heading { font-size: calc(var(--font-heading-scale) * 3.8rem); }
}

@media screen and (min-width: 990px) {
  .banner__heading { font-size: calc(var(--font-heading-scale) * 4.8rem); }
}

/* ── Banner subtext / promo code line ── */
.banner__text {
  margin: 0;
  line-height: 1.4;
}

.banner__text p { margin: 0; font-size: 1.3rem; letter-spacing: 0.06rem; }

.banner__text a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
  text-decoration-thickness: 0.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.banner__text a:hover { color: #fff; }

@media screen and (min-width: 750px) {
  .banner__text p { font-size: 1.4rem; }
}

/* ── Banner buttons row ── */
.banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.2rem;
}

/* "SAVE NOW" style — solid white bg, black text on dark hero */
.banner__buttons .button--primary {
  background: #fff;
  color: #000;
  border: 0.1rem solid #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  transition: background var(--duration-default), color var(--duration-default);
}

.banner__buttons .button--primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  opacity: 1;
}

@media screen and (min-width: 750px) {
  .banner__buttons .button--primary { font-size: 1.4rem; padding: 1.4rem 3.2rem; }
}

/* ── Hero CTA (legacy .btn-hero) ── */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border: 0.1rem solid #fff;
  padding: 1.2rem 2.8rem;
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration-default), color var(--duration-default);
  line-height: 1;
}

.btn-hero:hover { background: transparent; color: #fff; }

@media screen and (min-width: 750px) {
  .btn-hero { font-size: 1.4rem; padding: 1.4rem 3.2rem; }
}

/* ── Slider controls bar — full-width BLACK bar BELOW the slide ── */
/* Matches: <div class="slideshow__controls slideshow__controls--top slider-buttons"> */
.slideshow__controls.slider-buttons {
  position: static;          /* sits in normal flow, below .slideshow__slide.active */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  background: #000;
  border-top: 0.1rem solid rgba(255,255,255,0.08);
  padding: 0.5rem 1.6rem;
  min-height: 4.4rem;
  z-index: 5;
  line-height: 1;
}

/* ── Prev / Next arrow buttons ── */
.slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: none;
  background: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  padding: 0;
  transition: color var(--duration-default);
  flex-shrink: 0;
}

.slider-button:hover { color: #fff; }

.slider-button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-button .icon-caret {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform var(--duration-default);
}

/* Caret points left for prev, right for next */
.slider-button--prev .icon-caret { transform: rotate(90deg); }
.slider-button--prev:hover .icon-caret { transform: rotate(90deg) scale(1.15); }
.slider-button--next .icon-caret { transform: rotate(-90deg); }
.slider-button--next:hover .icon-caret { transform: rotate(-90deg) scale(1.15); }

/* ── Dot counter ── */
.slider-counter--dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  flex: 1;
}

.slideshow__control-wrapper {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.slider-counter__link--dots {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-counter__link--dots .dot {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  transition: background var(--duration-default), transform var(--duration-default);
}

.slider-counter__link--dots.slider-counter__link--active .dot,
.slider-counter__link--dots[aria-current="true"] .dot {
  background: #fff;
  transform: scale(1.25);
}

.slider-counter__link--dots:hover .dot { background: rgba(255,255,255,0.7); }

/* ── Pause / Play toggle ── */
.slideshow__autoplay.slider-button { width: 3.6rem; height: 3.6rem; }

.slideshow__autoplay .icon-pause,
.slideshow__autoplay .icon-play { width: 1rem; height: 1rem; }

/* Hide whichever icon isn't active */
.slideshow__autoplay .icon-play { display: none; }
.slideshow__autoplay.paused .icon-pause { display: none; }
.slideshow__autoplay.paused .icon-play  { display: block; }

/* --------------------------------------------------------------------------
   MARQUEE — toguezparfums bottom strip
   -------------------------------------------------------------------------- */
.marquee-container {
  background: #000;
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  border-top: 0.1rem solid rgba(255,255,255,0.08);
}

.marquee-text {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding-left: 100%;
}

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

/* Keep old marquee-section / marquee-track styles for backward compat */
.marquee-section {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.4rem 0;
  background: rgb(var(--color-background));
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
}

.marquee-track {
  display: inline-flex;
  gap: 6rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
  white-space: nowrap;
}


/* --------------------------------------------------------------------------
   BUTTONS — Matching toguezparfums exactly
   -------------------------------------------------------------------------- */
.btn,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border: var(--buttons-border-width) solid transparent;
  padding: 1.5rem 3rem;
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  font-weight: var(--font-body-weight-bold);
  letter-spacing: 0.1rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--buttons-radius);
  transition: all var(--duration-default) ease;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1;
}

/* Primary */
.button,
.btn,
.btn-primary {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  color: rgb(var(--color-button-text));
  border-color: rgba(var(--color-button), var(--alpha-button-border));
}
.button:hover,
.btn:hover,
.btn-primary:hover {
  opacity: 0.85;
  color: rgb(var(--color-button-text));
}

/* Secondary (outline) */
.button--secondary,
.btn-secondary {
  background-color: transparent;
  color: rgb(var(--color-foreground));
  border-color: rgba(var(--color-foreground), 0.55);
}
.button--secondary:hover,
.btn-secondary:hover {
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
}

/* White button (hero area) */
.button--white,
.btn-white {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.button--white:hover,
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}

/* Ghost (on dark) */
.button--outline-white,
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.button--outline-white:hover,
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* Small */
.button--sm,
.btn-sm {
  padding: 1rem 2rem;
  font-size: 1.3rem;
}

/* Large */
.button--lg,
.btn-lg {
  padding: 1.8rem 4rem;
  font-size: 1.5rem;
}

/* Full width */
.button--full,
.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   FEATURED COLLECTION / PRODUCTS GRID
   -------------------------------------------------------------------------- */
.collection {
  padding: 5rem 0;
}

@media screen and (min-width: 750px) {
  .collection { padding: 7rem 0; }
}

.collection__title {
  text-align: center;
  margin-bottom: 3.2rem;
}

.collection__title h2 {
  margin-bottom: 0.8rem;
}

.collection__title p {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-mobile-vertical-spacing) var(--grid-mobile-horizontal-spacing);
}

@media screen and (min-width: 750px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-desktop-vertical-spacing) var(--grid-desktop-horizontal-spacing);
  }
}

@media screen and (min-width: 990px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   PRODUCT CARD — Matching toguezparfums exactly
   -------------------------------------------------------------------------- */
/* ──────────────────────────────────────────────────────────────────────────
   PRODUCT CARD — toguezparfums.com style
   • Square media area, image contained with padding (bottle-friendly)
   • Dual-image crossfade on hover; single-image gets a subtle zoom
   • Clean left-aligned text below, accent-coloured price
   ────────────────────────────────────────────────────────────────────────── */

/* Wrapper */
.card-wrapper {
  position: relative;
  background: rgb(var(--color-background));
}

/* Card column layout */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: rgb(var(--color-background));
}

/* ── Media area: 1 : 1 ratio, white background ── */
.card__media {
  position: relative;
  padding-bottom: 100%; /* square */
  overflow: hidden;
  background: rgb(var(--color-background));
}

/* Both images sit absolutely inside the media area */
.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
  transition:
    opacity   0.45s ease,
    transform 0.60s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Primary image */
.card__media--primary {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

/* Secondary image: hidden, on top */
.card__media--secondary {
  opacity: 0;
  z-index: 2;
  transform: scale(1.03); /* slight pre-scale for polish */
}

/* ── Hover: crossfade to secondary ── */
.card-wrapper:hover .card__media--primary   { opacity: 0; transform: scale(1.04); }
.card-wrapper:hover .card__media--secondary { opacity: 1; transform: scale(1);    }

/* ── Single-image fallback: gentle zoom only ── */
.card-wrapper--single-img:hover .card__media--primary {
  opacity: 1;
  transform: scale(1.06);
}

/* ── Quick-add button (slides up on hover) ── */
.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.card-wrapper:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-add__submit {
  display: block;
  width: 100%;
  padding: 1.2rem 1.6rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: none;
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.quick-add__submit:hover { background: rgba(var(--color-foreground), 0.82); }

/* ── Card information (text block below image) ── */
.card__information {
  padding: 1.4rem 0 1.8rem;
  text-align: var(--product-card-text-alignment, left);
}

/* Brand / vendor */
.card__vendor {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
  color: rgba(var(--color-foreground), 0.5);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

/* Product name */
.card__name {
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: rgb(var(--color-foreground));
}

.card__name a {
  color: rgba(var(--color-foreground), 0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.card__name a:hover { color: rgb(var(--color-foreground)); }

/* Stars / Rating — kept subtle */
.rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.rating__stars {
  font-size: 1.1rem;
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.55);
}

.rating__count {
  font-size: 1.05rem;
  color: rgba(var(--color-foreground), 0.4);
}

/* Price row */
.price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Sale / current price — accent blue matching toguezparfums */
.price__sale {
  font-size: 1.4rem;
  font-weight: 400;
  color: #004cff;
}

/* Crossed-out original price */
.price__compare {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(var(--color-foreground), 0.38);
  text-decoration: line-through;
}

/* ── Badge ── */
.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  padding: 0.35rem 0.9rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  border-radius: var(--badge-corner-radius, 4rem);
}

.badge--sale {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.badge--new {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.badge--sold-out {
  background: rgba(var(--color-foreground), 0.45);
  color: rgb(var(--color-background));
}

/* --------------------------------------------------------------------------
   FEATURED COLLECTION — "New Arrivals" or similar section
   -------------------------------------------------------------------------- */
.featured-collection {
  padding: 5rem 0;
  background: rgb(var(--color-background));
}

@media screen and (min-width: 750px) {
  .featured-collection { padding: 7rem 0; }
}

.featured-collection__view-all {
  display: flex;
  justify-content: center;
  margin-top: 3.2rem;
}

/* --------------------------------------------------------------------------
   COLLECTION GRID (Shop page)
   -------------------------------------------------------------------------- */
.collection-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-mobile-vertical-spacing) var(--grid-mobile-horizontal-spacing);
}

@media screen and (min-width: 750px) {
  .collection-list { grid-template-columns: repeat(3, 1fr); }
}

@media screen and (min-width: 990px) {
  .collection-list { grid-template-columns: repeat(4, 1fr); }
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3/4;
}

.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-extra-long) var(--ease-out-slow);
}
.collection-card:hover img { transform: scale(1.05); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.collection-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.6rem;
  color: #fff;
}

.collection-card__title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.4rem;
}

.collection-card__count {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
}

/* --------------------------------------------------------------------------
   IMAGE WITH TEXT SECTION (Brand story or promo)
   -------------------------------------------------------------------------- */
.image-with-text {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 750px) {
  .image-with-text {
    grid-template-columns: 1fr 1fr;
    min-height: 54rem;
  }
}

.image-with-text__media {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgb(var(--color-bg-2));
}

@media screen and (min-width: 750px) {
  .image-with-text__media { aspect-ratio: auto; }
}

.image-with-text__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-extra-long) var(--ease-out-slow);
}

.image-with-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  background: rgb(var(--color-bg-3));
  color: rgb(var(--color-fg-3));
}

@media screen and (min-width: 750px) {
  .image-with-text__content { padding: 6rem; }
}

@media screen and (min-width: 990px) {
  .image-with-text__content { padding: 8rem; }
}

.image-with-text__subheading {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-fg-3), 0.6);
  margin-bottom: 1.6rem;
}

.image-with-text__heading {
  font-size: calc(var(--font-heading-scale) * 3rem);
  font-weight: 400;
  color: rgb(var(--color-fg-3));
  margin: 0 0 2rem;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .image-with-text__heading { font-size: calc(var(--font-heading-scale) * 4rem); }
}

.image-with-text__text {
  font-size: 1.5rem;
  color: rgba(var(--color-fg-3), 0.75);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 48rem;
}

/* --------------------------------------------------------------------------
   MARQUEE / MOVING TEXT
   -------------------------------------------------------------------------- */
.marquee-section {
  overflow: hidden;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding: 1.6rem 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.7);
  flex-shrink: 0;
}

.marquee-item::after {
  content: '✦';
  font-size: 0.7rem;
  color: rgba(var(--color-foreground), 0.3);
}

/* --------------------------------------------------------------------------
   TESTIMONIALS / REVIEWS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials {
  padding: 5rem 0;
  background: rgb(var(--color-bg-2));
}

@media screen and (min-width: 750px) {
  .testimonials { padding: 8rem 0; }
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media screen and (min-width: 750px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgb(var(--color-background));
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.testimonial-card__stars {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: rgb(var(--color-foreground));
}

.testimonial-card__text {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-card__avatar {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0;
}

.testimonial-card__location {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.5);
  margin: 0;
}

/* --------------------------------------------------------------------------
   RICH TEXT / CONTENT SECTION
   -------------------------------------------------------------------------- */
.rich-text {
  padding: 5rem 0;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .rich-text { padding: 8rem 0; }
}

.rich-text__wrapper {
  max-width: 82rem;
  margin: 0 auto;
}

.rich-text__heading {
  margin-bottom: 1.6rem;
}

.rich-text__text {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

/* --------------------------------------------------------------------------
   EMAIL SIGNUP / NEWSLETTER
   -------------------------------------------------------------------------- */
.email-signup {
  padding: 5rem 0;
  background: rgb(var(--color-bg-3));
  color: rgb(var(--color-fg-3));
  text-align: center;
}

@media screen and (min-width: 750px) {
  .email-signup { padding: 8rem 0; }
}

.email-signup__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-fg-3), 0.5);
  margin-bottom: 1.2rem;
}

.email-signup__heading {
  font-size: calc(var(--font-heading-scale) * 3.2rem);
  font-weight: 400;
  color: rgb(var(--color-fg-3));
  margin: 0 0 1.2rem;
}

@media screen and (min-width: 750px) {
  .email-signup__heading { font-size: calc(var(--font-heading-scale) * 4rem); }
}

.email-signup__desc {
  font-size: 1.5rem;
  color: rgba(var(--color-fg-3), 0.6);
  margin-bottom: 3.2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.email-signup__form {
  display: flex;
  gap: 0;
  max-width: 44rem;
  margin: 0 auto;
  border: 0.1rem solid rgba(var(--color-fg-3), 0.3);
}

.email-signup__input {
  flex: 1;
  padding: 1.4rem 1.6rem;
  background: transparent;
  border: none;
  color: rgb(var(--color-fg-3));
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  outline: none;
}
.email-signup__input::placeholder {
  color: rgba(var(--color-fg-3), 0.4);
}

.email-signup__submit {
  padding: 1.4rem 2.4rem;
  background: rgb(var(--color-fg-3));
  color: rgb(var(--color-bg-3));
  border: none;
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  font-weight: var(--font-body-weight-bold);
  letter-spacing: 0.08rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--duration-default);
  text-transform: uppercase;
}
.email-signup__submit:hover { opacity: 0.85; }

/* --------------------------------------------------------------------------
   FOOTER — Matching toguezparfums
   -------------------------------------------------------------------------- */
.site-footer {
  background: rgb(var(--color-bg-3));
  color: rgba(var(--color-fg-3), 0.75);
  padding: 5rem 0 0;
}

@media screen and (min-width: 750px) {
  .site-footer { padding: 6rem 0 0; }
}

.footer__content-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 750px) {
  .footer__content-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

/* Footer Logo */
.footer__brand-logo {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--color-fg-3));
  margin-bottom: 1.6rem;
  display: block;
}

.footer__brand-description {
  font-size: 1.4rem;
  color: rgba(var(--color-fg-3), 0.55);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  max-width: 30rem;
}

/* Footer Socials */
.footer__socials {
  display: flex;
  gap: 1.2rem;
}

.footer__social-link {
  width: 3.6rem;
  height: 3.6rem;
  border: 0.1rem solid rgba(var(--color-fg-3), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-fg-3), 0.7);
  text-decoration: none;
  transition: all var(--duration-default);
  font-size: 1.6rem;
}
.footer__social-link:hover {
  border-color: rgb(var(--color-fg-3));
  color: rgb(var(--color-fg-3));
}
.footer__social-link svg { width: 1.6rem; height: 1.6rem; }

/* Footer Nav */
.footer-block__heading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: rgb(var(--color-fg-3));
  margin-bottom: 1.6rem;
}

.footer-block__details-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-block__details-content a {
  font-size: 1.4rem;
  color: rgba(var(--color-fg-3), 0.6);
  text-decoration: none;
  transition: color var(--duration-default);
}
.footer-block__details-content a:hover {
  color: rgb(var(--color-fg-3));
}

/* Footer contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: rgba(var(--color-fg-3), 0.6);
}

.footer-contact-item svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Footer Bottom */
.footer__content-bottom {
  border-top: 0.1rem solid rgba(var(--color-fg-3), 0.1);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer__copyright {
  font-size: 1.2rem;
  color: rgba(var(--color-fg-3), 0.4);
}

.footer__creator-link {
  color: #e5c158; /* Vibrant luxury gold */
  font-weight: 700;
  text-decoration: none;
  border-bottom: 0.1rem solid rgba(229, 193, 88, 0.4);
  transition: all var(--duration-default) ease;
  padding-bottom: 0.1rem;
}

.footer__creator-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  text-shadow: 0 0 8px rgba(229, 193, 88, 0.8);
}

.footer__payment-logos {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border: 0.1rem solid rgba(var(--color-fg-3), 0.2);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(var(--color-fg-3), 0.6);
  letter-spacing: 0.05rem;
  border-radius: 0.2rem;
}

/* --------------------------------------------------------------------------
   SHOP PAGE LAYOUT
   -------------------------------------------------------------------------- */
.template-collection {
  padding: 0 0 7rem;
}

.collection-hero {
  background: rgb(var(--color-bg-2));
  padding: 4rem 0;
  text-align: center;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
}

.collection-hero__title {
  font-size: calc(var(--font-heading-scale) * 3.5rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.collection-hero__count {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.5);
}

/* Facets (Filters) */
.facets-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  margin-bottom: 3.2rem;
}

.facets__summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  padding: 0.8rem 0;
  border: none;
  background: none;
  font-family: inherit;
}

.facet-filters {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.facet-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  font-size: 1.3rem;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  transition: all var(--duration-default);
  border-radius: var(--variant-pills-radius);
  white-space: nowrap;
  background: none;
  font-family: inherit;
}
.facet-chip:hover,
.facet-chip.active {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

/* Sort */
.sort-by {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
}

.sort-by__select {
  padding: 0.8rem 1.2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: inherit;
  font-size: 1.4rem;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.4rem;
  padding-right: 3rem;
}

/* Product count */
.product-count {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.5);
}

/* --------------------------------------------------------------------------
   PRODUCT DETAIL PAGE
   -------------------------------------------------------------------------- */
.product {
  padding: 4rem 0 7rem;
}

@media screen and (min-width: 750px) {
  .product { padding: 6rem 0 9rem; }
}

.product__media-gallery {
  display: grid;
  gap: 0.8rem;
}

.product__media-gallery .product__media-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgb(var(--color-bg-2));
}

.product__media-gallery .product__media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-extra-long) var(--ease-out-slow);
}

.product__thumbnails {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
}

.product__thumbnail {
  flex-shrink: 0;
  width: 8rem;
  height: 10rem;
  overflow: hidden;
  cursor: pointer;
  border: 0.2rem solid transparent;
  transition: border-color var(--duration-default);
}
.product__thumbnail.active {
  border-color: rgb(var(--color-foreground));
}
.product__thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product__info {
  padding: 0;
}

.product__vendor {
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 0.8rem;
}

.product__title {
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 400;
  margin: 0 0 1.2rem;
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  .product__title { font-size: calc(var(--font-heading-scale) * 3.5rem); }
}

.product__price {
  font-size: 2rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.product__price-compare {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.4);
  text-decoration: line-through;
}

/* Variant selector */
.variant-picker {
  margin-bottom: 2.4rem;
}

.variant-picker__label {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  margin-bottom: 1.2rem;
  display: block;
  color: rgb(var(--color-foreground));
}

.variant-picker__options {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.variant-pill {
  padding: 0.8rem 1.6rem;
  border: var(--variant-pills-border-width) solid rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: var(--variant-pills-radius);
  background: none;
  color: rgb(var(--color-foreground));
  transition: all var(--duration-default);
}
.variant-pill:hover {
  border-color: rgb(var(--color-foreground));
}
.variant-pill.active {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

/* Qty selector */
.quantity {
  display: flex;
  align-items: center;
  border: 0.1rem solid rgba(var(--color-foreground), 0.25);
  width: fit-content;
}

.quantity__button {
  width: 4.4rem;
  height: 4.4rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--duration-default);
}
.quantity__button:hover { opacity: 0.7; }

.quantity__input {
  width: 5rem;
  height: 4.4rem;
  text-align: center;
  border: none;
  border-left: 0.1rem solid rgba(var(--color-foreground), 0.15);
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.15);
  font-family: inherit;
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
  background: none;
  -moz-appearance: textfield;
  outline: none;
}
.quantity__input::-webkit-inner-spin-button,
.quantity__input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Product Form */
.product-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Product Tabs */
.product-tabs {
  margin-top: 5rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.tabs-nav {
  display: flex;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 1.6rem 2rem;
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(var(--color-foreground), 0.55);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 0.2rem solid transparent;
  margin-bottom: -0.1rem;
  transition: all var(--duration-default);
  letter-spacing: 0.06rem;
}
.tab-btn:hover {
  color: rgb(var(--color-foreground));
}
.tab-btn.active {
  color: rgb(var(--color-foreground));
  border-bottom-color: rgb(var(--color-foreground));
  font-weight: 600;
}

.tab-panel {
  display: none;
  padding: 3.2rem 0;
}
.tab-panel.active { display: block; }

/* --------------------------------------------------------------------------
   CART PAGE
   -------------------------------------------------------------------------- */
.cart {
  padding: 4rem 0 7rem;
}

.cart__title-wrapper {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding-bottom: 2rem;
}

.cart__title {
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 400;
}

.cart__item-count {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.5);
}

.cart-contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

@media screen and (min-width: 750px) {
  .cart-contents {
    grid-template-columns: 1fr 36rem;
    gap: 4rem;
    align-items: start;
  }
}

/* Cart Item */
.cart-item {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
}

@media screen and (min-width: 750px) {
  .cart-item { grid-template-columns: 12rem 1fr; }
}

.cart-item__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgb(var(--color-bg-2));
}
.cart-item__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cart-item__vendor {
  font-size: 1.1rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.45);
}

.cart-item__name {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
}

.cart-item__variant {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.55);
}

.cart-item__price {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
}

.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-item__remove {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.45);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  padding: 0;
  transition: color var(--duration-default);
}
.cart-item__remove:hover { color: rgb(var(--color-foreground)); }

/* Cart Footer */
.cart-footer {
  background: rgb(var(--color-bg-2));
  padding: 2.4rem;
}

.cart-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-block__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
  font-weight: 600;
  padding-top: 1.6rem;
  margin-top: 0.4rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

.cart__small-text {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.5);
  text-align: center;
}

/* --------------------------------------------------------------------------
   CHECKOUT PAGE
   -------------------------------------------------------------------------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding: 4rem 0 7rem;
}

@media screen and (min-width: 750px) {
  .checkout-layout {
    grid-template-columns: 1fr 40rem;
    gap: 5rem;
    align-items: start;
  }
}

.checkout-form__section {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.checkout-form__section:last-of-type {
  border-bottom: none;
}

.checkout-form__section-title {
  font-size: calc(var(--font-heading-scale) * 1.8rem);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 2.8rem;
  height: 2.8rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 600;
}

/* Form fields */
.field {
  margin-bottom: 1.6rem;
}

.field__label {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.04rem;
  color: rgba(var(--color-foreground), 0.75);
  margin-bottom: 0.6rem;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: var(--inputs-border-width) solid rgba(var(--color-foreground), var(--inputs-border-opacity));
  border-radius: var(--inputs-radius);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  outline: none;
  transition: border-color var(--duration-default);
  -webkit-appearance: none;
  appearance: none;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: rgb(var(--color-foreground));
}

.field__input.error,
.field__select.error {
  border-color: var(--color-error);
}

.field__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.4rem;
  padding-right: 3.6rem;
  cursor: pointer;
}

.field__error {
  font-size: 1.2rem;
  color: var(--color-error);
  margin-top: 0.4rem;
  display: none;
}
.field.has-error .field__error { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

/* Delivery options */
.delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  cursor: pointer;
  transition: all var(--duration-default);
  margin-bottom: 0.8rem;
}
.delivery-option.selected,
.delivery-option:has(input:checked) {
  border-color: rgb(var(--color-foreground));
  background: rgba(var(--color-foreground), 0.02);
}

.delivery-option input[type="radio"] {
  accent-color: rgb(var(--color-foreground));
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.delivery-option__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.2rem;
}

.delivery-option__desc {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.55);
  margin: 0;
}

/* Payment methods */
.payment-method {
  padding: 1.6rem;
  border: 0.2rem solid rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(var(--color-foreground), 0.02);
}

.payment-method__icon { font-size: 2.4rem; }

.payment-method__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.2rem;
}

.payment-method__desc {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.55);
  margin: 0;
}

/* Order summary sidebar */
.order-summary {
  background: rgb(var(--color-bg-2));
  padding: 2.4rem;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.order-summary__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: rgb(var(--color-foreground));
}

.order-summary__item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.order-summary__item-image {
  width: 6rem;
  height: 8rem;
  overflow: hidden;
  background: rgb(var(--color-bg-2));
  position: relative;
  flex-shrink: 0;
}
.order-summary__item-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.order-summary__item-qty {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1.8rem;
  height: 1.8rem;
  background: rgba(var(--color-foreground), 0.8);
  color: rgb(var(--color-background));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.order-summary__item-info {
  flex: 1;
}

.order-summary__item-name {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.2rem;
}

.order-summary__item-variant {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.5);
}

.order-summary__item-price {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  margin-left: auto;
}

.order-summary__totals {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.12);
  padding-top: 1.6rem;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
}

.total-row.total-row--total {
  font-size: 1.6rem;
  font-weight: 600;
  padding-top: 1rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.12);
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   SUCCESS PAGE
   -------------------------------------------------------------------------- */
.order-success {
  padding: 6rem 0 9rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.order-success__icon {
  width: 8rem;
  height: 8rem;
  border: 0.2rem solid rgb(var(--color-foreground));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  margin: 0 auto 2.4rem;
  color: rgb(var(--color-foreground));
  animation: checkIn 0.5s var(--ease-out-slow) forwards;
}

@keyframes checkIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.order-success__title {
  font-size: calc(var(--font-heading-scale) * 3.5rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.order-success__desc {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.6);
  max-width: 52rem;
  margin: 0 auto 3.2rem;
  line-height: 1.8;
}

.order-info-box {
  background: rgb(var(--color-bg-2));
  padding: 2.4rem;
  max-width: 56rem;
  margin: 0 auto 3.2rem;
  text-align: left;
}

.order-info-box__title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 1.6rem;
}

.order-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
}

.order-info-row:last-child { border-bottom: none; }
.order-info-row span:first-child { color: rgba(var(--color-foreground), 0.55); }
.order-info-row strong { color: rgb(var(--color-foreground)); }

.order-steps {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-width: 12rem;
  text-align: center;
}

.order-step__icon {
  width: 5.2rem;
  height: 5.2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.order-step__text {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.6);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.5);
  padding: 1.6rem 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: none;
}
.breadcrumb a:hover { color: rgb(var(--color-foreground)); }

.breadcrumb__divider { color: rgba(var(--color-foreground), 0.3); }

/* --------------------------------------------------------------------------
   TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  padding: 1.4rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 34rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all var(--duration-medium) ease;
  pointer-events: auto;
  box-shadow: 0 0.4rem 1.2rem rgba(var(--color-shadow), 0.15);
  border-radius: var(--buttons-radius);
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--success { background: rgb(var(--color-foreground)); }
.toast--error { background: #ef4444; color: #fff; }

.toast__icon { font-size: 1.6rem; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(1rem);
  transition: all var(--duration-default) ease;
  pointer-events: none;
  border-radius: var(--buttons-radius);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { opacity: 0.8; }

/* --------------------------------------------------------------------------
   CART DRAWER (side-sliding)
   -------------------------------------------------------------------------- */
.cart-notification {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(40rem, 100vw);
  background: rgb(var(--color-background));
  z-index: 300;
  transition: right var(--duration-extra-long) var(--ease-out-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -0.4rem 0 1.2rem rgba(var(--color-shadow), 0.1);
}

.cart-notification.active {
  right: 0;
}

.cart-notification__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-notification__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.cart-notification__close {
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: opacity var(--duration-default);
}
.cart-notification__close:hover { opacity: 0.7; }

.cart-notification__items {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.4rem;
}

.cart-notification__footer {
  padding: 2rem 2.4rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-notification__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: rgb(var(--color-foreground));
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--duration-extra-long) var(--ease-out-slow),
              transform var(--duration-extra-long) var(--ease-out-slow);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--delay-1 { transition-delay: 0.1s; }
.scroll-reveal--delay-2 { transition-delay: 0.2s; }
.scroll-reveal--delay-3 { transition-delay: 0.3s; }
.scroll-reveal--delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   ADMIN OVERRIDES & PAGE-SPECIFIC (shared breadcrumb/header)
   -------------------------------------------------------------------------- */
.page-title-section {
  background: rgb(var(--color-bg-2));
  padding: 3.2rem 0;
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
}

.page-title-section h1 {
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   SECTION HEADINGS (reusable across pages)
   -------------------------------------------------------------------------- */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.section-heading__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.5);
  margin-bottom: 0.8rem;
}

.section-heading__title {
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 400;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .section-heading__title { font-size: calc(var(--font-heading-scale) * 3.5rem); }
}

.section-heading__link {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  letter-spacing: 0.05rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.3);
  padding-bottom: 0.2rem;
  transition: border-color var(--duration-default);
  white-space: nowrap;
}
.section-heading__link:hover {
  border-bottom-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
}

/* --------------------------------------------------------------------------
   EMPTY STATE
   -------------------------------------------------------------------------- */
.empty-state {
  text-align: center;
  padding: 8rem 2rem;
}

.empty-state__title {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: rgb(var(--color-foreground));
}

.empty-state__desc {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 3.2rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   UTILITY SECTION BACKGROUNDS
   -------------------------------------------------------------------------- */
.color-scheme-1, .bg-white {
  background: rgb(var(--color-background));
}
.color-scheme-2, .bg-grey {
  background: rgb(var(--color-bg-2));
}
.color-scheme-3, .bg-black {
  background: rgb(var(--color-bg-3));
  color: rgb(var(--color-fg-3));
}

/* --------------------------------------------------------------------------
   BRANDS GRID SECTION
   -------------------------------------------------------------------------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

@media screen and (min-width: 750px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media screen and (min-width: 990px) {
  .brands-grid { grid-template-columns: repeat(5, 1fr); }
}

.brand-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 1.6rem;
  background: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.08);
  text-align: center;
  transition: all var(--duration-default) ease;
  gap: 0.6rem;
}

.brand-chip:hover {
  border-color: rgba(var(--color-foreground), 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--color-shadow), 0.08);
}

.brand-chip__name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
}

.brand-chip__sub {
  font-size: 1.1rem;
  color: rgba(var(--color-foreground), 0.45);
  letter-spacing: 0.04rem;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS — 4 columns on desktop
   -------------------------------------------------------------------------- */
@media screen and (min-width: 990px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Product card image override — handled in the card block above */

/* Collection card subtitle */
.collection-card__count {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   TOGUEZ-STYLE PRODUCT PAGE
   -------------------------------------------------------------------------- */
.toguez-product {
  padding-top: 3.8rem;
  padding-bottom: 4rem;
}

body.page--product .announcement-bar {
  display: none;
}

.toguez-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3.2rem;
}

.toguez-product__media {
  position: relative;
  min-width: 0;
}

.toguez-product__zoom {
  position: absolute;
  top: 4.8rem;
  left: 2.8rem;
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.12);
  border-radius: 50%;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.toguez-product__zoom svg {
  width: 1.6rem;
  height: 1.6rem;
}

.toguez-product__image-wrap {
  min-height: 44rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgb(var(--color-background));
  overflow: hidden;
}

.toguez-product__image {
  width: min(42rem, 76vw);
  height: auto;
  max-height: 56rem;
  object-fit: contain;
  transform: scale(1.22);
  transform-origin: top center;
}

.toguez-product__thumbs {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-top: 3.2rem;
  padding-left: 0;
}

.toguez-product__thumb {
  width: 13rem;
  height: 13rem;
  padding: 1rem;
  border: 0.1rem solid transparent;
  background: rgb(var(--color-background));
  cursor: pointer;
}

.toguez-product__thumb.active {
  border-color: rgb(var(--color-foreground));
}

.toguez-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.toguez-product__details {
  max-width: 44rem;
  min-width: 0;
}

.toguez-product__title {
  font-size: 2.8rem;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1.4rem;
}

.toguez-product__price {
  font-size: 1.8rem;
  line-height: 1.4;
  color: rgba(var(--color-foreground), 0.86);
  margin-bottom: 0.3rem;
}

.toguez-product__shipping,
.toguez-product__more {
  display: inline-block;
  color: rgba(var(--color-foreground), 0.58);
  font-size: 1.25rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.toguez-product__installment {
  margin: 1.6rem 0 1.6rem;
  font-size: 1.3rem;
  line-height: 1.55;
  color: rgba(var(--color-foreground), 0.72);
}

.toguez-product__option {
  margin-top: 1.6rem;
}

.toguez-product__label {
  display: block;
  margin: 0 0 0.9rem;
  color: rgba(var(--color-foreground), 0.55);
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 300;
}

.toguez-product__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.toguez-product .variant-pill {
  min-width: 7.2rem;
  height: 3.6rem;
  padding: 0 1.9rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
  border-radius: 3.6rem;
  background: rgb(var(--color-background));
  color: rgba(var(--color-foreground), 0.78);
  font-size: 1.35rem;
  font-weight: 300;
}

.toguez-product .variant-pill.active {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

.toguez-product .variant-pill.is-disabled {
  opacity: 0.36;
  text-decoration: line-through;
  cursor: not-allowed;
}

.toguez-product__quantity {
  display: grid;
  grid-template-columns: 4.7rem 4.7rem 4.7rem;
  width: 14.2rem;
  height: 4.8rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.62);
}

.toguez-product__quantity button,
.toguez-product__quantity input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: rgba(var(--color-foreground), 0.74);
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  text-align: center;
}

.toguez-product__quantity button {
  cursor: pointer;
}

.toguez-product__quantity input {
  -moz-appearance: textfield;
}

.toguez-product__quantity input::-webkit-inner-spin-button,
.toguez-product__quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.toguez-product__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toguez-product__add,
.toguez-product__buy {
  width: 100%;
  min-height: 4.8rem;
  border-radius: 0.3rem;
  font-family: var(--font-body-family);
  font-size: 1.55rem;
  letter-spacing: 0;
  cursor: pointer;
}

.toguez-product__add {
  border: 0.1rem solid rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  background: rgb(var(--color-background));
}

.toguez-product__buy {
  border: 0.1rem solid #5433f5;
  background: #5433f5;
  color: #fff;
  font-weight: 600;
}

.toguez-product__more {
  align-self: center;
  margin-top: 0.3rem;
}

.toguez-product__description {
  margin-top: 2.6rem;
  color: rgba(var(--color-foreground), 0.58);
  font-size: 1.45rem;
  line-height: 1.62;
}

.toguez-product__description h2 {
  margin-bottom: 2.6rem;
  color: rgb(var(--color-foreground));
  font-size: 1.95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.toguez-product__description h3 {
  margin: 2.2rem 0 1.3rem;
  color: rgb(var(--color-foreground));
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.toguez-product__description p {
  margin: 0;
}

.toguez-related {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

@media screen and (min-width: 990px) {
  .toguez-product {
    padding-top: 3.8rem;
  }

  .toguez-product__grid {
    grid-template-columns: minmax(0, 51.6rem) minmax(38rem, 44rem);
    justify-content: start;
    align-items: start;
    column-gap: 7.4rem;
  }

  .toguez-product__image-wrap {
    min-height: 50rem;
    justify-content: center;
  }

  .toguez-product__image {
    width: 44rem;
    max-height: 56rem;
    transform: scale(1.34);
  }

  .toguez-product__thumbs {
    margin-top: 2.2rem;
  }
}

@media screen and (max-width: 749px) {
  .toguez-product {
    padding-top: 3.2rem;
  }

  .toguez-product__details {
    max-width: none;
  }

  .toguez-product__image-wrap {
    min-height: 34rem;
  }

  .toguez-product__thumb {
    width: 9.6rem;
    height: 9.6rem;
  }

  .toguez-product__thumbs {
    gap: 1.6rem;
    margin-top: 1.6rem;
  }
}

/* ── CART DRAWER CUSTOM STYLING ── */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-medium) ease, visibility var(--duration-medium) ease;
  z-index: 299;
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-notification__item {
  display: flex;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  align-items: center;
}

.cart-notification__item:last-child {
  border-bottom: none;
}

.cart-notification__item-image-wrapper {
  width: 6.5rem;
  height: 8rem;
  overflow: hidden;
  background: rgb(var(--color-bg-2));
  flex-shrink: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.06);
}

.cart-notification__item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-notification__item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.cart-notification__item-name {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  color: rgb(var(--color-foreground));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-notification__item-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.cart-notification__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
  gap: 1rem;
}

/* Micro quantity selector for drawer */
.cart-notification__qty-selector {
  display: flex;
  align-items: center;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  border-radius: 2rem;
  overflow: hidden;
  height: 2.8rem;
}

.cart-notification__qty-btn {
  background: none;
  border: none;
  width: 2.8rem;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgb(var(--color-foreground));
  transition: background var(--duration-default);
  padding: 0;
}

.cart-notification__qty-btn:hover {
  background: rgba(var(--color-foreground), 0.05);
}

.cart-notification__qty-input {
  width: 2.2rem;
  text-align: center;
  border: none;
  background: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  padding: 0;
  margin: 0;
}

.cart-notification__item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.35);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--duration-default);
}

.cart-notification__item-remove:hover {
  color: #ef4444;
}

.cart-notification__item-remove svg {
  width: 1.5rem;
  height: 1.5rem;
}

.cart-notification__empty {
  text-align: center;
  padding: 6rem 2rem;
  color: rgba(var(--color-foreground), 0.5);
}

.cart-notification__empty-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: rgb(var(--color-foreground));
}

/* Button override for block */
.cart-notification__footer .button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border-radius: var(--buttons-radius);
  transition: all var(--duration-default) ease;
}

/* ── CART PAGE QUANTITY SELECTOR ── */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  border-radius: 2.4rem;
  overflow: hidden;
  height: 3.6rem;
  width: fit-content;
}

.qty-btn {
  background: none;
  border: none;
  width: 3.6rem;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
  transition: background var(--duration-default);
  padding: 0;
}

.qty-btn:hover {
  background: rgba(var(--color-foreground), 0.05);
}

.qty-input {
  width: 3rem;
  text-align: center;
  border: none;
  background: none;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  padding: 0;
  margin: 0;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── INPUT FIELDS & CHECKOUT PREMIUM STYLING ── */
.field__input, .field__select, .field__textarea {
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  transition: border-color var(--duration-default) ease, box-shadow var(--duration-default) ease;
}

.field__input:focus, .field__select:focus, .field__textarea:focus {
  border-color: rgb(var(--color-foreground));
  box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
}

.delivery-option {
  border-radius: var(--inputs-radius);
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  cursor: pointer;
  transition: all var(--duration-default) ease;
}

.delivery-option:hover {
  border-color: rgba(var(--color-foreground), 0.4);
  background: rgba(var(--color-foreground), 0.01);
}

/* ── ADDITIONAL PREMIUM CART & CHECKOUT STYLING ── */
.cart-summary__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
  margin-top: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.cart-shipping-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.25rem;
  color: rgba(var(--color-foreground), 0.65);
  padding: 1.2rem;
  background: rgba(var(--color-foreground), 0.02);
  margin: 1.6rem 0;
  border-left: 0.2rem solid rgb(var(--color-foreground));
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-trust-badges {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  color: rgba(var(--color-foreground), 0.65);
}

.cart-item__price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.cart-item__price-each {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(var(--color-foreground), 0.5);
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Form hints & Notes */
.form-hint {
  font-size: 1.15rem;
  color: rgba(var(--color-foreground), 0.5);
  display: block;
  margin-top: 0.4rem;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.8rem;
}

.checkout-terms-note {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.5);
  text-align: center;
  margin-top: 1.6rem;
}

.checkout-terms-note a {
  text-decoration: underline;
  color: rgb(var(--color-foreground));
}

.delivery-partners {
  margin-top: 2.4rem;
  padding: 1.6rem;
  background: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.delivery-partners__title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(var(--color-foreground), 0.5);
  margin-top: 0;
}

.delivery-partners__badges {
  display: flex;
  gap: 8px;
}

.payment-badge {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  border-radius: var(--buttons-radius);
}

.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}




