/* ============================================================
   Swiss Arabian landing — vanilla CSS
   Breakpoints: 600 / 768 / 990 / 1200 / 1400
   ============================================================ */

@font-face {
  font-family: "Benton Sans Wide";
  src: url("../fonts/benton-sans-wide/benton-sans-wide-extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans Wide";
  src: url("../fonts/benton-sans-wide/benton-sans-wide-book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans Wide";
  src: url("../fonts/benton-sans-wide/benton-sans-wide-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans Wide";
  src: url("../fonts/benton-sans-wide/benton-sans-wide-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans Wide";
  src: url("../fonts/benton-sans-wide/benton-sans-wide-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans Wide";
  src: url("../fonts/benton-sans-wide/benton-sans-wide-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fafafa;
  --paper: #ffffff;
  --ink: #212121;
  --ink-2: #181818;
  --coral: #ef776a;
  --coral-dark: #df5c4d;
  --brand: #A7604A;
  --navy: #242833;
  --line: rgba(33, 33, 33, 0.12);
  --font: 'Benton Sans Wide', -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Benton Sans Wide', -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --page: 130rem;
  --radius-btn: 30px;
  --header-h: 60px;
  --ai-dock-h: 80px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--ai-dock-h);
}

body.is-locked {
  overflow: hidden;
}

body.is-locked .ai-search {
  opacity: 0;
  pointer-events: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

/* ---- layout ---- */
.page-w {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 600px) {
  .page-w {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .page-w {
    padding: 0 40px;
  }
}

.section {
  padding: 64px 0;
}

.section--tight {
  padding: 0 0 16px;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
  .section--tight {
    padding: 0 0 32px;
  }
}

.section--after-features {
  padding-top: 16px;
}

.section--before-features {
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .section.section--after-features {
    padding: 16px 0 16px;
  }
  .section.section--before-features {
    padding: 80px 0 8px;
  }
}

.heading {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.heading strong {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-btn);
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease-out;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: transparent;
  color: var(--ink);
}

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn--full {
  width: 100%;
}

.btn--cart {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  width: 100%;
  border-radius: 8px;
  border-color: rgba(33, 33, 33, 0.1);
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
}
.btn--cart:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--stock {
  margin-top: 12px;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 12px;
}

.btn--shop {
  padding: 10px 16px;
}

.btn.is-added {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 2px rgba(33, 33, 33, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 990px) {
  .header-inner {
    padding: 0 24px;
  }
}

@media (min-width: 1200px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr auto;
  }
}

.header-left {
  grid-column: 1;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .header-left {
    justify-self: end;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.icon-burger,
.icon-close {
  width: 18px;
  height: 16px;
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link,
.mega-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.75);
  transition: color 0.2s ease;
}

.nav-link:hover,
.mega-trigger:hover .mega-btn,
.mega-trigger:focus-within .mega-btn {
  color: var(--ink);
}

.mega-trigger {
  position: relative;
}

.mega-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 0;
}

.mega-chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
}

.mega-trigger:hover .mega-chevron,
.mega-trigger:focus-within .mega-chevron {
  transform: rotate(180deg);
}

.mega-panel {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: var(--header-h);
  z-index: 40;
  width: 100%;
  transform: scaleY(0.95);
  transform-origin: top;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
  background: #fff;
  opacity: 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.mega-trigger:hover .mega-panel,
.mega-trigger:focus-within .mega-panel {
  visibility: visible;
  transform: scaleY(1);
  opacity: 1;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 16px;
}

.mega-grid--wide {
  gap: 40px;
}

@media (min-width: 768px) {
  .mega-grid {
    width: auto;
    min-width: 420px;
    padding: 40px;
  }
  .mega-grid--4 {
    grid-template-columns: repeat(4, minmax(160px, 220px));
    justify-content: start;
  }
  .mega-grid--3 {
    grid-template-columns: repeat(3, minmax(160px, 220px));
    justify-content: start;
  }
  .mega-grid--2 {
    grid-template-columns: repeat(2, minmax(180px, 260px));
    justify-content: start;
  }
}

.mega-link {
  font-size: 13px;
}
.mega-link:hover,
.mega-list a:hover {
  color: var(--coral);
}

.mega-label {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.5);
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.mega-shop {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 40px 48px;
  padding-top: 32px;
  padding-bottom: 36px;
  align-items: stretch;
}

.mega-shop-nav {
  padding-right: 32px;
  border-right: 1px solid rgba(33, 33, 33, 0.08);
}

.mega-shop-nav .mega-list {
  gap: 12px;
}

.mega-shop-nav .mega-list a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-shop-all {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
}

.mega-shop-all:hover {
  color: var(--ink);
}

.mega-shop-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mega-prod {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.mega-prod-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 236px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #f3ece3;
}

.mega-prod-visual img {
  height: 78%;
  width: auto;
  max-width: 72%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.mega-prod:hover .mega-prod-visual img {
  transform: translateY(-6px);
}

.mega-prod-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}

.mega-prod:hover .mega-prod-name {
  color: var(--brand);
}

.mega-prod-meta {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(33, 33, 33, 0.5);
}

.mega-prod-price {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.header-logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-self: center;
  margin: 0 32px;
}

.header-logo img {
  height: 48px;
  width: auto;
}

@media (min-width: 990px) {
  .header-logo img {
    height: 52px;
  }
}

@media (min-width: 1200px) {
  .header-logo {
    margin: 0 48px;
  }
}

.header-right {
  grid-column: 3;
  display: none;
  align-items: center;
  gap: 20px;
}

.header-tools {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
}

.icon-search {
  width: 16px;
  height: 16px;
}

.icon-cart {
  width: 14px;
  height: 17px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
  .nav-desktop {
    display: block;
  }
  .header-right {
    display: flex;
    justify-self: start;
  }
  .header-tools {
    grid-column: 4;
  }
}

/* ---- mobile drawer ---- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 33, 33, 0.4);
}

.drawer-panel {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 86%;
  max-width: 24rem;
  overflow-y: auto;
  background: #fff;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.drawer-logo {
  height: 36px;
  width: auto;
}

.drawer-close {
  width: 32px;
  height: 32px;
}

.drawer-links {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.drawer-label {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.4);
}

@media (min-width: 1200px) {
  .drawer {
    display: none !important;
  }
}

/* ---- hero ---- */
.hero {
  position: relative;
  isolation: isolate;
  height: 60vh;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}

.swiper-slide-active .hero-video {
  transform: scale(1);
}

.hero-scrim {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04));
}

.hero-copy-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  padding: 0 16px 56px 1.25rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-tag {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  border: 1.6px solid #fff;
  border-radius: var(--radius-btn);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.hero-title {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-title strong {
  font-family: var(--font-heading);
  font-weight: 400;
}

.hero-text {
  margin-top: 10px;
  max-width: 36rem;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}

.hero-text strong {
  font-weight: 400;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 130px;
  border-radius: var(--radius-btn);
  padding: 0 22px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
}

.hero-btn-dark {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}
.hero-btn-dark:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero-btn-light {
  border: 1px solid #fff;
  background: #fff;
  color: var(--ink);
}
.hero-btn-light:hover {
  background: transparent;
  color: #fff;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: none;
  transform: translateY(-50%);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

.hero-nav:hover {
  background: #fff;
  color: var(--ink);
}

.hero-mute {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: background 0.2s ease;
}

.hero-mute:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-mute {
  width: 20px;
  height: 20px;
}

.icon-nav {
  width: 10px;
  height: 16px;
}

@media (min-width: 600px) {
  .hero-copy-wrap {
    padding-left: 1.5rem;
    padding-right: 24px;
  }
  .hero-title {
    font-size: 38px;
  }
}

@media (min-width: 768px) {
  .hero {
    height: calc(100svh - var(--header-h));
  }
  .hero-copy-wrap {
    padding-left: 2.5rem;
    padding-right: 40px;
    padding-bottom: 52px;
  }
  .hero-tag {
    font-size: 11px;
    line-height: 14px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }
  .hero-text {
    font-size: 12px;
    line-height: 16px;
  }
  .hero-btn {
    height: 47px;
    min-width: 240px;
    font-size: 12px;
    line-height: 16px;
  }
  .hero-nav {
    display: flex;
  }
  .hero-prev {
    left: 32px;
  }
  .hero-next {
    right: 32px;
  }
  .hero-mute {
    right: 40px;
    bottom: 40px;
  }
}

@media (min-width: 990px) {
  .hero-copy-wrap {
    padding-left: 4rem;
  }
}

@media (min-width: 1200px) {
  .hero-copy-wrap {
    padding-left: var(--hero-align-left, 5.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .swiper-slide-active .hero-video {
    transform: none;
    transition: none;
  }
}

.hero-nav {
  display: none;
}

@media (min-width: 768px) {
  .hero-nav {
    display: flex;
  }
}

/* ---- shared arrows / sliders ---- */
.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.15);
  background: #fff;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
  background: var(--ink);
  color: #fff;
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
}

.slider-arrow--light {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}
.slider-arrow--light:hover {
  background: #fff;
  color: var(--ink);
}

@media (min-width: 768px) {
  .slider-arrow {
    width: 48px;
    height: 48px;
  }
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.snap-row {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  gap: 12px;
}

.snap-row::-webkit-scrollbar {
  display: none;
}

.snap-item {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.drops-row {
  gap: 8px;
}

.drop-card {
  width: 72%;
}

.drop-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 2 / 3;
}

.drop-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.drop-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.drop-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.drop-card-inner:hover .drop-card-image img {
  transform: scale(1.12);
}

.drop-card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 16px;
  pointer-events: none;
}

.drop-card-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.drop-card-collection {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.drop-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  pointer-events: auto;
  transition: background 0.35s ease, color 0.35s ease;
}

.drop-card-btn:hover,
.drop-card-btn.is-added {
  background: #000;
  color: #fff;
}

@media (max-width: 767px) {
  .drop-card-inner {
    aspect-ratio: 2 / 3;
    max-height: 520px;
  }
  .drop-card-overlay {
    padding: 12px;
  }
}

@media (min-width: 768px) {
  .drop-card {
    width: calc((100% - 24px) / 4);
  }
  .drop-card-title {
    font-size: 28px;
  }
  .drop-card-btn {
    min-height: 48px;
  }
}

.card-drop {
  width: 64%;
}

.card-featured {
  width: 72%;
}

@media (min-width: 600px) {
  .card-drop {
    width: 42%;
  }
  .card-featured {
    width: 46%;
  }
}

@media (min-width: 768px) {
  .snap-row {
    gap: 16px;
  }
  .drops-row {
    gap: 8px;
  }
  .snap-row--featured {
    gap: 24px;
  }
  .card-drop {
    width: 24.2%;
  }
  .card-featured {
    width: 31.5%;
  }
}

/* ---- section heads ---- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-arrows {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.section-arrows--mobile {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}

.link-underline {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 600px) {
  .section-title {
    font-size: 32px;
  }
  .break-sm {
    display: block;
  }
}

@media (min-width: 768px) {
  .section-head {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 40px;
  }
  .section-arrows {
    display: flex;
  }
  .section-arrows--mobile {
    display: none;
  }
}

.break-sm {
  display: none;
}

@media (min-width: 600px) {
  .break-sm {
    display: block;
  }
}

.break-md {
  display: none;
}

@media (min-width: 768px) {
  .break-md {
    display: block;
  }
}

/* ---- product / drop cards ---- */
.media-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream);
}

.media-frame {
  position: relative;
  overflow: hidden;
}

.media-frame--portrait {
  aspect-ratio: 4 / 5;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover img,
.media-frame:hover img {
  transform: scale(1.05);
}

.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.media-caption p {
  font-size: 15px;
  font-weight: 500;
}

.media-caption span,
.media-caption .media-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.product-meta {
  margin-top: 12px;
}

.product-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(33, 33, 33, 0.6);
}

.star-row svg {
  width: 12px;
  height: 12px;
  color: var(--coral);
}

.star-score {
  color: var(--ink);
  font-weight: 500;
}

.star-count {
  margin-left: 4px;
  color: rgba(33, 33, 33, 0.5);
}

.star-half {
  opacity: 0.6;
}

/* ---- feature / trust cards ---- */
.feature-cards {
  margin: 0;
}

.feature-cards-list {
  display: flex;
  gap: 16px;
}

.feature-card {
  width: 25%;
  background: #f7f5f4;
  border-radius: 8px;
}

.feature-card-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 10px 16px 16px;
  border-radius: 8px;
}

.feature-card-bg {
  position: absolute;
}

.feature-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-card--1 .feature-card-bg {
  width: 240px;
  top: -90px;
  right: -100px;
  transform: rotate(-3deg);
}

.feature-card--2 .feature-card-bg {
  width: 210px;
  right: -80px;
  bottom: -70px;
}

.feature-card--3 .feature-card-bg {
  width: 200px;
  top: -90px;
  right: -30px;
  transform: rotate(-20deg);
}

.feature-card--4 .feature-card-bg {
  width: 120px;
  top: -10px;
  right: -20px;
}

.feature-card-copy {
  position: relative;
  z-index: 2;
}

.feature-card-copy h2 {
  margin: 0 0 3px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: var(--ink);
}

.feature-card-copy h2 strong {
  font-family: var(--font-heading);
  font-weight: 500;
}

.feature-card-copy p {
  margin: 0;
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.2px;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .feature-cards-list {
    flex-wrap: wrap;
  }
  .feature-card {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .feature-cards-list {
    gap: 8px;
  }
  .feature-card-box {
    display: flex;
    align-items: flex-end;
    min-height: 146px;
    padding: 36px 16px 14px;
  }
  .feature-card-copy h2 {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
  }
  .feature-card-copy p {
    font-size: 9px;
    line-height: 14px;
  }
  .feature-card--1 .feature-card-bg {
    width: 240px;
    top: -130px;
    right: -85px;
  }
  .feature-card--2 .feature-card-bg {
    width: 210px;
    top: -75px;
    right: -90px;
    bottom: auto;
  }
  .feature-card--3 .feature-card-bg {
    width: 130px;
    top: -76px;
    right: -50px;
    transform: rotate(199deg);
  }
  .feature-card--4 .feature-card-bg {
    width: 110px;
    top: -59px;
    right: -40px;
  }
}

/* ---- split banners ---- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.split-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #e8eee4;
  color: var(--ink);
  aspect-ratio: 16 / 10;
}

.split-card--product {
  background: #f3ead8;
}

.split-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-card:hover .split-media {
  transform: scale(1.04);
}

.split-go {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 48px;
  max-width: 48px;
  padding: 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    gap 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-go-label {
  display: inline-block;
  max-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    margin 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-go svg {
  flex-shrink: 0;
}

.split-card:hover .split-go {
  max-width: 160px;
  gap: 8px;
  padding: 0 18px 0 20px;
}

.split-card:hover .split-go-label {
  max-width: 80px;
  margin-right: 2px;
  opacity: 1;
}

@media (min-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-card {
    aspect-ratio: 16 / 10;
  }
  .split-go {
    right: 24px;
    bottom: 24px;
  }
}

/* ---- collections ---- */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.collection-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  aspect-ratio: 4 / 3;
}

.collection-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-card:hover > img {
  transform: scale(1.05);
}

.collection-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.05), transparent);
}

.collection-bar {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.collection-bar h2 {
  font-family: var(--font-heading);
  font-size: 24px;
}

.shop-extra {
  display: none;
}

@media (min-width: 600px) {
  .shop-extra {
    display: inline;
  }
}

@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .collection-card {
    aspect-ratio: 3 / 4;
  }
  .collection-bar h2 {
    font-size: 28px;
  }
}

/* ---- campaign reel collage ---- */
.reel-section {
  background: #fff;
  padding: 40px 0 48px;
}

.reel-title {
  max-width: 18ch;
  margin: 0 auto 32px;
  padding: 0 20px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-align: center;
}

.reel-title strong {
  font-weight: 700;
}

.reel-stage {
  position: relative;
  overflow: visible;
  padding: 8px 0 24px;
}

.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  align-items: start;
  gap: 12px;
  width: min(1080px, calc(100% - 24px));
  margin: 0 auto;
}

.reel-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #ece7e1;
  aspect-ratio: 3 / 4;
}

.reel-tile video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.reel-tile--1 {
  margin-top: 48px;
}

.reel-tile--featured {
  margin-top: 0;
}

.reel-tile--3 {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .reel-section {
    padding: 56px 0 72px;
  }
  .reel-title {
    margin-bottom: 44px;
  }
  .reel-stage {
    padding: 12px 0 36px;
  }
  .reel-grid {
    gap: 18px;
    width: min(1040px, calc(100% - 48px));
  }
  .reel-tile {
    border-radius: 20px;
  }
  .reel-tile--1 {
    margin-top: 72px;
  }
  .reel-tile--3 {
    margin-top: 48px;
  }
}

@media (max-width: 600px) {
  .reel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .reel-tile--featured {
    grid-column: 1 / -1;
    order: -1;
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }
  .reel-tile--1,
  .reel-tile--3 {
    margin-top: 0;
    aspect-ratio: 3 / 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-tile video {
    display: none;
  }
  .reel-tile {
    background:
      linear-gradient(160deg, #f3ece4, #e4d5c6);
  }
}

/* ---- premium slider ---- */
.premium {
  position: relative;
  overflow: hidden;
}

.premium-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.premium-track::-webkit-scrollbar {
  display: none;
}

.premium-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  width: 100%;
  min-height: 0;
  scroll-snap-align: start;
  background: var(--brand);
  color: #fff;
}

.premium-media {
  position: relative;
  z-index: 1;
  flex: none;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.premium-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.premium-wave {
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 2;
  width: 64px;
  height: 100%;
  pointer-events: none;
  display: none;
}

.premium-wave-fill {
  fill: var(--brand);
}

.premium-wave-line {
  fill: none;
  stroke: rgba(255, 244, 232, 0.28);
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.premium-copy {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  background: var(--brand);
}

.premium-copy h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.15;
}

.premium-mark {
  margin-left: 4px;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: super;
}

.premium-copy p {
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.premium-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.premium-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.premium-nav {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

@media (min-width: 600px) {
  .premium-copy h2 {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .premium-slide {
    flex-direction: row;
    height: 480px;
  }
  .premium-media,
  .premium-copy {
    width: 50%;
    height: 100%;
    flex: none;
  }
  .premium-media img {
    object-position: 32% center;
  }
  .premium-wave {
    display: block;
    width: 92px;
  }
  .premium-copy {
    padding: 48px 56px;
    gap: 16px;
  }
  .premium-copy h2 {
    font-size: 36px;
  }
  .premium-nav {
    right: 56px;
    bottom: 28px;
  }
}

/* ---- signature deck carousel ---- */
.deck-section {
  background: #fff;
  padding: 24px 0 0;
}

.deck-heading {
  text-align: center;
  padding: 8px 16px 8px;
}

.deck-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.55);
}

.deck-title {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.special-carousel_container {
  overflow: hidden;
}

.special-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

#deck-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  transform-style: preserve-3d;
  -webkit-tap-highlight-color: transparent;
}

#deck-viewport:active {
  cursor: grabbing;
}

#card-wheel {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  perspective: 1600px;
  transform-style: preserve-3d;
}
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  transform-style: preserve-3d;
}

.special-carousel .bundle-button {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.special-carousel .bundle-button .deck-shop {
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  transform: translateX(-50%);
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  pointer-events: auto;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.special-carousel .bundle-button .deck-shop:hover {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.flipper-inner-3d {
  position: relative;
  width: 100%;
  height: 100%;
}

.deck-card-face {
  position: absolute;
  inset: 0;
  border-radius: var(--model-radius);
  overflow: hidden;
  background: #faf6f0;
  box-shadow: 0 14px 26px rgba(22, 17, 12, 0.22);
}

.deck-card-front {
  z-index: 2;
  display: block;
  background: #dfd7cc;
}

.deck-card-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.deck-card-front .plus-icon,
.inner-container .plus-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.inner-container .plus-icon svg {
  transform: rotate(45deg);
}

.special-carousel_container .flipper-inner-3d .inner-container {
  z-index: 3;
  display: none;
  flex-direction: column;
  padding: 52px 18px 18px;
  color: #1c1c1c;
  text-align: left;
  background: #faf6f0;
}

.special-carousel_container .flipper-card-wrapper.is-flipped .deck-card-front {
  display: none !important;
}

.special-carousel_container .flipper-card-wrapper.is-flipped .inner-container {
  display: flex !important;
}

.special-carousel_container .card-title {
  margin-bottom: 8px;
  color: #111;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.special-carousel_container .card-title strong {
  font-weight: 700;
}

.special-carousel_container .card-desc {
  margin-bottom: 16px;
  color: #3a332c;
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
}

.special-carousel_container .notes-wrapper {
  margin-top: auto;
}

.special-carousel_container .notes-wrapper p {
  margin-bottom: 8px;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-carousel_container .notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 8px;
  text-align: center;
}

.special-carousel_container .notes .note {
  flex: 1 1 0;
  min-width: 0;
}

.special-carousel_container .notes .note span {
  display: block;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.special-carousel_container .flipper-inner-3d .button-explore {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: auto;
  border: 1px solid #000;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: auto;
}

.special-carousel_container .flipper-inner-3d .button-explore:hover {
  background: #fff;
}

.deck-bottle {
  filter: drop-shadow(0 10px 18px rgba(22, 17, 12, 0.28));
}

@media (min-width: 768px) {
  .deck-section {
    padding-top: 40px;
  }
  .special-carousel {
    height: 650px;
  }
  .special-carousel .bundle-button .deck-shop {
    bottom: 80px;
  }
}

@media (min-width: 2000px) {
  .special-carousel {
    height: 700px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flipper-inner-3d,
  .flipper-card-wrapper {
    transition: none !important;
  }
}

/* ---- footer ---- */
.site-footer {
  background: var(--cream);
  color: var(--ink);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
  padding-bottom: 56px;
}

.footer-intro h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
}

.newsletter {
  margin-top: 20px;
  display: flex;
  align-items: center;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  background: #fff;
  padding-left: 20px;
}

.newsletter input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 14px 0;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.newsletter .btn-dark {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
}

.newsletter-msg {
  margin-top: 12px;
  font-size: 13px;
  color: var(--coral);
}

.socials {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}

.social:hover {
  background: var(--ink);
  color: #fff;
}

.social svg {
  width: 16px;
  height: 16px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bar {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  font-size: 12px;
  color: rgba(33, 33, 33, 0.6);
}

.legal a:hover {
  color: var(--coral);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.15);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.7);
}

.badge svg {
  width: 14px;
  height: 14px;
}

.locale {
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.15);
  background: #fff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.7);
  outline: none;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-intro h2 {
    font-size: 28px;
  }
  .footer-bar {
    flex-direction: row;
  }
}

/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-padding-bottom: var(--ai-dock-h);
}

/* ---- Floating search bar ---- */
.ai-search {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 35;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}

.ai-search.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ai-search-bar {
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(48, 41, 36, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  transition: width 0.6s var(--ease);
}

.ai-search.is-visible .ai-search-bar {
  pointer-events: auto;
  width: min(340px, 100%);
}

.ai-search-bar input {
  flex: 1;
  min-width: 0;
  height: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: #f4f0ea;
  font-size: 13px;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease 0.22s, transform 0.3s ease 0.22s;
}

.ai-search.is-visible .ai-search-bar input {
  opacity: 1;
  transform: none;
}

.ai-search-bar input::placeholder {
  color: rgba(244, 240, 234, 0.5);
}

.ai-search-circle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #f4f0ea;
  background: rgba(24, 20, 18, 0.88);
}

.ai-search-circle svg {
  width: 13px;
  height: 13px;
}

#ai-search-plus svg {
  transform: rotate(-90deg);
  transition: transform 0.65s var(--ease);
}

.ai-search.is-visible #ai-search-plus svg {
  transform: rotate(0deg);
}

.ai-search-send {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease 0.28s, transform 0.3s ease 0.28s;
}

.ai-search.is-visible .ai-search-send {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .ai-search {
    bottom: 24px;
  }
  .ai-search-bar {
    width: 56px;
    height: 56px;
    padding: 6px;
  }
  .ai-search.is-visible .ai-search-bar {
    width: min(380px, 100%);
  }
  .ai-search-circle {
    width: 44px;
    height: 44px;
  }
  .ai-search-bar input {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-search,
  .ai-search-bar,
  .ai-search-bar input,
  #ai-search-plus svg,
  .ai-search-send {
    transition: none;
  }
}

/* ---- Collection / PLP ---- */
body.page-collection,
body.page-pdp {
  padding-bottom: 0;
}

.plp-banner {
  position: relative;
  height: min(52vh, 520px);
  min-height: 280px;
  overflow: hidden;
  background: #1c1614;
}

.plp-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.plp-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 14, 12, 0.18) 0%, rgba(18, 14, 12, 0.55) 100%);
}

.plp-banner-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding-bottom: 36px;
  color: #f7f3ee;
}

.plp-banner-copy .plp-kicker,
.plp-banner-copy .plp-lede,
.plp-banner-copy .plp-count {
  color: rgba(247, 243, 238, 0.72);
}

.plp-banner-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
}

.plp-body {
  position: relative;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 80px;
  padding-left: clamp(16px, 6vw, 80px);
  padding-right: clamp(16px, 6vw, 80px);
  background: transparent;
  min-height: 60vh;
}

/* page base colour */
body.page-collection {
  background: #fff;
}

/* ---- Decorative background ---- */
.plp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Large soft colour orbs — removed */
.plp-orb { display: none; }

/* Thin decorative rings */
.plp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(167, 96, 74, 0.15);
}

.plp-ring--1 {
  width: 340px;
  height: 340px;
  top: 8%;
  right: 8%;
}

.plp-ring--1::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(167, 96, 74, 0.08);
}

.plp-ring--2 {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 5%;
}

/* keep banner above bg */
.plp-banner {
  position: relative;
  z-index: 2;
}

.plp-hero {
  display: none;
}

.plp-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.5);
}

.plp-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.plp-lede {
  margin: 12px 0 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(33, 33, 33, 0.62);
}

.plp-count {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.45);
}

.plp-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 28px;
  scrollbar-width: none;
}

.plp-filters::-webkit-scrollbar {
  display: none;
}

.plp-chip {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  font-size: 13px;
  color: rgba(33, 33, 33, 0.7);
  background: #fff;
}

.plp-chip:hover,
.plp-chip.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

/* ---- PLP grid + glassmorphic cards ---- */
.plp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}

/* Glass card shell */
.plp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 20px;
  border: 1px solid rgba(33, 33, 33, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.plp-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.09),
    0 4px 10px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Image area — square, smaller bottle centered */
.plp-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fafafa;
}

/* Blurred ambient glow behind bottle — removed */
.plp-card-media::before {
  display: none;
}

/* Bottle: 58 % wide, sits centered */
.plp-card-media img {
  position: relative;
  z-index: 1;
  width: 84%;
  height: auto;
  max-height: 96%;
  object-fit: contain;
  transition: transform 0.55s var(--ease);
}

.plp-card:hover .plp-card-media img {
  transform: translateY(-5px) scale(1.04);
}

/* Studio shots (square white-bg bottles) */
.plp-card--studio .plp-card-media {
  background: #fff;
}

/* Bottle-type products */
.plp-card--bottle .plp-card-media img {
  width: 68%;
}

/* 25 ml badge */
.plp-card-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Info panel below image */
.plp-card-body {
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
  flex: 1;
  gap: 0;
}

.plp-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.plp-card-line {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.plp-card-price {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.plp-card-name {
  margin: 5px 0 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.plp-card-name a {
  color: inherit;
}

.plp-card-name a:hover {
  color: var(--brand);
}

.plp-card-notes {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(33, 33, 33, 0.48);
}

.plp-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

/* Add to bag — glass pill button */
.plp-add {
  width: 100%;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.plp-add:hover {
  background: #8f4f39;
  border-color: #8f4f39;
  color: #fff;
}

.plp-add.is-added {
  background: #5c3228;
  border-color: #5c3228;
  color: #fff;
}

@media (min-width: 768px) {
  .plp-banner {
    height: min(56vh, 560px);
  }
  .plp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
  }
}

@media (min-width: 1100px) {
  .plp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

/* ---- Product detail ---- */
.pdp-missing {
  padding: 80px 0;
}

.pdp-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.4);
}

.pdp-crumb a:hover {
  color: var(--ink);
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 56px;
}

.pdp-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background: #f3ece3;
  overflow: hidden;
}

.pdp-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-stage--bottle img {
  width: auto;
  height: 78%;
  max-width: 62%;
  object-fit: contain;
}

.pdp-stage--studio {
  background: #f7f4ef;
}

.pdp-stage--studio img {
  object-fit: contain;
}

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pdp-thumb {
  width: 64px;
  height: 80px;
  overflow: hidden;
  background: #f3ece3;
  opacity: 0.55;
}

.pdp-thumb.is-active,
.pdp-thumb:hover {
  opacity: 1;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-line {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.45);
}

.pdp-info h1 {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.pdp-notes {
  margin: 10px 0 0;
  font-size: 15px;
  color: rgba(33, 33, 33, 0.55);
}

.pdp-price {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.pdp-story {
  margin: 18px 0 0;
  max-width: 36em;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(33, 33, 33, 0.72);
}

.pdp-sizes {
  display: flex;
  gap: 8px;
  margin: 24px 0 0;
}

.pdp-size {
  min-width: 72px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(33, 33, 33, 0.15);
  font-size: 13px;
}

.pdp-size.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.pdp-add {
  margin-top: 20px;
  width: 100%;
  max-width: 360px;
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-add:hover,
.pdp-add.is-added {
  background: var(--ink);
}

.pdp-facts {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(33, 33, 33, 0.55);
}

.pdp-also {
  padding: 8px 0 80px;
  background: #faf7f3;
}

.pdp-also h2 {
  margin: 0 0 24px;
  padding-top: 40px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
}

@media (min-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: start;
  }
}

/* ---- Cart sidebar ---- */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.38s; /* hide AFTER slide-out completes */
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s; /* show immediately */
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

/* ── panel (two-column) ──────────────────────────────────────────── */
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  width: min(820px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.10);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: none;
}

/* ── left column: recommendations ───────────────────────────────── */
.cart-panel-recs {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(33, 33, 33, 0.08);
  overflow-y: auto;
  padding: 28px 0 20px;
}

.cart-recs-title {
  margin: 0 0 20px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.01em;
}

.cart-recs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-rec {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
  transition: background 0.15s;
}

.cart-rec:hover {
  background: #faf9f7;
}

.cart-rec-img {
  width: 72px;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-rec-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-rec--bottle .cart-rec-img img,
.cart-rec--studio .cart-rec-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-rec-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-rec-name {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
}

.cart-rec-price {
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(33, 33, 33, 0.55);
}

.cart-rec-add {
  align-self: flex-start;
  padding: 6px 14px;
  border: 1px solid rgba(33, 33, 33, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
  background: #fff;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.cart-rec-add:hover,
.cart-rec-add.is-added {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ── right column: cart ──────────────────────────────────────────── */
.cart-panel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  flex-shrink: 0;
}

.cart-drawer-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.01em;
}

.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #111;
  background: transparent;
  transition: background 0.15s;
}

.cart-close:hover {
  background: rgba(33, 33, 33, 0.06);
}

.cart-close svg {
  width: 11px;
  height: 11px;
}

/* free-shipping bar */
/* free-shipping bar */
.cart-ship-bar {
  padding: 14px 24px 12px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

#cart-ship-msg {
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(33, 33, 33, 0.65);
  line-height: 1.4;
  transition: color 0.4s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

#cart-ship-msg::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2322a55d'/%3E%3Cpath d='M4.5 8.5l2.5 2.5 4.5-5' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}

.cart-ship-bar.is-free #cart-ship-msg::before {
  opacity: 1;
  transform: scale(1);
}

.cart-ship-bar.is-free #cart-ship-msg {
  color: #22a55d;
  font-weight: 600;
}

.cart-ship-track {
  position: relative;
  height: 4px;
  background: rgba(33, 33, 33, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.cart-ship-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: #111;
  border-radius: 99px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1), background 0.4s ease, box-shadow 0.4s ease;
}

.cart-ship-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: translateX(-100%);
  opacity: 0;
}

.cart-ship-bar.is-free .cart-ship-fill {
  background: #22a55d;
  box-shadow: 0 0 12px rgba(34,165,93,0.6);
}

.cart-ship-bar.is-free .cart-ship-fill::after {
  opacity: 1;
  animation: ship-shimmer 0.8s ease 0.3s forwards;
}

@keyframes ship-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* bar boom pulse */
.cart-ship-bar.is-free .cart-ship-track {
  animation: bar-boom 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}

@keyframes bar-boom {
  0%   { transform: scaleY(1); }
  40%  { transform: scaleY(3.5); }
  70%  { transform: scaleY(1.5); }
  100% { transform: scaleY(1); }
}

/* JS-generated confetti dots */
.ship-confetti-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9999;
  animation: dot-fly var(--dur, 0.9s) ease-out forwards;
}

@keyframes dot-fly {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(var(--tx,0px), var(--ty,0px)) rotate(var(--rot,180deg)) scale(0.4); opacity: 0; }
}

.cart-ship-goal { display: none; }

/* cart body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(33,33,33,.12) transparent;
}

.cart-items {
  padding: 4px 24px 12px;
}

.cart-empty {
  padding: 36px 24px;
  text-align: center;
  color: rgba(33, 33, 33, 0.55);
  font-size: 14px;
}

.cart-empty a {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* cart line items */
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
}

.cart-line-img {
  width: 72px;
  height: 84px;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-line-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line--bottle .cart-line-img img,
.cart-line--studio .cart-line-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line-name {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
}

.cart-line-meta {
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(33, 33, 33, 0.45);
}

.cart-line-qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(33, 33, 33, 0.14);
  border-radius: 999px;
  padding: 3px 6px;
  font-size: 13px;
}

.cart-line-qty button {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #111;
}

.cart-line-qty span {
  min-width: 16px;
  text-align: center;
}

.cart-line-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 2px;
}

.cart-line-price {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
}

.cart-line-remove {
  font-size: 11px;
  color: rgba(33, 33, 33, 0.38);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.cart-line-remove:hover {
  color: #111;
}

/* footer */
.cart-drawer-foot {
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(33, 33, 33, 0.08);
  background: #fff;
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-size: 14px;
  color: #111;
}

.cart-total-row strong {
  font-size: 15px;
  font-weight: 600;
}

.cart-checkout {
  display: block;
  width: 100%;
  padding: 15px 16px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background 0.2s;
}

.cart-checkout:hover {
  background: #8d4f3b;
}

.cart-view-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(33, 33, 33, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.cart-view-link:hover {
  color: #111;
}

/* mobile: stack columns */
@media (max-width: 700px) {
  .cart-drawer-panel {
    flex-direction: column;
    width: 100%;
  }
  .cart-panel-recs {
    flex: 0 0 auto;
    order: 2;
    border-right: none;
    border-top: 1px solid rgba(33,33,33,.08);
    border-bottom: none;
    padding: 20px 0 12px;
    max-height: 40vh;
  }
  .cart-panel-main {
    order: 1;
  }
  .cart-panel-recs .cart-rec {
    padding: 10px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer-backdrop,
  .cart-drawer-panel {
    transition: none;
  }
}
