/* ==========================================
   DUVANT 12 — ONLINE STORE
========================================== */

:root {
  --black: #070809;
  --black-soft: #0b0c0e;
  --surface: #101113;
  --surface-light: #15171a;

  --white: #f4f4f2;
  --silver: #c8cace;
  --silver-soft: #9b9fa5;
  --muted: #696e74;
  --muted-dark: #4f545a;

  --line: rgba(255, 255, 255, 0.09);
  --line-light: rgba(255, 255, 255, 0.14);

  --container: 1380px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --transition: 220ms ease;
}


/* ==========================================
   RESET
========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-container {
  width: min(
    calc(100% - 64px),
    var(--container)
  );
  margin: 0 auto;
}


/* ==========================================
   ANNOUNCEMENT
========================================== */

.announcement {
  position: relative;
  z-index: 101;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-bottom: 1px solid var(--line);
  background: #0d0e10;
  color: #858a90;
  text-align: center;
}

.announcement p {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 9, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 8, 9, 0.96);
}

.header-container {
  width: min(
    calc(100% - 64px),
    var(--container)
  );
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(210px, 1fr)
    auto
    minmax(210px, 1fr);
  align-items: center;
  gap: 30px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.01)
    );
  color: #d6d8db;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: #f1f2f3;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-copy small {
  color: #656a70;
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  color: #7f848a;
  font-size: 0.7rem;
  font-weight: 600;
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: #c3c6ca;
  transition: transform var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #e3e4e5;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-action {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.header-action:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.header-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #a8acb1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: #d4d6d8;
  color: #111214;
  font-size: 0.52rem;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
}


/* ==========================================
   HERO
========================================== */

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 90%
    );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-one {
  top: 10%;
  right: 8%;
  width: 420px;
  height: 420px;
  background: rgba(157, 164, 173, 0.08);
}

.hero-glow-two {
  bottom: -200px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(
    calc(100% - 64px),
    var(--container)
  );
  min-height: calc(100svh - 116px);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(460px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  padding: 70px 0 95px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #72777d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: #6d7278;
}

.hero h1 {
  max-width: 800px;
  color: #e9eaeb;
  font-size:
    clamp(3.2rem, 6vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  color: #777c82;
  font-style: normal;
  font-weight: 400;
}

.hero-description {
  max-width: 590px;
  margin-top: 30px;
  color: #777c82;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: #d2d4d6;
  background: #d2d4d6;
  color: #111214;
}

.button-primary:hover {
  background: #f1f2f3;
}

.button-secondary,
.button-outline {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.02);
  color: #b1b5b9;
}

.button-secondary:hover,
.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 55px;
}

.hero-meta > div:not(.meta-divider) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-meta strong {
  color: #aaaeb3;
  font-size: 0.67rem;
  font-weight: 600;
}

.hero-meta span {
  color: #555a60;
  font-size: 0.62rem;
}

.meta-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}


/* ==========================================
   HERO PRODUCT
========================================== */

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px 70px 2px 2px;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 255, 255, 0.065),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #111315,
      #090a0b
    );
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.hero-frame-label {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: #555a60;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-product {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
}

.hero-product-glow {
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(219, 223, 227, 0.08);
  filter: blur(45px);
}

.perfume-bottle {
  position: relative;
  z-index: 2;
  width: 210px;
  filter:
    drop-shadow(
      0 35px 30px rgba(0, 0, 0, 0.6)
    );
}

.bottle-cap {
  width: 80px;
  height: 63px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px 5px 2px 2px;
  background:
    linear-gradient(
      90deg,
      #26292c,
      #6c7176 45%,
      #25282b
    );
  box-shadow:
    inset 8px 0 12px rgba(255, 255, 255, 0.04),
    inset -8px 0 12px rgba(0, 0, 0, 0.3);
}

.bottle-neck {
  width: 54px;
  height: 28px;
  margin: 0 auto;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: #17191b;
}

.bottle-body {
  position: relative;
  height: 285px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px 12px 20px 20px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.14),
      transparent 25%,
      rgba(255, 255, 255, 0.025) 60%,
      rgba(255, 255, 255, 0.1)
    ),
    linear-gradient(
      to bottom,
      #262a2e,
      #111315 65%,
      #090a0b
    );
  box-shadow:
    inset 12px 0 20px rgba(255, 255, 255, 0.03),
    inset -12px 0 20px rgba(0, 0, 0, 0.35);
}

.bottle-shine {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 20px;
  width: 1px;
  background:
    linear-gradient(
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );
}

.bottle-label {
  width: 118px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 8, 9, 0.72);
  text-align: center;
}

.bottle-label span {
  color: #a6aaae;
  font-size: 0.57rem;
  letter-spacing: 0.22em;
}

.bottle-label strong {
  margin: 5px 0;
  color: #e1e2e3;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.bottle-label small {
  color: #5f6469;
  font-size: 0.42rem;
  letter-spacing: 0.16em;
}

.hero-product-info {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-product-info > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-product-info span {
  color: #5f646a;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-product-info strong {
  color: #b9bdc1;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-product-info small {
  color: #575c62;
  font-size: 0.58rem;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #484d52;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 28px;
  height: 1px;
  background: #484d52;
}


/* ==========================================
   INTRO
========================================== */

.intro-strip {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns:
    80px minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: start;
  gap: 50px;
}

.section-number {
  color: #4e5358;
  font-size: 0.65rem;
  font-weight: 600;
}

.intro-grid h2 {
  max-width: 690px;
  color: #d9dbdd;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.intro-grid p {
  max-width: 440px;
  color: #686d73;
  font-size: 0.78rem;
  line-height: 1.8;
}


/* ==========================================
   GENERAL SECTION
========================================== */

.products-section,
.collections-section,
.bestsellers-section {
  padding: 110px 0;
}

.products-section,
.bestsellers-section {
  background: #090a0b;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-kicker {
  display: block;
  margin-bottom: 9px;
  color: #62676d;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #dedfe1;
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #858a90;
  font-size: 0.66rem;
  font-weight: 600;
  transition: color var(--transition);
}

.text-link:hover {
  color: #fff;
}

.section-note {
  color: #575c62;
  font-size: 0.63rem;
}


/* ==========================================
   PRODUCT CARDS
========================================== */

.product-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-image {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.06),
      transparent 32%
    ),
    #0e1012;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.product-card:hover .product-image {
  border-color: rgba(255, 255, 255, 0.17);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.09),
      transparent 34%
    ),
    #111315;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 9, 0.7);
  color: #7b8086;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-bottle {
  position: relative;
  width: 105px;
  transform: translateY(5px);
  transition: transform 350ms ease;
}

.product-card:hover .mini-bottle {
  transform: translateY(-2px);
}

.mini-cap {
  width: 45px;
  height: 35px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(
      90deg,
      #26292c,
      #64696e,
      #25282b
    );
}

.mini-neck {
  width: 31px;
  height: 15px;
  margin: 0 auto;
  background: #17191b;
}

.mini-body {
  height: 145px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px 6px 11px 11px;
  background:
    linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.11),
      transparent 35%
    ),
    linear-gradient(
      to bottom,
      #24282c,
      #0d0f11
    );
  box-shadow:
    0 24px 28px rgba(0, 0, 0, 0.4);
}

.mini-body span {
  width: 67px;
  padding: 15px 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #a8acb0;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.product-details {
  padding: 16px 2px 0;
}

.product-brand {
  color: #565b61;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.product-title-row h3 {
  overflow: hidden;
  color: #c9cccf;
  font-size: 0.76rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-title-row strong {
  flex: 0 0 auto;
  color: #aeb2b6;
  font-size: 0.73rem;
  font-weight: 600;
}

.product-size {
  display: block;
  margin-top: 5px;
  color: #54595f;
  font-size: 0.6rem;
}

.add-cart-button {
  width: 100%;
  min-height: 41px;
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: #7c8187;
  font-size: 0.63rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.add-cart-button:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #d1d3d5;
  color: #111214;
}


/* ==========================================
   COLLECTIONS
========================================== */

.collections-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.collections-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.collection-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0f11;
  text-align: left;
  cursor: pointer;
}

.collection-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform 500ms ease;
}

.collection-card:hover .collection-art {
  transform: scale(1.035);
}

.collection-men .collection-art {
  background:
    radial-gradient(
      circle at 60% 40%,
      rgba(95, 104, 114, 0.16),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #111418,
      #08090a
    );
}

.collection-women .collection-art {
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(177, 170, 165, 0.13),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #171616,
      #0b0b0c
    );
}

.collection-unisex .collection-art {
  background:
    radial-gradient(
      circle at 55% 40%,
      rgba(159, 164, 169, 0.15),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #141617,
      #090a0b
    );
}

.abstract-bottle {
  width: 135px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 70px 70px 15px 15px;
  box-shadow:
    0 40px 60px rgba(0, 0, 0, 0.5);
}

.bottle-dark {
  background:
    linear-gradient(
      110deg,
      #101214,
      #30353a 50%,
      #0b0c0d
    );
}

.bottle-light {
  border-radius: 25px 25px 70px 70px;
  background:
    linear-gradient(
      110deg,
      #191919,
      #5d5b59 50%,
      #121212
    );
}

.bottle-silver {
  width: 155px;
  border-radius: 15px;
  background:
    linear-gradient(
      110deg,
      #17191b,
      #666b70 48%,
      #111315
    );
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 6, 7, 0.95),
      rgba(5, 6, 7, 0.05) 65%
    );
}

.collection-content {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
  z-index: 2;
}

.collection-content > span {
  display: block;
  margin-bottom: 11px;
  color: #565b61;
  font-size: 0.56rem;
}

.collection-content h3 {
  color: #d8dade;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.collection-content p {
  margin-top: 7px;
  color: #6a6f75;
  font-size: 0.67rem;
}

.collection-content strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #999da2;
  font-size: 0.63rem;
  font-weight: 600;
}

.collection-content b {
  font-size: 0.85rem;
  font-weight: 400;
}


/* ==========================================
   EXPERIENCE
========================================== */

.experience-section {
  padding: 130px 0;
  overflow: hidden;
  background: #0a0b0c;
}

.experience-grid {
  display: grid;
  grid-template-columns:
    minmax(380px, 0.9fr)
    minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.experience-art {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.065),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #131517,
      #08090a
    );
}

.experience-number {
  position: absolute;
  top: -20px;
  left: -12px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 15rem;
  font-weight: 700;
  letter-spacing: -0.12em;
}

.experience-vertical-text {
  position: absolute;
  right: 22px;
  bottom: 25px;
  color: #4e5359;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.experience-bottle {
  position: relative;
  z-index: 2;
  width: 190px;
}

.experience-cap {
  width: 70px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(
      90deg,
      #24272a,
      #6b7075,
      #24272a
    );
}

.experience-body {
  height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px 5px 35px 35px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.11),
      transparent 30%
    ),
    #111315;
  box-shadow:
    0 40px 60px rgba(0, 0, 0, 0.55);
}

.experience-body span {
  color: #777c82;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
}

.experience-body strong {
  margin-top: 8px;
  color: #c7c9cc;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.experience-content {
  max-width: 650px;
}

.experience-content h2 {
  margin-top: 10px;
  color: #dedfe1;
  font-size: clamp(2.3rem, 4.3vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.experience-content h2 em {
  display: block;
  margin-top: 8px;
  color: #74797f;
  font-style: normal;
  font-weight: 400;
}

.experience-content > p {
  max-width: 580px;
  margin-top: 28px;
  color: #6b7076;
  font-size: 0.78rem;
  line-height: 1.85;
}

.experience-points {
  margin: 40px 0;
  border-top: 1px solid var(--line);
}

.experience-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.experience-points > div > span {
  color: #50555b;
  font-size: 0.57rem;
}

.experience-points strong {
  color: #aaaeb2;
  font-size: 0.71rem;
  font-weight: 600;
}

.experience-points p {
  max-width: 430px;
  margin-top: 5px;
  color: #595e64;
  font-size: 0.65rem;
  line-height: 1.6;
}


/* ==========================================
   BESTSELLERS
========================================== */

.bestsellers-section {
  border-top: 1px solid var(--line);
}

.bestsellers-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bestseller-card {
  display: grid;
  grid-template-columns:
    130px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 175px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #0c0e0f;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.bestseller-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: #101214;
}

.bestseller-image {
  height: 140px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    );
}

.bestseller-bottle {
  width: 55px;
}

.bestseller-bottle .mini-cap {
  width: 28px;
  height: 20px;
}

.bestseller-bottle .mini-neck {
  width: 20px;
  height: 9px;
}

.bestseller-bottle .mini-body {
  height: 78px;
}

.bestseller-bottle .mini-body span {
  width: 40px;
  padding: 7px 2px;
  font-size: 0.3rem;
}

.bestseller-info > span {
  color: #54595f;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bestseller-info h3 {
  margin-top: 5px;
  color: #c7c9cc;
  font-size: 0.75rem;
  font-weight: 600;
}

.bestseller-info p {
  margin-top: 4px;
  color: #555a60;
  font-size: 0.59rem;
}

.bestseller-info strong {
  display: block;
  margin-top: 14px;
  color: #a9adb1;
  font-size: 0.72rem;
}


/* ==========================================
   BENEFITS
========================================== */

.benefits-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.benefit {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.benefit:first-child {
  border-left: 1px solid var(--line);
}

.benefit-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #44494e;
  font-size: 0.53rem;
}

.benefit-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #777c82;
  font-size: 0.7rem;
}

.benefit strong {
  display: block;
  color: #afb2b6;
  font-size: 0.72rem;
  font-weight: 600;
}

.benefit p {
  max-width: 240px;
  margin-top: 9px;
  color: #565b61;
  font-size: 0.63rem;
  line-height: 1.7;
}


/* ==========================================
   NEWSLETTER
========================================== */

.newsletter-section {
  padding: 90px 0;
  background:
    linear-gradient(
      145deg,
      #111315,
      #090a0b
    );
}

.newsletter {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(380px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.newsletter h2 {
  max-width: 680px;
  color: #d9dbdd;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.newsletter p {
  max-width: 520px;
  margin-top: 16px;
  color: #60656b;
  font-size: 0.72rem;
  line-height: 1.7;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.newsletter-form input {
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #dddfe1;
  font-size: 0.75rem;
}

.newsletter-form input::placeholder {
  color: #53585e;
}

.newsletter-form button {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  color: #999da2;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
  padding: 75px 0 28px;
  border-top: 1px solid var(--line);
  background: #070809;
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.7fr)
    repeat(3, minmax(120px, 0.5fr));
  gap: 60px;
  padding-bottom: 65px;
}

.footer-brand p {
  max-width: 370px;
  margin-top: 22px;
  color: #555a60;
  font-size: 0.66rem;
  line-height: 1.75;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column > span {
  margin-bottom: 8px;
  color: #8b9096;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  color: #555a60;
  font-size: 0.64rem;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: #c7c9cc;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #44494e;
  font-size: 0.55rem;
}


/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 25px;
  transform: translateX(-100%);
  background: #090a0b;
  visibility: hidden;
  transition:
    transform 350ms ease,
    visibility 350ms ease;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #92979c;
  font-size: 1.35rem;
  font-weight: 300;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 65px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #c8cace;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.mobile-nav a span {
  color: #4c5157;
  font-size: 0.55rem;
  letter-spacing: 0;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.mobile-menu-footer span {
  color: #757a80;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-menu-footer p {
  margin-top: 6px;
  color: #4e5359;
  font-size: 0.62rem;
}


/* ==========================================
   SEARCH
========================================== */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  padding: 90px 30px 30px;
  opacity: 0;
  background: rgba(4, 5, 6, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  width: min(100%, 800px);
}

.search-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.search-heading > span {
  color: #777c82;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-input-wrapper {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input-wrapper svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #6e7379;
  stroke-width: 1.5;
}

.search-input-wrapper input {
  height: 70px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #e0e1e2;
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 400;
}

.search-input-wrapper input::placeholder {
  color: #41464b;
}

.search-results {
  max-height: 55vh;
  overflow-y: auto;
  padding-top: 20px;
}

.search-hint {
  color: #50555b;
  font-size: 0.68rem;
}

.search-result-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-result-item strong {
  display: block;
  color: #b7babd;
  font-size: 0.75rem;
}

.search-result-item span {
  display: block;
  margin-top: 4px;
  color: #555a60;
  font-size: 0.59rem;
}

.search-result-item b {
  align-self: center;
  color: #91969b;
  font-size: 0.7rem;
  font-weight: 600;
}


/* ==========================================
   CART DRAWER
========================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: min(100%, 450px);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  border-left: 1px solid var(--line);
  background: #0b0c0e;
  visibility: hidden;
  transition:
    transform 350ms ease,
    visibility 350ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-bottom: 1px solid var(--line);
}

.cart-header > div > span {
  display: block;
  margin-bottom: 4px;
  color: #555a60;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-header h2 {
  color: #d8dade;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 25px;
}

.cart-item {
  display: grid;
  grid-template-columns:
    75px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  height: 90px;
  display: grid;
  place-items: center;
  background: #111315;
}

.cart-item-mini-bottle {
  width: 29px;
  height: 53px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px 2px 6px 6px;
  background:
    linear-gradient(
      120deg,
      #303438,
      #111315
    );
}

.cart-item-info {
  min-width: 0;
}

.cart-item-info > span {
  color: #50555b;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.cart-item-info strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #b8bbc0;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-info small {
  display: block;
  margin-top: 4px;
  color: #565b61;
  font-size: 0.57rem;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  margin-top: 11px;
  border: 1px solid var(--line);
}

.cart-quantity button {
  width: 27px;
  height: 27px;
  border: 0;
  background: transparent;
  color: #757a80;
  cursor: pointer;
}

.cart-quantity span {
  min-width: 27px;
  color: #9da1a6;
  font-size: 0.6rem;
  text-align: center;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-price strong {
  color: #9da1a6;
  font-size: 0.66rem;
}

.remove-cart-item {
  border: 0;
  background: transparent;
  color: #4f545a;
  font-size: 0.55rem;
  cursor: pointer;
}

.remove-cart-item:hover {
  color: #b5b8bc;
}

.cart-empty {
  flex: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 40px;
  text-align: center;
}

.cart-empty.hidden {
  display: none;
}

.cart-empty div {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #656a70;
}

.cart-empty strong {
  color: #aeb1b5;
  font-size: 0.75rem;
}

.cart-empty p {
  margin-top: 7px;
  color: #50555b;
  font-size: 0.62rem;
}

.cart-footer {
  padding: 22px 25px 25px;
  border-top: 1px solid var(--line);
}

.cart-footer.hidden {
  display: none;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-subtotal span {
  color: #696e74;
  font-size: 0.66rem;
}

.cart-subtotal strong {
  color: #d1d3d5;
  font-size: 1rem;
  font-weight: 600;
}

.cart-footer > p {
  margin-top: 9px;
  color: #4d5258;
  font-size: 0.56rem;
}

.checkout-button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 17px;
  border: 1px solid #d2d4d6;
  border-radius: 6px;
  background: #d2d4d6;
  color: #101113;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.checkout-button:hover {
  background: #f1f2f3;
}


/* ==========================================
   TOAST
========================================== */

.store-toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 2000;
  max-width: min(
    calc(100% - 40px),
    360px
  );
  padding: 13px 16px;
  transform: translateY(20px);
  border: 1px solid var(--line-light);
  border-radius: 7px;
  opacity: 0;
  background: #16181a;
  color: #c5c8cb;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45);
  font-size: 0.65rem;
  visibility: hidden;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.store-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(360px, 0.75fr);
    gap: 50px;
  }

  .hero-frame {
    min-height: 540px;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .bestsellers-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .benefit:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .benefit:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .benefit:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}


@media (max-width: 850px) {
  .section-container,
  .header-container,
  .hero-container {
    width: min(
      calc(100% - 36px),
      var(--container)
    );
  }

  .header-container {
    min-height: 70px;
    grid-template-columns:
      auto 1fr auto;
    gap: 14px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button span {
    width: 19px;
    height: 1px;
    background: #969ba0;
  }

  .header-container > .brand {
    justify-self: center;
  }

  .header-container .brand-copy {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .search-button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 0 85px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 13vw, 6rem);
  }

  .hero-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .hero-frame {
    min-height: 570px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 45px 1fr;
    gap: 25px;
  }

  .intro-grid p {
    grid-column: 2;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 440px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-visual {
    width: min(100%, 560px);
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


@media (max-width: 600px) {
  .announcement p {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .section-container,
  .header-container,
  .hero-container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .header-container {
    min-height: 66px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    font-size: 0.62rem;
  }

  .header-action {
    width: 39px;
    height: 39px;
  }

  .hero-container {
    padding-top: 65px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 0.54rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-description {
    margin-top: 24px;
    font-size: 0.78rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 16px;
    margin-top: 40px;
  }

  .hero-meta strong {
    font-size: 0.61rem;
  }

  .hero-meta span {
    font-size: 0.55rem;
  }

  .hero-frame {
    min-height: 500px;
    border-radius: 2px 45px 2px 2px;
  }

  .perfume-bottle {
    width: 165px;
  }

  .bottle-cap {
    width: 65px;
    height: 52px;
  }

  .bottle-body {
    height: 235px;
  }

  .hero-product-info small {
    display: none;
  }

  .intro-strip {
    padding: 70px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-grid p {
    grid-column: auto;
  }

  .products-section,
  .collections-section,
  .bestsellers-section {
    padding: 80px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 28px 8px;
  }

  .product-image {
    min-height: 260px;
  }

  .mini-bottle {
    width: 80px;
  }

  .mini-cap {
    width: 37px;
    height: 29px;
  }

  .mini-body {
    height: 115px;
  }

  .mini-body span {
    width: 54px;
    padding: 11px 2px;
    font-size: 0.36rem;
  }

  .product-title-row {
    flex-direction: column;
    gap: 5px;
  }

  .product-title-row h3 {
    width: 100%;
  }

  .add-cart-button {
    font-size: 0.58rem;
  }

  .collection-card {
    min-height: 400px;
  }

  .experience-section {
    padding: 85px 0;
  }

  .experience-art {
    min-height: 500px;
  }

  .experience-bottle {
    width: 145px;
  }

  .experience-body {
    height: 250px;
  }

  .experience-number {
    font-size: 10rem;
  }

  .bestseller-card {
    grid-template-columns: 100px 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:first-child,
  .benefit:nth-child(3) {
    min-height: 205px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit-icon {
    margin-bottom: 30px;
  }

  .newsletter-section {
    padding: 70px 0;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    border: 0;
  }

  .newsletter-form input {
    border-bottom: 1px solid var(--line-light);
  }

  .newsletter-form button {
    min-height: 48px;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cart-drawer {
    width: 100%;
  }

  .store-toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}
/* ==========================================
   DUVANT 12 — HOME STRUCTURE V2
========================================== */


/* ==========================================
   NAV DROPDOWN
========================================== */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-dropdown-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: #7f848a;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition);
}

.nav-dropdown-trigger span {
  transform: translateY(-1px);
  color: #565b61;
  font-size: 0.68rem;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: #e3e4e5;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 500;
  width: 290px;
  padding: 16px;
  transform:
    translate(-50%, 8px);
  border: 1px solid var(--line-light);
  background:
    rgba(12, 14, 16, 0.98);
  box-shadow:
    0 28px 70px
    rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter:
    blur(20px);
}

.nav-dropdown:hover
.nav-dropdown-menu,
.nav-dropdown:focus-within
.nav-dropdown-menu {
  transform:
    translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-heading {
  padding: 4px 5px 13px;
}

.nav-dropdown-heading span {
  display: block;
  color: #aeb2b6;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav-dropdown-heading small {
  display: block;
  margin-top: 4px;
  color: #50555b;
  font-size: 0.57rem;
}

.nav-dropdown-menu > a,
.nav-dropdown-menu > button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border: 0;
  border-top:
    1px solid
    rgba(255, 255, 255, 0.055);
  background: transparent;
  color: #858a90;
  font: inherit;
  font-size: 0.64rem;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition);
}

.nav-dropdown-menu > a::after {
  display: none;
}

.nav-dropdown-menu > a:hover,
.nav-dropdown-menu > button:hover {
  background:
    rgba(255, 255, 255, 0.025);
  color: #dedfe1;
}

.nav-dropdown-menu b {
  color: #555a60;
  font-size: 0.7rem;
  font-weight: 400;
}

.nav-dropdown-divider {
  height: 14px;
  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
}


/* ==========================================
   CATEGORY POSITION
========================================== */

.home-category-section {
  padding-top: 105px;
  padding-bottom: 105px;
}


/* ==========================================
   BESTSELLERS / ARRIVALS
========================================== */

.home-bestsellers-section {
  border-top:
    1px solid var(--line);
}

.arrivals-section {
  border-top:
    1px solid var(--line);
  border-bottom:
    1px solid var(--line);
  background: #070809;
}


/* ==========================================
   REAL PRODUCT IMAGES
========================================== */

.home-product-real-image {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 330px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(
      0 26px 26px
      rgba(0, 0, 0, 0.45)
    );
  transition:
    transform 350ms ease;
}

.product-card:hover
.home-product-real-image {
  transform:
    translateY(-5px)
    scale(1.018);
}

.cart-real-image {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  object-position: center;
}

.add-cart-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.add-cart-button:disabled:hover {
  border-color: var(--line);
  background: transparent;
  color: #7c8187;
}


/* ==========================================
   EDITORIAL
========================================== */

.editorial-section {
  padding: 30px 0 120px;
  background: #090a0b;
}

.editorial-panel {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.65fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding:
    clamp(45px, 7vw, 95px);
  border:
    1px solid var(--line);
  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(255, 255, 255, 0.075),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #111315,
      #08090a
    );
}

.editorial-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border:
    1px solid
    rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.editorial-glow {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 360px;
  height: 360px;
  transform:
    translateY(-50%);
  border-radius: 50%;
  background:
    rgba(200, 203, 207, 0.065);
  filter: blur(70px);
}

.editorial-number {
  position: absolute;
  right: -20px;
  bottom: -110px;
  color:
    rgba(255, 255, 255, 0.025);
  font-size:
    clamp(14rem, 25vw, 25rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.editorial-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.editorial-copy h2 {
  max-width: 660px;
  margin-top: 12px;
  color: #e0e2e4;
  font-size:
    clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.editorial-copy h2 em {
  display: block;
  margin-top: 8px;
  color: #70757b;
  font-style: normal;
  font-weight: 400;
}

.editorial-copy p {
  max-width: 510px;
  margin: 25px 0 34px;
  color: #696e74;
  font-size: 0.76rem;
  line-height: 1.85;
}

.editorial-object {
  position: relative;
  z-index: 2;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.editorial-bottle {
  width: 170px;
  filter:
    drop-shadow(
      0 40px 35px
      rgba(0, 0, 0, 0.55)
    );
}

.editorial-bottle-cap {
  width: 68px;
  height: 48px;
  margin: 0 auto;
  border:
    1px solid
    rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(
      90deg,
      #25282b,
      #656a6f,
      #25282b
    );
}

.editorial-bottle-body {
  height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgba(255, 255, 255, 0.2);
  border-radius:
    8px 8px 24px 24px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.11),
      transparent 30%
    ),
    linear-gradient(
      to bottom,
      #202327,
      #0b0d0f
    );
}

.editorial-bottle-body span {
  color: #777c82;
  font-size: 0.55rem;
  letter-spacing: 0.23em;
}

.editorial-bottle-body strong {
  margin: 5px 0;
  color: #d0d2d5;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.editorial-bottle-body small {
  color: #4e5359;
  font-size: 0.42rem;
  letter-spacing: 0.16em;
}


/* ==========================================
   LOADING / EMPTY
========================================== */

.home-loading,
.home-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border:
    1px solid var(--line);
  color: #5e6369;
  font-size: 0.68rem;
}


/* ==========================================
   RESPONSIVE HOME V2
========================================== */

@media (max-width: 1100px) {
  .editorial-panel {
    grid-template-columns:
      minmax(0, 1fr)
      260px;
    gap: 40px;
  }
}


@media (max-width: 850px) {
  .nav-dropdown {
    display: none;
  }

  .editorial-section {
    padding-bottom: 90px;
  }

  .editorial-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-object {
    min-height: 300px;
  }

  .editorial-glow {
    top: auto;
    right: 50%;
    bottom: 0;
    transform:
      translateX(50%);
  }
}


@media (max-width: 600px) {
  .home-category-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .editorial-section {
    padding:
      10px 0 80px;
  }

  .editorial-panel {
    gap: 25px;
    padding:
      50px 25px;
  }

  .editorial-copy h2 {
    font-size:
      clamp(2.5rem, 13vw, 4rem);
  }

  .editorial-object {
    min-height: 260px;
  }

  .editorial-bottle {
    width: 130px;
  }

  .editorial-bottle-body {
    height: 185px;
  }

  .home-product-real-image {
    width: 90%;
    height: 210px;
  }
}