/* =========================================
   VERDEUR HOMEPAGE — FINAL V1
   Primary typeface: Figtree
========================================= */

:root {
  --white: #ffffff;
  --black: #111111;
  --text: #1a1a1a;
  --muted: #666666;
  --soft-muted: #888888;
  --line: #deded9;
  --review-bg: #f4f4f1;
  --header-height: 88px;
  --page-padding-desktop: 200px;
  --page-padding-tablet: 56px;
  --page-padding-mobile: 20px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 220ms ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* =========================================
   01 — HEADER
========================================= */
.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: transparent;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    padding-bottom 300ms var(--ease-premium);
}

.header-inner {
  position: relative;
  z-index: 3;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--page-padding-desktop);
}

.desktop-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link,
.dropdown-link {
  transition: color 220ms ease;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  min-width: 140px;
  padding: 0;
  background: transparent;
  color: var(--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 25px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555555;
  white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  color: var(--black);
}

.brand-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.brand-logo img {
  display: block;
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 350ms var(--ease-premium);
}

.bag-link {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

.bag-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-count {
  position: absolute;
  top: 0;
  right: -1px;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border-radius: 999px;
  color: var(--black);
  background: #ffffff;
  font-size: 8px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  background: currentColor;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.mobile-nav {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .site-header:hover {
    background: #ffffff;
    color: var(--black);
  }

  .site-header:hover .brand-logo img {
    filter: none;
  }

  .site-header:hover .bag-count {
    background: var(--black);
    color: #ffffff;
  }

  .site-header:hover .nav-link {
    color: #777777;
  }

  .site-header:hover .nav-link:hover,
  .site-header:hover .nav-link:focus-visible,
  .site-header:hover .nav-item-dropdown:hover > .nav-link,
  .site-header:hover .nav-item-dropdown:focus-within > .nav-link {
    color: var(--black);
  }

  .site-header:hover .dropdown-link {
    color: #777777;
  }

  .site-header:hover .dropdown-link:hover,
  .site-header:hover .dropdown-link:focus-visible {
    color: var(--black);
  }

.site-header:has(.nav-item-dropdown:hover)::after,
.site-header:has(.nav-item-dropdown:focus-within)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 48px;
  background: #ffffff;
  z-index: 2;
}

  .site-header:has(.nav-item-dropdown:hover) .brand-logo img,
  .site-header:has(.nav-item-dropdown:focus-within) .brand-logo img {
    filter: none;
  }

  .site-header:has(.nav-item-dropdown:hover) .bag-count,
  .site-header:has(.nav-item-dropdown:focus-within) .bag-count {
    background: var(--black);
    color: #ffffff;
  }
}

/* Desktop padding safety */
@media (max-width: 1500px) {
  :root {
    --page-padding-desktop: 120px;
  }
}

@media (max-width: 1240px) {
  :root {
    --page-padding-desktop: 72px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    padding-inline: var(--page-padding-mobile);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-self: start;
  }

  .brand-logo img {
    width: 112px;
  }

  .bag-link {
    width: 34px;
    height: 34px;
  }

  .bag-link svg {
    width: 20px;
    height: 20px;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    background: #ffffff;
    color: var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 300ms ease,
      visibility 300ms ease;
  }

  .mobile-nav a {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .mobile-nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-parent {
    font-size: 24px;
  }

  .mobile-nav .mobile-nav-sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #777777;
  }

  .site-header.menu-open {
    color: var(--black);
  }

  .site-header.menu-open .brand-logo img {
    filter: none;
  }

  .site-header.menu-open .bag-count {
    background: var(--black);
    color: #ffffff;
  }

  .site-header.menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

/* =========================================
   02 — HERO
========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.05) 14%,
    rgba(0, 0, 0, 0) 28%
  );
}

@media (max-width: 767px) {
  .hero {
    min-height: 560px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

/* =========================================
   03 — BRAND MARQUEE
========================================= */
.brand-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--black);
  color: #ffffff;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: verdeur-marquee 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-content span {
  display: block;
  padding-right: 64px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.025em;
  white-space: nowrap;
  text-transform: none;
}

@keyframes verdeur-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .brand-marquee {
    padding: 18px 0;
  }

  .marquee-content span {
    padding-right: 52px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .marquee-track {
    animation-duration: 22s;
  }
}

/* =========================================
   04 — BRAND STATEMENT
========================================= */
.brand-statement {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 50px 24px 68px;
}

.brand-statement p {
  max-width: 950px;
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 2.3vw, 44px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--black);
}

@media (max-width: 767px) {
  .brand-statement {
    padding: 38px 24px 54px;
  }

  .brand-statement p {
    max-width: 340px;
    font-size: 28px;
    line-height: 1.3;
  }
}

/* =========================================
   05 — INITIALÉ FRAGRANCE SHOWCASE
========================================= */
.fragrance-showcase {
  width: 100%;
  background: #ffffff;
}

.fragrance-row {
  width: 100%;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "visual content";
  align-items: center;
  padding: 64px 12vw;
}

.fragrance-row-reverse {
  grid-template-areas: "content visual";
}

.fragrance-visual {
  grid-area: visual;
  min-width: 0;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fragrance-visual img {
  width: auto;
  height: auto;
  max-width: 370px;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 14px 10px rgba(0, 0, 0, 0.06));
}

.fragrance-content {
  grid-area: content;
  width: 100%;
  max-width: 500px;
  justify-self: center;
  text-align: center;
}

.fragrance-name {
  margin: 0 0 14px;
  font-size: clamp(36px, 3.15vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--black);
}

.fragrance-expression {
  margin: 0 0 24px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}

.fragrance-description {
  max-width: 410px;
  margin: 0 auto 32px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.62;
  color: #3f3f3f;
}

.fragrance-link,
.discovery-button,
.story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  background: var(--black);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.fragrance-link:hover,
.discovery-button:hover,
.story-button:hover {
  background: #333333;
}

@media (max-width: 1100px) {
  .fragrance-row {
    min-height: 590px;
    padding-inline: 7vw;
  }

  .fragrance-visual {
    min-height: 430px;
  }

  .fragrance-visual img {
    max-width: 320px;
    max-height: 465px;
  }
}

@media (max-width: 767px) {
  .fragrance-row,
  .fragrance-row-reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content";
    gap: 30px;
    padding: 58px 24px 74px;
  }

  .fragrance-visual {
    min-height: 350px;
  }

  .fragrance-visual img {
    max-width: 250px;
    max-height: 380px;
  }

  .fragrance-content {
    max-width: 100%;
    justify-self: stretch;
  }

  .fragrance-name {
    margin-bottom: 11px;
    font-size: 34px;
  }

  .fragrance-expression {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .fragrance-description {
    max-width: 350px;
    margin-bottom: 27px;
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================================
   06 — DISCOVERY SET
========================================= */
.discovery-section {
  width: 100%;
  background: #ffffff;
  padding: 108px 24px 118px;
}

.discovery-inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.discovery-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #777777;
}

.discovery-title,
.reviews-title,
.story-title {
  margin: 0;
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--black);
}

.discovery-title {
  margin-bottom: 20px;
}

.discovery-copy {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #555555;
}

.discovery-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.discovery-visual img {
  width: auto;
  height: auto;
  max-width: 730px;
  max-height: 505px;
  object-fit: contain;
  filter: drop-shadow(0 16px 12px rgba(0, 0, 0, 0.07));
}

.discovery-size {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #555555;
}

@media (max-width: 767px) {
  .discovery-section {
    padding: 80px 22px 90px;
  }

  .discovery-eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .discovery-title,
  .reviews-title,
  .story-title {
    font-size: 34px;
  }

  .discovery-copy {
    max-width: 350px;
    margin-bottom: 38px;
    font-size: 15px;
    line-height: 1.6;
  }

  .discovery-visual {
    margin-bottom: 26px;
  }

  .discovery-visual img {
    max-width: 96%;
    max-height: 410px;
  }
}

/* =========================================
   07 — CLIENT IMPRESSIONS
========================================= */
.reviews-section {
  width: 100%;
  overflow: hidden;
  background: var(--review-bg);
  padding: 96px 80px 108px;
}

.reviews-header {
  margin-bottom: 50px;
  text-align: center;
}

.reviews-slider {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 22px;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.reviews-track {
  display: flex;
  gap: 36px;
  transition: transform 600ms var(--ease-premium);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 72px) / 3);
  min-width: 0;
  padding: 0 34px;
  text-align: center;
}

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

.review-quote {
  display: block;
  margin-bottom: 14px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  color: #b5b5b0;
}

.review-text {
  max-width: 360px;
  min-height: 125px;
  margin: 0 auto 26px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.62;
  color: #333333;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.review-fragrance {
  font-size: 12px;
  font-weight: 400;
  color: var(--soft-muted);
}

.reviews-arrow {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfca;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 20px;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.reviews-arrow:hover {
  background: var(--black);
  color: #ffffff;
  border-color: var(--black);
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.review-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c9c4;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.review-dot.active {
  background: var(--black);
  transform: scale(1.25);
}

@media (max-width: 1100px) {
  .reviews-section {
    padding-inline: 40px;
  }

  .reviews-track {
    gap: 28px;
  }

  .review-card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 78px 20px 88px;
  }

  .reviews-header {
    margin-bottom: 42px;
  }

  .reviews-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }

  .reviews-track {
    gap: 0;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 0 14px;
    border-left: 0 !important;
  }

  .review-text {
    max-width: 330px;
    min-height: 145px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.62;
  }

  .review-quote {
    margin-bottom: 12px;
    font-size: 38px;
  }

  .reviews-arrow {
    width: 34px;
    height: 42px;
    border: 0;
    font-size: 19px;
  }

  .reviews-arrow:hover {
    background: transparent;
    color: var(--black);
  }

  .reviews-dots {
    gap: 6px;
    margin-top: 34px;
  }

  .review-dot {
    width: 5px;
    height: 5px;
  }
}

/* =========================================
   08 — OUR STORY + BRAND UNIVERSE
========================================= */
.story-section {
  width: 100%;
  background: #ffffff;
}

.story-teaser {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 24px 86px;
  text-align: center;
}

.story-title {
  margin-bottom: 22px;
}

.story-copy {
  max-width: 660px;
  margin: 0 auto 32px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
  color: #555555;
}

.universe-panel {
  position: relative;
  width: calc(100% - 440px);
  max-width: 1080px;
  margin: 0 auto 105px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: #ffffff;
}

.universe-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.universe-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.universe-logo {
  width: 240px;
  height: auto;
  margin-bottom: 14px;
  filter: none;
}

.universe-line {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #222222;
}

@media (max-width: 1200px) {
  .universe-panel {
    width: calc(100% - 180px);
  }
}

@media (max-width: 767px) {
  .story-teaser {
    padding: 78px 22px 66px;
  }

  .story-title {
    margin-bottom: 18px;
  }

  .story-copy {
    max-width: 350px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .universe-panel {
    width: calc(100% - 32px);
    margin-bottom: 70px;
    aspect-ratio: 4 / 3;
  }

  .universe-background {
    object-position: center;
  }

  .universe-logo {
    width: 180px;
    margin-bottom: 12px;
  }

  .universe-line {
    font-size: 19px;
  }
}

/* =========================================
   09 — FOLLOW US + NEWSLETTER
========================================= */
.connect-section {
  width: 100%;
  background: #ffffff;
  padding: 84px 24px 118px;
}

.connect-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.follow-title {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--black);
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.social-icon svg {
  width: 23px;
  height: 23px;
  display: block;
}

.social-icon:first-child svg {
  fill: currentColor;
}

.social-icon:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon:nth-child(2) .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover {
  opacity: 0.55;
  transform: translateY(-2px);
}

.newsletter-copy {
  max-width: 610px;
  margin: 0 auto 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #333333;
}

.newsletter-form {
  width: 100%;
  max-width: 740px;
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 155px;
  border: 1px solid var(--black);
  background: #ffffff;
}

.newsletter-input-wrap {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
}

.newsletter-form input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 54px 0 22px;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
}

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

.newsletter-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: #777777;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.newsletter-form button {
  margin: 8px;
  border: 0;
  background: var(--black);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 220ms ease;
}

.newsletter-form button:hover {
  background: #333333;
}

.newsletter-status {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 12px;
  color: #777777;
}

.newsletter-status:empty {
  display: none;
}

.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;
}

@media (max-width: 767px) {
  .connect-section {
    padding: 68px 20px 88px;
  }

  .follow-title {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .social-icons {
    gap: 18px;
    margin-bottom: 28px;
  }

  .newsletter-copy {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .newsletter-form {
    min-height: 56px;
    grid-template-columns: minmax(0, 1fr) 118px;
  }

  .newsletter-form input {
    padding-left: 16px;
    padding-right: 38px;
    font-size: 16px;
  }

  .newsletter-icon {
    right: 11px;
    width: 17px;
    height: 17px;
  }

  .newsletter-form button {
    margin: 6px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .newsletter-form {
    grid-template-columns: 1fr;
    padding: 6px;
  }

  .newsletter-form button {
    min-height: 44px;
    margin: 0;
  }

  .newsletter-input-wrap {
    min-height: 48px;
  }
}

/* =========================================
   10 — FOOTER
========================================= */
.site-footer {
  width: 100%;
  background: #080808;
  color: #ffffff;
  padding: 78px 0 28px;
}

.footer-inner,
.footer-bottom {
  width: calc(100% - 200px);
  max-width: 1450px;
  margin-inline: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: 80px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo img {
  display: block;
  width: 155px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-copy {
  max-width: 310px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #b5b5b5;
}

.footer-heading {
  margin: 4px 0 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}

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

.footer-links a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #b5b5b5;
  transition: color 220ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8f8f;
  transition: color 220ms ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-instagram {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-copyright {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  color: #777777;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 96px);
  }

  .footer-inner {
    gap: 42px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 66px 22px 28px;
  }

  .footer-inner,
  .footer-bottom {
    width: 100%;
    max-width: 420px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 145px;
  }

  .footer-brand-copy {
    max-width: 300px;
    font-size: 13px;
  }

  .footer-heading {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .footer-links {
    align-items: center;
    gap: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 52px;
    padding-top: 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-copyright {
    font-size: 10px;
  }
}

/* =========================================
   FLOATING WHATSAPP
========================================= */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 28px rgba(0, 0, 0, 0.20);
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

/* =========================================
   REDUCED MOTION
========================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .reviews-track,
  .site-header,
  .brand-logo img,
  .mobile-nav,
  .whatsapp-float,
  .social-icon {
    transition: none;
  }
}




/* =========================================
   INNER PAGE HEADER
========================================= */

.page-header {
  position: relative;

  background: #ffffff;
  color: #111111;

  border-bottom: 1px solid #eeeeee;
}


/* Logo black from the beginning */

.page-header .brand-logo img {
  filter: none;
}


/* Bag counter */

.page-header .bag-count {
  background: #111111;
  color: #ffffff;
}


/* Default navigation slightly softened */

.page-header .nav-link {
  color: #555555;
}


.page-header .nav-link:hover,
.page-header .nav-item-dropdown:hover > .nav-link {
  color: #111111;
}


/* Keep dropdown header white */

@media (hover: hover) and (pointer: fine) {

  .page-header:hover {
    background: #ffffff;
    color: #111111;
  }

}

/* =========================================
   INITIALÉ — COLLECTION INTRO
========================================= */

.collection-intro {
  width: 100%;

  background: #ffffff;

  padding: 115px 24px 105px;
}


.collection-intro-inner {
  width: 100%;
  max-width: 800px;

  margin: 0 auto;

  text-align: center;
}


/* Small upper label */

.collection-kicker {
  margin: 0 0 22px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #777777;
}


/* INITIALÉ */

.collection-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(58px, 6.5vw, 104px);
  font-weight: 500;

  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;

  color: #111111;
}


/* Accent line */

.collection-subtitle {
  margin: 24px 0 0;

  font-family: "Figtree", sans-serif;

  font-size: 22px;
  font-weight: 400;

  font-style: italic;

  line-height: 1.3;

  color: #555555;
}


/* Introduction */

.collection-description {
  max-width: 600px;

  margin: 38px auto 0;

  font-size: 17px;
  font-weight: 400;

  line-height: 1.7;

  color: #444444;
}


/* Five fragrances */

.collection-count {
  margin: 34px 0 0;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.075em;
  text-transform: uppercase;

  color: #888888;
}

/* =========================================
   INITIALÉ INTRO — MOBILE
========================================= */

@media (max-width: 767px) {

  .collection-intro {
    padding: 82px 22px 76px;
  }


  .collection-kicker {
    margin-bottom: 18px;

    font-size: 11px;
  }


  .collection-title {
    font-size: 58px;
    text-transform: uppercase;
  }


  .collection-subtitle {
    margin-top: 19px;

    font-size: 19px;
  }


  .collection-description {
    max-width: 340px;

    margin-top: 30px;

    font-size: 15px;
    line-height: 1.65;
  }


  .collection-count {
    margin-top: 28px;

    font-size: 11px;
  }

}



/* =========================================
   INITIALÉ — PRODUCT LISTING
========================================= */

.collection-products {
  width: 100%;

  padding: 20px 80px 130px;

  background: #ffffff;
}


.collection-products-grid {
  width: 100%;
  max-width: 1420px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 70px;
  row-gap: 95px;
}


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

.collection-product {
  min-width: 0;

  text-align: center;
}


/* =========================================
   PRODUCT VISUAL
========================================= */

.collection-product-visual {
  width: 100%;

  aspect-ratio: 1 / 0.95;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;

  background: transparent;
}


/* Bottle + cart icon become one unit */

.product-bottle-wrap {
  position: relative;

  width: min(60%, 380px);
  height: 78%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.product-image-link {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.product-bottle-wrap img {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  filter: drop-shadow(
    0 14px 11px rgba(0, 0, 0, 0.06)
  );

  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================
   DISCOVERY SET VISUAL
========================================= */

.collection-product-discovery .product-bottle-wrap {
  width: min(82%, 520px);
  height: 68%;
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.collection-product-info {
  display: block;

  padding-top: 18px;

  text-align: center;
}


.collection-product-name {
  margin: 0 0 8px;

  font-family: "Figtree", sans-serif;

  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: 0.015em;

  text-transform: uppercase;

  color: #111111;
}


.collection-product-expression {
  margin: 0 0 13px;

  font-family: "Figtree", sans-serif;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.45;

  color: #666666;
}


.collection-product-price {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: 15px;
  font-weight: 650;

  line-height: 1.4;

  letter-spacing: 0.01em;

  color: #111111;
}


/* =========================================
   ADD TO CART BUTTON
========================================= */

.product-cart-button {
  position: absolute;

  left: auto;
  right: -8px;
  bottom: 5px;

  z-index: 4;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: #f4f4f1;
  color: #111111;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(7px);

  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06);

  transition:
    opacity 250ms ease,
    visibility 250ms ease,
    transform 250ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}


.product-cart-button svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.45;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================
   DESKTOP HOVER
========================================= */

@media (hover: hover) and (pointer: fine) {

  .collection-product:hover
  .product-cart-button {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }


  .collection-product:hover
  .product-bottle-wrap img {
    transform: scale(1.035);
  }


  .product-cart-button:hover {
    background: #111111;
    color: #ffffff;

    box-shadow:
      0 7px 20px rgba(0, 0, 0, 0.12);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .collection-products {
    padding:
      10px 32px
      110px;
  }


  .collection-products-grid {
    column-gap: 34px;
    row-gap: 78px;
  }


  .collection-product-visual {
    aspect-ratio: 1 / 1;
  }


  .product-bottle-wrap {
    width: 64%;
    height: 76%;
  }


  .collection-product-discovery
  .product-bottle-wrap {
    width: 84%;
    height: 67%;
  }


  .collection-product-name {
    font-size: 27px;
  }

}


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

@media (max-width: 767px) {

  .collection-products {
    padding:
      0 20px
      90px;
  }


  .collection-products-grid {
    grid-template-columns: 1fr;

    gap: 72px;
  }


  .collection-product-visual {
    aspect-ratio: 1 / 1.05;
  }


  .product-bottle-wrap {
    width: 62%;
    height: 75%;
  }


  .collection-product-discovery
  .product-bottle-wrap {
    width: 88%;
    height: 66%;
  }


  /* Text */

  .collection-product-info {
    padding-top: 16px;

    text-align: center;
  }


  .collection-product-name {
    margin-bottom: 7px;

    font-size: 28px;
  }


  .collection-product-expression {
    margin-bottom: 11px;

    font-size: 14px;
  }


  .collection-product-price {
    font-size: 15px;
    font-weight: 650;
  }


  /* Cart stays permanently visible on mobile */

  .product-cart-button {
    left: auto;
    right: -8px;

    bottom: 4px;

    width: 46px;
    height: 46px;

    opacity: 1;
    visibility: visible;

    transform: none;

    background: #f4f4f1;
    color: #111111;
  }


  .product-cart-button svg {
    width: 20px;
    height: 20px;
  }

}

/* =========================================
   PRODUCT PAGE — HERO
========================================= */

.product-hero {
  width: 100%;
  padding: 70px 80px 120px;
  background: #ffffff;
}


.product-hero-inner {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;

  align-items: center;

  gap: 100px;
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.product-hero-visual {
  min-height: 680px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.product-hero-image {
  display: block;

  width: auto;
  height: auto;

  max-width: 450px;
  max-height: 610px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 14px rgba(0, 0, 0, 0.06)
    );
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.product-hero-content {
  width: 100%;
  max-width: 540px;
}


/* Name / expression / price centered */

.product-heading {
  width: 100%;

  margin-bottom: 28px;

  text-align: center;
}


.product-collection {
  margin: 0 0 14px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #777777;
}


.product-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(40px, 3.3vw, 56px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;
}


.product-expression {
  margin: 14px 0 0;

  font-size: 19px;
  font-weight: 400;

  font-style: italic;

  color: #555555;
}


.product-price {
  margin: 22px 0 0;

  font-size: 20px;
  font-weight: 650;

  color: #111111;
}


/* =========================================
   OLFACTORY PYRAMID
========================================= */

.product-accordion {
  width: 100%;
}


/* No border here */

.product-accordion-trigger {
  width: 100%;

  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  color: #111111;
}


.product-accordion-trigger > span:first-child {
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.055em;
  text-transform: uppercase;
}


.accordion-icon {
  font-size: 21px;
  font-weight: 300;

  line-height: 1;

  transition: transform 220ms ease;
}


.product-accordion-trigger[aria-expanded="true"]
.accordion-icon {
  transform: rotate(45deg);
}


.product-accordion-content {
  display: none;

  padding: 4px 0 24px;
}


.product-accordion.open
.product-accordion-content {
  display: block;
}


.pyramid-row {
  display: grid;

  grid-template-columns: 105px 1fr;

  gap: 22px;

  padding: 9px 0;

  /* exact text alignment */
  align-items: baseline;
}


.pyramid-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #777777;
}


.pyramid-notes {
  font-size: 13px;
  font-weight: 400;

  line-height: 1.4;

  color: #333333;
}


/* =========================================
   QUICK DETAILS

   ONLY divider on top
========================================= */

.product-details-list {
  width: 100%;

  margin-top: 10px;
  padding-top: 18px;

  border-top: 1px solid #d9d9d9;
}


.product-detail-row {
  display: grid;

  grid-template-columns: 145px 1fr;

  gap: 22px;

  padding: 8px 0;

  /* exact label/value alignment */
  align-items: baseline;

  /* NO individual borders */
}


.product-detail-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.045em;
  text-transform: uppercase;

  color: #777777;
}


.product-detail-value {
  font-size: 13px;
  font-weight: 400;

  line-height: 1.4;

  color: #333333;
}


/* =========================================
   ADD TO CART
========================================= */

.product-add-cart {
  width: 100%;

  min-height: 52px;

  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111111;
  color: #ffffff;

  cursor: pointer;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.07em;
  text-transform: uppercase;

  transition: background-color 220ms ease;
}


.product-add-cart:hover {
  background: #333333;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .product-hero {
    padding: 60px 32px 95px;
  }


  .product-hero-inner {
    grid-template-columns: 1fr 1fr;

    gap: 50px;
  }


  .product-hero-visual {
    min-height: 550px;
  }


  .product-hero-image {
    max-width: 340px;
    max-height: 510px;
  }

}


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

@media (max-width: 767px) {

  .product-hero {
    padding: 42px 20px 80px;
  }


  .product-hero-inner {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .product-hero-visual {
    min-height: 390px;
  }


  .product-hero-image {
    max-width: 235px;
    max-height: 360px;
  }


  .product-hero-content {
    max-width: 100%;
  }


  .product-heading {
    margin-bottom: 24px;
  }


  .product-title {
    font-size: 38px;
  }


  .product-expression {
    font-size: 18px;
  }


  .product-price {
    font-size: 18px;
  }


  .pyramid-row {
    grid-template-columns: 80px 1fr;

    gap: 13px;
  }


  .product-detail-row {
    grid-template-columns: 105px 1fr;

    gap: 13px;
  }

}

/* =========================================
   NEXT CHAPTER — SCENT STORY
========================================= */

.scent-story {
  width: 100%;

  padding: 40px 80px 130px;

  background: #ffffff;
}


.scent-chapter {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto 135px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  grid-template-areas: "visual content";

  align-items: center;

  gap: 85px;
}


.scent-chapter-reverse {
  grid-template-areas: "content visual";
}


/* IMAGE */

.scent-chapter-visual {
  grid-area: visual;

  width: 100%;

  overflow: hidden;

  aspect-ratio: 4 / 3;
}


.scent-chapter-visual img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* CONTENT */

.scent-chapter-content {
  grid-area: content;

  max-width: 470px;
}


.scent-chapter-number {
  margin: 0 0 17px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.075em;
  text-transform: uppercase;

  color: #888888;
}


.scent-chapter-title {
  margin: 0 0 24px;

  font-family: "Figtree", sans-serif;

  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;

  line-height: 1.05;

  letter-spacing: 0.01em;

  color: #111111;
}


.scent-chapter-copy {
  margin: 0;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.75;

  color: #444444;
}


/* =========================================
   FINAL EXPRESSION
========================================= */

.scent-conclusion {
  width: 100%;
  max-width: 1050px;

  margin: 20px auto 0;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  align-items: center;

  gap: 90px;
}


.scent-conclusion-content {
  max-width: 520px;
}


.scent-conclusion-title {
  margin: 0 0 24px;

  font-size: clamp(38px, 3.5vw, 55px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;
}


.scent-conclusion-copy {
  margin: 0;

  font-size: 16px;

  line-height: 1.75;

  color: #444444;
}


.scent-conclusion-visual {
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.scent-conclusion-visual img {
  width: auto;
  height: auto;

  max-width: 250px;
  max-height: 390px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 14px 11px rgba(0, 0, 0, 0.06)
    );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .scent-story {
    padding:
      30px 32px
      110px;
  }


  .scent-chapter {
    gap: 55px;

    margin-bottom: 105px;
  }

}


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

@media (max-width: 767px) {

  .scent-story {
    padding:
      20px 20px
      85px;
  }


  .scent-chapter,
  .scent-chapter-reverse {
    grid-template-columns: 1fr;

    grid-template-areas:
      "visual"
      "content";

    gap: 30px;

    margin-bottom: 85px;
  }


  .scent-chapter-content {
    max-width: 100%;
  }


  .scent-chapter-title {
    margin-bottom: 18px;

    font-size: 32px;
  }


  .scent-chapter-copy {
    font-size: 15px;

    line-height: 1.7;
  }


  .scent-conclusion {
    grid-template-columns: 1fr;

    gap: 35px;

    text-align: left;
  }


  .scent-conclusion-visual {
    min-height: 360px;

    order: -1;
  }


  .scent-conclusion-visual img {
    max-width: 210px;
    max-height: 330px;
  }


  .scent-conclusion-title {
    font-size: 36px;
  }

}

/* =========================================
   RELATED INITIALÉ PRODUCTS
========================================= */

.related-products {
  width: 100%;

  padding: 110px 60px 125px;

  background: #ffffff;
}


.related-products-inner {
  width: 100%;
  max-width: 1420px;

  margin: 0 auto;
}


/* Heading */

.related-products-header {
  margin-bottom: 58px;

  text-align: center;
}


.related-products-eyebrow {
  margin: 0 0 12px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.related-products-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;

  line-height: 1.05;
  letter-spacing: 0.015em;

  color: #111111;
}


/* =========================================
   GRID
========================================= */

.related-products-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 28px;
}


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

.related-product {
  min-width: 0;
}


.related-product-link {
  display: block;
}


/* Image */

.related-product-visual {
  width: 100%;

  aspect-ratio: 1 / 1.12;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: transparent;
}


.related-product-visual img {
  display: block;

  width: auto;
  height: auto;

  max-width: 67%;
  max-height: 78%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 12px 10px rgba(0, 0, 0, 0.055)
    );

  transition:
    transform 550ms
    cubic-bezier(0.22, 1, 0.36, 1);
}


/* Product information */

.related-product-info {
  padding-top: 18px;

  text-align: center;
}


.related-product-name {
  margin: 0 0 7px;

  font-family: "Figtree", sans-serif;

  font-size: 18px;
  font-weight: 500;

  line-height: 1.15;

  letter-spacing: 0.015em;

  color: #111111;
}


.related-product-expression {
  margin: 0 0 11px;

  font-size: 13px;
  font-weight: 400;

  color: #777777;
}


.related-product-price {
  margin: 0;

  font-size: 14px;
  font-weight: 600;

  color: #111111;
}


/* Desktop hover */

@media (hover: hover) and (pointer: fine) {

  .related-product-link:hover
  .related-product-visual img {
    transform: scale(1.04);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .related-products {
    padding:
      90px 32px
      105px;
  }


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

    column-gap: 30px;
    row-gap: 65px;
  }

}


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

@media (max-width: 767px) {

  .related-products {
    padding:
      75px 18px
      85px;
  }


  .related-products-header {
    margin-bottom: 42px;
  }


  .related-products-title {
    font-size: 30px;
  }


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

    column-gap: 14px;
    row-gap: 48px;
  }


  .related-product-visual {
    aspect-ratio: 1 / 1.18;
  }


  .related-product-visual img {
    max-width: 72%;
    max-height: 77%;
  }


  .related-product-info {
    padding-top: 14px;
  }


  .related-product-name {
    font-size: 15px;
  }


  .related-product-expression {
    font-size: 12px;
  }


  .related-product-price {
    font-size: 13px;
  }

}

/* =========================================
   DISCOVERY SET PDP
========================================= */


/* =========================================
   01 — HERO
========================================= */

.ds-hero {
  width: 100%;

  padding: 82px 80px 115px;

  background: #ffffff;
}


.ds-hero-inner {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;

  align-items: center;

  gap: 95px;
}


/* Product visual */

.ds-hero-visual {
  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.ds-hero-image {
  display: block;

  width: auto;
  height: auto;

  max-width: 680px;
  max-height: 500px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 14px rgba(0, 0, 0, 0.055)
    );
}


/* Product details */

.ds-hero-content {
  width: 100%;
  max-width: 545px;
}


.ds-hero-heading {
  margin-bottom: 28px;

  text-align: center;
}


.ds-kicker {
  margin: 0 0 13px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.ds-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(42px, 3.5vw, 58px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;

  text-transform: uppercase;
}


.ds-subtitle {
  margin: 15px 0 0;

  font-size: 18px;
  font-weight: 400;

  font-style: italic;

  line-height: 1.4;

  color: #555555;
}


.ds-price {
  margin: 22px 0 0;

  font-size: 21px;
  font-weight: 650;

  color: #111111;
}


.ds-intro {
  max-width: 485px;

  margin: 0 auto 28px;

  text-align: center;

  font-size: 15px;
  line-height: 1.7;

  color: #444444;
}


/* Details */

.ds-details {
  padding-top: 20px;

  border-top: 1px solid #dddddd;
}


.ds-detail-row {
  display: grid;

  grid-template-columns: 130px 1fr;

  gap: 22px;

  align-items: baseline;

  padding: 8px 0;
}


.ds-detail-label {
  font-size: 10px;
  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 0.055em;
  text-transform: uppercase;

  color: #888888;
}


.ds-detail-value {
  font-size: 13px;
  font-weight: 400;

  line-height: 1.4;

  color: #333333;
}


/* CTA */

.ds-add-cart {
  width: 100%;
  min-height: 53px;

  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;

  background: #111111;
  color: #ffffff;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.07em;
  text-transform: uppercase;

  transition:
    background-color 220ms ease;
}


.ds-add-cart:hover {
  background: #333333;
}



/* =========================================
   SHARED SECTION TYPOGRAPHY
========================================= */

.ds-section-header {
  width: 100%;
  max-width: 720px;

  margin: 0 auto;

  text-align: center;
}


.ds-section-kicker {
  margin: 0 0 14px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.ds-section-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 500;

  line-height: 1.04;

  letter-spacing: 0.01em;

  color: #111111;
}


.ds-section-intro {
  max-width: 620px;

  margin: 24px auto 0;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.7;

  color: #555555;
}



/* =========================================
   02 — OLFACTORY OVERVIEW
========================================= */

.ds-olfactory {
  width: 100%;

  padding: 115px 70px 135px;

  background: #ffffff;
}


.ds-olfactory-inner {
  width: 100%;
  max-width: 1380px;

  margin: 0 auto;
}


.ds-olfactory .ds-section-header {
  margin-bottom: 85px;
}



/* =========================================
   OLFACTORY GRID
========================================= */



/* First three */

.ds-olfactory-item {
  grid-column: span 2;

  min-width: 0;
}


/* Last two centered */



.ds-olfactory-link {
  display: block;
}



/* =========================================
   FRAGRANCE HEADING
========================================= */

.ds-accent-line {
  width: 42px;
  height: 3px;

  margin-bottom: 21px;

  background: var(--scent-accent);
}


.ds-olfactory-heading {
  margin-bottom: 38px;
}


.ds-olfactory-heading h3 {
  margin: 0 0 9px;

  font-family: "Figtree", sans-serif;

  font-size: clamp(24px, 2vw, 31px);
  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.01em;

  color: #111111;
  text-transform: uppercase;
}


.ds-olfactory-heading p {
  margin: 0;

  font-size: 15px;
  font-weight: 400;

  font-style: italic;

  line-height: 1.45;

  color: #666666;
}



/* =========================================
   OLFACTORY INFORMATION
========================================= */

.ds-olfactory-detail {
  display: grid;

  grid-template-columns: 44px 1fr;

  gap: 13px;

  align-items: start;

  padding: 20px 0;

  border-top: 1px solid #e7e7e4;
}


/* First item doesn't need divider */

.ds-olfactory-heading +
.ds-olfactory-detail {
  border-top: 0;

  padding-top: 0;
}


.ds-detail-number {
  padding-top: 1px;

  font-size: 11px;
  font-weight: 600;

  line-height: 1.4;

  color: #111111;
}


.ds-olfactory-detail h4 {
  margin: 0 0 10px;

  font-family: "Figtree", sans-serif;

  font-size: 13px;
  font-weight: 650;

  line-height: 1.25;

  letter-spacing: 0.025em;
  text-transform: uppercase;

  color: #111111;
}


.ds-olfactory-detail p {
  margin: 0;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.55;

  color: #333333;
}


/* Best-for slightly separated */

.ds-best-for {
  margin-top: 4px;
}



/* Subtle hover */

@media (hover: hover) and (pointer: fine) {

  .ds-olfactory-item {
    transition:
      transform 280ms ease;
  }


  .ds-olfactory-item:hover {
    transform: translateY(-4px);
  }

}



/* =========================================
   03 — DISCOVERY EXPERIENCE
========================================= */

.ds-experience {
  width: 100%;

  padding: 120px 70px 135px;

  background: #f4f4f1;
}


.ds-experience-inner {
  width: 100%;
  max-width: 1240px;

  margin: 0 auto;
}


.ds-experience-header {
  margin-bottom: 85px;
}



/* =========================================
   HOW TO DISCOVER
========================================= */

.ds-how {
  width: 100%;
}


.ds-how-heading {
  margin: 0 0 55px;

  text-align: center;

  font-family: "Figtree", sans-serif;

  font-size: 25px;
  font-weight: 500;

  line-height: 1.2;

  color: #111111;
}


.ds-how-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 58px;
}


.ds-how-step {
  width: 100%;
  max-width: 330px;

  margin: 0 auto;

  text-align: center;
}



/* =========================================
   GUIDANCE ILLUSTRATIONS
========================================= */

.ds-how-icon {
  width: 175px;
  height: 175px;

  margin:
    0 auto
    26px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.ds-how-icon svg {
  width: 100%;
  height: 100%;

  fill: none;

  stroke: #111111;
  stroke-width: 1.6;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.ds-step-label {
  margin: 0 0 10px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.08em;

  color: #999999;
}


.ds-how-step h4 {
  margin: 0 0 14px;

  font-size: 20px;
  font-weight: 500;

  line-height: 1.25;

  color: #111111;
}


.ds-how-step > p:last-child {
  margin: 0;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.7;

  color: #555555;
}



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

.ds-experience-card {
  width: 100%;
  max-width: 1020px;

  margin: 115px auto 0;

  padding-top: 90px;

  border-top:
    1px solid rgba(17, 17, 17, 0.13);

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  align-items: center;

  gap: 95px;
}


.ds-card-visual {
  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.ds-card-visual img {
  display: block;

  width: auto;
  height: auto;

  max-width: 355px;
  max-height: 500px;

  object-fit: contain;

  transform:
    perspective(1100px)
    rotateY(2deg)
    rotateX(1deg);

  box-shadow:
    0 3px 5px rgba(0, 0, 0, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.10),
    0 32px 55px rgba(0, 0, 0, 0.07);

  transition:
    transform 450ms
    cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms ease;
}

@media (hover: hover) and (pointer: fine) {

  .ds-card-visual:hover img {
    transform:
      perspective(1100px)
      rotateY(0deg)
      rotateX(0deg)
      translateY(-5px);

    box-shadow:
      0 5px 8px rgba(0, 0, 0, 0.08),
      0 20px 38px rgba(0, 0, 0, 0.11),
      0 38px 65px rgba(0, 0, 0, 0.08);
  }

}

.ds-card-visual {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.ds-card-visual::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 28px;

  width: 220px;
  height: 18px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    rgba(0, 0, 0, 0.08);

  filter: blur(13px);

  z-index: 0;
}


.ds-card-visual img {
  position: relative;

  z-index: 1;
}


.ds-card-content {
  width: 100%;
  max-width: 475px;
}


.ds-card-kicker {
  margin: 0 0 17px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.075em;
  text-transform: uppercase;

  color: #888888;
}


.ds-card-title {
  margin: 0 0 25px;

  font-family: "Figtree", sans-serif;

  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;

  line-height: 1.05;

  letter-spacing: 0.01em;

  color: #111111;
}


.ds-card-copy {
  max-width: 430px;

  margin: 0;

  font-size: 15px;

  line-height: 1.75;

  color: #444444;
}


.ds-card-note {
  margin: 25px 0 0;

  font-size: 13px;
  font-style: italic;

  line-height: 1.6;

  color: #777777;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {


  /* HERO */

  .ds-hero {
    padding:
      65px 32px
      100px;
  }


  .ds-hero-inner {
    grid-template-columns: 1fr 1fr;

    gap: 48px;
  }


  .ds-hero-visual {
    min-height: 520px;
  }


  .ds-hero-image {
    max-width: 96%;
    max-height: 430px;
  }



  /* OLFACTORY */

  .ds-olfactory {
    padding:
      95px 34px
      110px;
  }




  .ds-olfactory-item,
  .ds-olfactory-item:nth-child(4),
  .ds-olfactory-item:nth-child(5) {
    grid-column: auto;
  }





  /* EXPERIENCE */

  .ds-experience {
    padding:
      100px 38px
      115px;
  }


  .ds-how-grid {
    gap: 35px;
  }


  .ds-how-icon {
    width: 155px;
    height: 155px;
  }


  .ds-experience-card {
    gap: 55px;
  }


  .ds-card-visual img {
    max-width: 310px;
  }

}



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

@media (max-width: 767px) {


  /* HERO */

  .ds-hero {
    padding:
      42px 20px
      82px;
  }


  .ds-hero-inner {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .ds-hero-visual {
    min-height: 350px;
  }


  .ds-hero-image {
    max-width: 95%;
    max-height: 320px;
  }


  .ds-title {
    font-size: 38px;
  }


  .ds-subtitle {
    font-size: 17px;
  }


  .ds-price {
    font-size: 19px;
  }


  .ds-intro {
    max-width: 335px;

    font-size: 14px;
  }


  .ds-detail-row {
    grid-template-columns: 105px 1fr;

    gap: 14px;
  }



  /* SHARED */

  .ds-section-title {
    font-size: 33px;
  }


  .ds-section-intro {
    max-width: 340px;

    font-size: 14px;
  }



  /* OLFACTORY */

  .ds-olfactory {
    padding:
      80px 22px
      95px;
  }


  .ds-olfactory .ds-section-header {
    margin-bottom: 62px;
  }



  .ds-olfactory-item,
  .ds-olfactory-item:nth-child(4),
  .ds-olfactory-item:nth-child(5),
  .ds-olfactory-item:last-child {
    width: 100%;

    grid-column: auto;
  }


  .ds-olfactory-heading {
    margin-bottom: 31px;
  }


  .ds-olfactory-heading h3 {
    font-size: 27px;
  }


  .ds-olfactory-detail {
    grid-template-columns: 42px 1fr;

    padding: 18px 0;
  }


  .ds-olfactory-detail p {
    font-size: 14px;
  }



  /* DISCOVERY EXPERIENCE */

  .ds-experience {
    padding:
      80px 20px
      90px;
  }


  .ds-experience-header {
    margin-bottom: 62px;
  }


  .ds-how-heading {
    margin-bottom: 42px;

    font-size: 23px;
  }


  .ds-how-grid {
    grid-template-columns: 1fr;

    gap: 58px;
  }


  .ds-how-icon {
    width: 145px;
    height: 145px;

    margin-bottom: 20px;
  }


  .ds-how-step {
    max-width: 330px;
  }



  /* EXPERIENCE CARD */

  .ds-experience-card {
    margin-top: 80px;

    padding-top: 70px;

    grid-template-columns: 1fr;

    gap: 38px;

    text-align: center;
  }


  .ds-card-visual {
    min-height: 390px;
  }


  .ds-card-visual img {
    max-width: 265px;
    max-height: 380px;
  }


  .ds-card-content {
    max-width: 100%;
  }


  .ds-card-title {
    font-size: 31px;
  }


  .ds-card-copy {
    max-width: 340px;

    margin-left: auto;
    margin-right: auto;

    font-size: 14px;
  }

}

@media (min-width: 768px) {

  .ds-olfactory .ds-section-header {
    max-width: 920px;
  }

  .ds-olfactory .ds-section-title {
    white-space: nowrap;
    font-size: clamp(34px, 3vw, 50px);
  }

}

/* =========================================
   OLFACTORY CAROUSEL
========================================= */

.ds-olfactory-slider {
  position: relative;

  width: 100%;
}


.ds-olfactory-viewport {
  width: 100%;

  overflow: hidden;
}


.ds-olfactory-track {
  display: flex;

  gap: 56px;

  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}


/* 3 visible desktop */

.ds-olfactory-item {
  flex:
    0 0
    calc((100% - 112px) / 3);

  min-width: 0;
}


/* Remove old special grid positioning */

.ds-olfactory-item:nth-child(4),
.ds-olfactory-item:nth-child(5) {
  grid-column: auto;
}


/* =========================================
   ARROWS
========================================= */

.ds-olfactory-arrow {
  position: absolute;

  top: 50%;

  z-index: 5;

  width: 42px;
  height: 42px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d7d7d4;
  border-radius: 0;

  background: #ffffff;
  color: #111111;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.ds-olfactory-arrow svg {
  display: block;

  width: 15px;
  height: 15px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}


.ds-olfactory-prev {
  left: -62px;
}


.ds-olfactory-next {
  right: -62px;
}


.ds-olfactory-arrow:hover {
  background: #111111;
  color: #ffffff;

  border-color: #111111;
}


/* =========================================
   DOTS
========================================= */

.ds-olfactory-dots {
  min-height: 8px;

  margin-top: 45px;

  display: flex;
  justify-content: center;

  gap: 8px;
}


.ds-olfactory-dot {
  width: 5px;
  height: 5px;

  padding: 0;

  border-radius: 50%;

  background: #c7c7c3;

  cursor: pointer;

  transition:
    width 220ms ease,
    background-color 220ms ease;
}


.ds-olfactory-dot.active {
  width: 20px;

  border-radius: 999px;

  background: #111111;
}

@media (max-width: 1100px) {

  .ds-olfactory-track {
    gap: 36px;
  }


  .ds-olfactory-item {
    flex:
      0 0
      calc((100% - 36px) / 2);
  }


  .ds-olfactory-prev {
    left: -15px;
  }


  .ds-olfactory-next {
    right: -15px;
  }

}

@media (max-width: 767px) {

  .ds-olfactory-viewport {
    overflow: hidden;
  }


  .ds-olfactory-track {
    gap: 0;
  }


  .ds-olfactory-item {
    flex: 0 0 100%;
  }


  .ds-olfactory-arrow {
    width: 38px;
    height: 38px;

    padding: 0;
  }

    .ds-olfactory-arrow svg {
    width: 14px;
    height: 14px;
  }



  .ds-olfactory-prev {
    left: -8px;
  }


  .ds-olfactory-next {
    right: -8px;
  }


  .ds-olfactory-item {
    padding: 0 18px;
  }


  .ds-olfactory-dots {
    margin-top: 32px;
  }

}

/* =========================================
   FRAGRANCES — ALL PRODUCTS CATALOGUE
========================================= */

.fr-catalogue {
  width: 100%;

  padding:
    105px 70px
    135px;

  background: #ffffff;
}


.fr-catalogue-inner {
  width: 100%;
  max-width: 1450px;

  margin: 0 auto;
}



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

.fr-page-header {
  max-width: 850px;

  margin:
    0 auto
    80px;

  text-align: center;
}


.fr-page-kicker {
  margin: 0 0 15px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.fr-page-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size:
    clamp(52px, 5vw, 82px);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: 0.015em;

  color: #111111;
}


.fr-page-intro {
  margin: 25px 0 0;

  font-size: 17px;
  font-weight: 400;

  line-height: 1.6;

  color: #555555;
}



/* =========================================
   FILTER BAR
========================================= */

.fr-filter-bar {
  width: 100%;

  margin-bottom: 60px;

  padding:
    0 0
    18px;

  border-bottom:
    1px solid #e4e4e1;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;
}


.fr-filters {
  display: flex;
  align-items: center;

  gap: 30px;
}


.fr-filter {
  position: relative;

  padding:
    0 0
    7px;

  border: 0;

  background: transparent;

  color: #888888;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.065em;
  text-transform: uppercase;

  transition:
    color 220ms ease;
}


.fr-filter::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: #111111;

  transform: scaleX(0);

  transform-origin: left;

  transition:
    transform 250ms ease;
}


.fr-filter:hover,
.fr-filter.active {
  color: #111111;
}


.fr-filter.active::after {
  transform: scaleX(1);
}


.fr-product-count {
  margin: 0 0 7px;

  font-size: 12px;
  font-weight: 400;

  color: #888888;
}



/* =========================================
   PRODUCT GRID
========================================= */

.fr-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 46px;
  row-gap: 95px;
}



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

.fr-product {
  min-width: 0;

  text-align: center;
}


.fr-product[hidden] {
  display: none;
}



/* =========================================
   PRODUCT VISUAL
========================================= */

.fr-product-visual {
  width: 100%;

  aspect-ratio: 1 / 1.05;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}


.fr-bottle-wrap {
  position: relative;

  width: min(67%, 330px);
  height: 77%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.fr-image-link {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.fr-bottle-wrap img {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 13px 10px
      rgba(0, 0, 0, 0.055)
    );

  transition:
    transform 550ms
    cubic-bezier(0.22, 1, 0.36, 1);
}



/* =========================================
   CART BUTTON
========================================= */

.fr-cart-button {
  position: absolute;

  right: -9px;
  bottom: 4px;

  z-index: 3;

  width: 44px;
  height: 44px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: #f4f4f1;
  color: #111111;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(7px);

  box-shadow:
    0 4px 16px
    rgba(0, 0, 0, 0.055);

  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}


.fr-cart-button svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.45;

  stroke-linecap: round;
  stroke-linejoin: round;
}


@media (hover: hover) and (pointer: fine) {

  .fr-product:hover
  .fr-cart-button {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }


  .fr-product:hover
  .fr-bottle-wrap img {
    transform: scale(1.035);
  }


  .fr-cart-button:hover {
    background: #111111;
    color: #ffffff;
  }

}



/* =========================================
   PRODUCT INFO
========================================= */

.fr-product-info {
  display: block;

  padding-top: 18px;

  text-align: center;
}


.fr-collection-name {
  margin: 0 0 10px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #999999;
}


.fr-product-name {
  margin: 0 0 7px;

  font-family: "Figtree", sans-serif;

  font-size:
    clamp(22px, 1.8vw, 29px);

  font-weight: 500;

  line-height: 1.08;

  letter-spacing: 0.015em;

  color: #111111;
}


.fr-expression {
  margin: 0 0 12px;

  font-size: 14px;
  font-weight: 400;

  font-style: italic;

  line-height: 1.45;

  color: #777777;
}


.fr-price {
  margin: 0;

  font-size: 15px;
  font-weight: 650;

  color: #111111;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .fr-catalogue {
    padding:
      90px 32px
      110px;
  }


  .fr-page-header {
    margin-bottom: 65px;
  }


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

    column-gap: 36px;
    row-gap: 78px;
  }


  .fr-bottle-wrap {
    width: 64%;
  }

}



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

@media (max-width: 767px) {

  .fr-catalogue {
    padding:
      75px 18px
      90px;
  }


  .fr-page-header {
    margin-bottom: 55px;
  }


  .fr-page-title {
    font-size: 50px;
  }


  .fr-page-intro {
    margin-top: 20px;

    font-size: 15px;
  }



  /* FILTERS */

  .fr-filter-bar {
    margin-bottom: 48px;

    align-items: center;
  }


  .fr-filters {
    gap: 22px;
  }


  .fr-product-count {
    font-size: 11px;
  }



  /* PRODUCTS */

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

    gap: 70px;
  }


  .fr-product-visual {
    aspect-ratio: 1 / 1;
  }


  .fr-bottle-wrap {
    width: 61%;
    height: 76%;
  }


  .fr-cart-button {
    right: -7px;
    bottom: 3px;

    width: 46px;
    height: 46px;

    opacity: 1;
    visibility: visible;

    transform: none;
  }


  .fr-product-info {
    padding-top: 14px;
  }


  .fr-product-name {
    font-size: 28px;
  }


  .fr-expression {
    font-size: 14px;
  }


  .fr-price {
    font-size: 15px;
  }

}

/* =========================================
   OUR STORY PAGE
   Unique namespace: osp-
========================================= */


/* =========================================
   INTRODUCTION
========================================= */

.osp-intro {
  width: 100%;

  padding:
    115px 60px
    135px;

  background: #ffffff;
}


.osp-intro-inner {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto;

  text-align: center;
}


.osp-intro-title {
  margin: 0 auto;

  max-width: 1160px;

  font-family: "Figtree", sans-serif;

  font-size: clamp(34px, 3.15vw, 46px);
  font-weight: 400;

  line-height: 1.16;

  letter-spacing: -0.018em;

  color: #111111;
}


.osp-intro-title strong {
  font-weight: 600;

  letter-spacing: 0.01em;
}


.osp-intro-copy {
  width: 100%;
  max-width: 720px;

  margin:
    35px auto
    0;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.75;

  color: #555555;
}



/* =========================================
   STORY CHAPTERS
========================================= */

.osp-chapters {
  width: 100%;

  padding:
    20px 65px
    150px;

  background: #ffffff;
}


.osp-chapters-inner {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
}



/* =========================================
   CHAPTER LAYOUT
========================================= */

.osp-chapter {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  align-items: center;

  gap: 110px;

  margin-bottom: 145px;
}


.osp-chapter:last-child {
  margin-bottom: 0;
}


/* Second chapter:
   text left / image right */

.osp-chapter-reverse
.osp-image-wrap {
  order: 2;
}


.osp-chapter-reverse
.osp-content {
  order: 1;
}



/* =========================================
   IMAGES
========================================= */

.osp-image-wrap {
  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #f4f4f1;
}


.osp-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 800ms
    cubic-bezier(0.22, 1, 0.36, 1);
}


@media (hover: hover) and (pointer: fine) {

  .osp-image-wrap:hover
  .osp-image {
    transform: scale(1.015);
  }

}



/* =========================================
   TEXT CONTENT
========================================= */

.osp-content {
  width: 100%;
  max-width: 485px;

  text-align: left;
}


.osp-number {
  margin: 0 0 24px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.10em;

  color: #aaaaaa;
}


.osp-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(33px, 2.7vw, 44px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -0.015em;

  color: #111111;
}


.osp-lead {
  max-width: 430px;

  margin:
    24px 0
    0;

  font-size: 17px;
  font-weight: 550;

  line-height: 1.55;

  color: #111111;
}


.osp-copy {
  max-width: 465px;

  margin:
    18px 0
    0;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.78;

  color: #5d5d5d;
}



/* =========================================
   FINAL EXPRESSION
========================================= */

.osp-closing {
  max-width: 420px;

  margin:
    31px 0
    0;

  padding-top: 25px;

  border-top:
    1px solid #dfdfdc;

  font-size: 18px;
  font-weight: 500;

  line-height: 1.55;

  color: #111111;
}



/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

  .osp-chapter {
    gap: 135px;
  }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .osp-intro {
    padding:
      95px 35px
      115px;
  }


  .osp-intro-title {
    font-size: 37px;
  }


  .osp-intro-copy {
    max-width: 680px;

    font-size: 15px;
  }


  .osp-chapters {
    padding:
      10px 36px
      120px;
  }


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

  gap: 60px;

  margin-bottom: 115px;
}


  .osp-title {
    font-size: 36px;
  }


  .osp-copy {
    font-size: 14px;
  }

}



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

@media (max-width: 767px) {


  /* INTRO */

  .osp-intro {
    padding:
      72px 21px
      90px;
  }


  .osp-desktop-break {
    display: none;
  }


  .osp-intro-title {
    max-width: 355px;

    font-size: 31px;

    line-height: 1.16;

    letter-spacing: -0.018em;
  }


  .osp-intro-copy {
    max-width: 345px;

    margin-top: 27px;

    font-size: 14px;

    line-height: 1.72;
  }



  /* CHAPTERS */

  .osp-chapters {
    padding:
      0 20px
      95px;
  }


  .osp-chapter {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-bottom: 90px;
  }


  /* Image first on every mobile chapter */

  .osp-chapter-reverse
  .osp-image-wrap {
    order: 1;
  }


  .osp-chapter-reverse
  .osp-content {
    order: 2;
  }


  .osp-image-wrap {
    aspect-ratio: 4 / 3;
  }


  .osp-content {
    width: 100%;
    max-width: 100%;

    text-align: left;
  }


  .osp-number {
    margin-bottom: 18px;
  }


  .osp-title {
    font-size: 31px;
  }


  .osp-lead {
    max-width: 330px;

    margin-top: 18px;

    font-size: 16px;

    line-height: 1.5;
  }


  .osp-copy {
    max-width: 355px;

    margin-top: 15px;

    font-size: 14px;

    line-height: 1.72;
  }


  .osp-closing {
    margin-top: 25px;

    padding-top: 22px;

    font-size: 17px;
  }

}

/* =========================================
   CONTACT PAGE
   Namespace: ct-
========================================= */


.ct-page {
  width: 100%;

  background: #ffffff;
}


/* =========================================
   MAIN SECTION
========================================= */

.ct-section {
  width: 100%;

  padding:
    110px 40px
    135px;

  background: #ffffff;
}


.ct-inner {
  width: 100%;
  max-width: 800px;

  margin: 0 auto;
}



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

.ct-header {
  width: 100%;
  max-width: 650px;

  margin:
    0 auto
    70px;

  text-align: center;
}


.ct-kicker {
  margin:
    0 0
    13px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.ct-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size:
    clamp(48px, 4.3vw, 64px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;
}


.ct-intro {
  width: 100%;
  max-width: 520px;

  margin:
    24px auto
    0;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.7;

  color: #5d5d5d;
}



/* =========================================
   FORM
========================================= */

.ct-form {
  width: 100%;
}


.ct-form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


.ct-field {
  width: 100%;

  margin-bottom: 24px;
}


.ct-field label {
  display: block;

  margin:
    0 0
    9px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.065em;
  text-transform: uppercase;

  color: #444444;
}



/* =========================================
   INPUTS
========================================= */

.ct-field input,
.ct-field textarea {
  display: block;

  width: 100%;

  border:
    1px solid #d2d2cf;

  border-radius: 0;

  outline: none;

  background: #ffffff;

  color: #111111;

  font-family: "Figtree", sans-serif;

  font-size: 15px;
  font-weight: 400;

  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}


.ct-field input {
  height: 52px;

  padding:
    0 15px;
}


.ct-field textarea {
  min-height: 175px;

  padding:
    15px;

  line-height: 1.6;

  resize: vertical;
}



/* Focus */

.ct-field input:focus,
.ct-field textarea:focus {
  border-color: #111111;

  box-shadow:
    0 0 0 1px #111111;
}



/* =========================================
   SUBMIT BUTTON
========================================= */

.ct-submit {
  width: 100%;
  min-height: 54px;

  margin-top: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #111111;

  background: #111111;
  color: #ffffff;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 11px;
  font-weight: 550;

  letter-spacing: 0.075em;
  text-transform: uppercase;

  transition:
    background-color 200ms ease,
    color 200ms ease;
}


.ct-submit:hover {
  background: #333333;

  border-color: #333333;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .ct-section {
    padding:
      95px 32px
      115px;
  }


  .ct-header {
    margin-bottom: 60px;
  }

}



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

@media (max-width: 767px) {

  .ct-section {
    padding:
      72px 20px
      90px;
  }


  .ct-header {
    margin-bottom: 48px;
  }


  .ct-title {
    font-size: 46px;
  }


  .ct-intro {
    max-width: 340px;

    margin-top: 20px;

    font-size: 14px;
  }



  /* STACK NAME + EMAIL */

  .ct-form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .ct-field {
    margin-bottom: 21px;
  }


  .ct-field input {
    height: 50px;
  }


  .ct-field textarea {
    min-height: 165px;
  }


  .ct-submit {
    min-height: 52px;

    margin-top: 5px;
  }

}

/* =========================================
   POLICY PAGES
========================================= */

.policy-page {
  width: 100%;
  background: #ffffff;
}


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

.policy-hero {
  width: 100%;

  padding:
    105px 30px
    75px;

  background: #ffffff;
}


.policy-hero-inner {
  width: 100%;
  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}


.policy-kicker {
  margin: 0 0 13px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.policy-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;

  line-height: 1.05;

  letter-spacing: 0.01em;

  color: #111111;
}


.policy-intro {
  width: 100%;
  max-width: 570px;

  margin:
    24px auto
    0;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.75;

  color: #5d5d5d;
}


/* =========================================
   CONTENT
========================================= */

.policy-content {
  width: 100%;

  padding:
    10px 30px
    130px;

  background: #ffffff;
}


.policy-content-inner {
  width: 100%;
  max-width: 760px;

  margin: 0 auto;

  border-top:
    1px solid #ddddda;
}


.policy-section {
  padding:
    43px 0;

  border-bottom:
    1px solid #ddddda;
}


.policy-section h2 {
  margin:
    0 0
    18px;

  font-family: "Figtree", sans-serif;

  font-size: 21px;
  font-weight: 550;

  line-height: 1.3;

  color: #111111;
}


.policy-section p {
  margin:
    0 0
    14px;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.8;

  color: #5c5c5c;
}


.policy-section p:last-child {
  margin-bottom: 0;
}


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

@media (max-width: 767px) {

  .policy-hero {
    padding:
      72px 20px
      58px;
  }


  .policy-title {
    font-size: 40px;
  }


  .policy-intro {
    max-width: 340px;

    margin-top: 20px;

    font-size: 14px;
  }


  .policy-content {
    padding:
      5px 20px
      90px;
  }


  .policy-section {
    padding:
      34px 0;
  }


  .policy-section h2 {
    font-size: 19px;
  }


  .policy-section p {
    font-size: 14px;

    line-height: 1.75;
  }

}

/* =========================================
   VERDEUR CART PAGE
   Namespace: vcart-
========================================= */

.vcart-page {
  width: 100%;
  background: #ffffff;
}


.vcart-section {
  width: 100%;

  padding:
    105px 60px
    140px;
}


.vcart-inner {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
}



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

.vcart-header {
  margin-bottom: 72px;

  text-align: center;
}


.vcart-kicker {
  margin: 0 0 13px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.vcart-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size: clamp(48px, 4.2vw, 64px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;
}



/* =========================================
   MAIN LAYOUT
========================================= */

.vcart-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(330px, 0.65fr);

  align-items: start;

  gap: 95px;
}



/* =========================================
   CART LIST HEADER
========================================= */

.vcart-list-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 18px;

  border-bottom:
    1px solid #dededb;
}


.vcart-list-header h2 {
  margin: 0;

  font-size: 18px;
  font-weight: 550;

  color: #111111;
}


.vcart-list-header p {
  margin: 0;

  font-size: 12px;

  color: #888888;
}



/* =========================================
   PRODUCT ROW
========================================= */

.vcart-item {
  width: 100%;

  display: grid;

  grid-template-columns:
    155px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 32px;

  padding:
    32px 0;

  border-bottom:
    1px solid #dededb;
}



/* =========================================
   PRODUCT IMAGE
========================================= */

.vcart-item-image {
  width: 155px;
  height: 175px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f5f5f2;
}


.vcart-item-image img {
  display: block;

  width: auto;
  height: auto;

  max-width: 74%;
  max-height: 82%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 7px
      rgba(0, 0, 0, 0.05)
    );
}



/* =========================================
   PRODUCT INFORMATION
========================================= */

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


.vcart-collection {
  margin: 0 0 8px;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #999999;
}


.vcart-product-name {
  display: inline-block;

  margin-bottom: 8px;

  font-size: 23px;
  font-weight: 500;

  line-height: 1.1;

  letter-spacing: 0.01em;

  color: #111111;
}


.vcart-product-meta {
  margin: 0 0 23px;

  font-size: 12px;

  color: #777777;
}



/* =========================================
   QUANTITY / REMOVE
========================================= */

.vcart-item-controls {
  display: flex;
  align-items: center;

  gap: 22px;
}


.vcart-quantity {
  height: 38px;

  display: inline-flex;
  align-items: center;

  border:
    1px solid #d1d1ce;
}


.vcart-qty-btn {
  width: 38px;
  height: 36px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #111111;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 17px;
  font-weight: 400;
}


.vcart-qty {
  min-width: 30px;

  text-align: center;

  font-size: 13px;

  color: #111111;
}


.vcart-remove {
  padding: 0;

  border: 0;

  background: transparent;

  color: #888888;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 11px;

  text-decoration: underline;
  text-underline-offset: 3px;

  transition:
    color 180ms ease;
}


.vcart-remove:hover {
  color: #111111;
}



/* =========================================
   ITEM PRICE
========================================= */

.vcart-item-price {
  align-self: start;

  padding-top: 4px;

  white-space: nowrap;

  font-size: 15px;
  font-weight: 550;

  color: #111111;
}



/* =========================================
   ORDER SUMMARY
========================================= */

.vcart-summary {
  position: sticky;
  top: 120px;

  width: 100%;

  padding:
    32px 30px;

  border:
    1px solid #dededb;

  background: #ffffff;
}


.vcart-summary-title {
  margin: 0 0 30px;

  font-size: 19px;
  font-weight: 550;

  color: #111111;
}


.vcart-summary-row {
  padding: 10px 0;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  font-size: 13px;

  color: #555555;
}



/* TOTAL */

.vcart-total {
  margin-top: 17px;

  padding-top: 23px;

  border-top:
    1px solid #dededb;

  display: flex;
  align-items: baseline;
  justify-content: space-between;

  gap: 20px;

  font-size: 16px;
  font-weight: 550;

  color: #111111;
}


.vcart-total strong {
  font-size: 20px;
  font-weight: 650;
}



/* =========================================
   PAYMENT NOTE
========================================= */

.vcart-payment-note {
  margin:
    27px 0
    0;

  font-size: 11px;

  line-height: 1.65;

  color: #777777;
}



/* =========================================
   CHECKOUT CTA
========================================= */

.vcart-checkout-btn {
  width: 100%;
  min-height: 53px;

  margin-top: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111111;
  color: #ffffff;

  font-size: 11px;
  font-weight: 550;

  letter-spacing: 0.075em;
  text-transform: uppercase;

  transition:
    background-color 200ms ease;
}


.vcart-checkout-btn:hover {
  background: #333333;
}


.vcart-continue {
  display: block;

  margin-top: 19px;

  text-align: center;

  font-size: 11px;

  color: #777777;

  text-decoration: underline;
  text-underline-offset: 3px;
}



/* =========================================
   EMPTY STATE
========================================= */

.vcart-empty {
  width: 100%;
  max-width: 650px;

  margin: 0 auto;

  padding:
    55px 20px
    80px;

  text-align: center;
}


.vcart-empty-label {
  margin: 0 0 17px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: #999999;
}


.vcart-empty h2 {
  max-width: 520px;

  margin: 0 auto;

  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;

  line-height: 1.2;

  color: #111111;
}


.vcart-empty-btn {
  min-width: 220px;
  min-height: 51px;

  margin-top: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #111111;
  color: #ffffff;

  font-size: 11px;
  font-weight: 550;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .vcart-section {
    padding:
      90px 32px
      115px;
  }


  .vcart-layout {
    grid-template-columns:
      minmax(0, 1.3fr)
      minmax(300px, 0.7fr);

    gap: 45px;
  }


  .vcart-item {
    grid-template-columns:
      125px
      minmax(0, 1fr);

    gap: 25px;
  }


  .vcart-item-image {
    width: 125px;
    height: 150px;
  }


  .vcart-item-price {
    grid-column: 2;

    padding-top: 0;
  }

}



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

@media (max-width: 767px) {

  .vcart-section {
    padding:
      72px 20px
      90px;
  }


  .vcart-header {
    margin-bottom: 48px;
  }


  .vcart-title {
    font-size: 46px;
  }


  .vcart-layout {
    grid-template-columns: 1fr;

    gap: 52px;
  }


  .vcart-item {
    grid-template-columns:
      105px
      minmax(0, 1fr);

    gap:
      18px 20px;

    padding:
      26px 0;
  }


  .vcart-item-image {
    width: 105px;
    height: 130px;
  }


  .vcart-product-name {
    font-size: 19px;
  }


  .vcart-product-meta {
    margin-bottom: 17px;

    font-size: 11px;
  }


  .vcart-item-controls {
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
  }


  .vcart-item-price {
    grid-column: 2;

    font-size: 14px;
  }


  .vcart-summary {
    position: static;

    padding:
      28px 22px;
  }

}

/* =========================================
   GLOBAL CART TOAST
========================================= */

.verdeur-cart-toast {
  position: fixed;

  right: 28px;
  top: 105px;

  z-index: 9999;

  min-width: 240px;

  padding:
    15px 18px;

  background: #111111;
  color: #ffffff;

  opacity: 0;

  pointer-events: none;

  transform:
    translateY(-10px);

  transition:
    opacity 220ms ease,
    transform 220ms ease;

  box-shadow:
    0 12px 35px
    rgba(0, 0, 0, 0.13);
}


.verdeur-cart-toast.show {
  opacity: 1;

  transform:
    translateY(0);
}


.verdeur-cart-toast span {
  display: block;

  margin-bottom: 3px;

  font-size: 11px;

  color: #bfbfbf;
}


.verdeur-cart-toast strong {
  display: block;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.02em;
}


@media (max-width: 767px) {

  .verdeur-cart-toast {
    top: auto;

    right: 16px;
    left: 16px;
    bottom: 22px;

    min-width: 0;
  }

}

.vcart-layout[hidden],
.vcart-empty[hidden] {
  display: none !important;
}

/* =========================================
   VERDEUR CHECKOUT
   Namespace: vcheckout-
========================================= */

.vcheckout-page {
  width: 100%;
  background: #ffffff;
}


.vcheckout-section {
  width: 100%;

  padding:
    100px 60px
    140px;
}


.vcheckout-inner {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
}



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

.vcheckout-header {
  width: 100%;
  max-width: 650px;

  margin:
    0 auto
    72px;

  text-align: center;
}


.vcheckout-kicker {
  margin:
    0 0
    13px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.vcheckout-title {
  margin: 0;

  font-family: "Figtree", sans-serif;

  font-size:
    clamp(48px, 4.2vw, 64px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;
}


.vcheckout-intro {
  max-width: 520px;

  margin:
    23px auto
    0;

  font-size: 14px;

  line-height: 1.75;

  color: #666666;
}



/* =========================================
   LAYOUT
========================================= */

.vcheckout-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(340px, 0.65fr);

  align-items: start;

  gap: 90px;
}



/* =========================================
   CONTENT BLOCKS
========================================= */

.vcheckout-block {
  width: 100%;

  padding-bottom: 55px;

  margin-bottom: 55px;

  border-bottom:
    1px solid #dededb;
}


.vcheckout-block:last-child {
  margin-bottom: 0;
}


.vcheckout-block-heading {
  display: flex;
  align-items: baseline;

  gap: 18px;

  margin-bottom: 35px;
}


.vcheckout-block-heading p {
  margin: 0;

  font-size: 10px;
  font-weight: 500;

  color: #aaaaaa;
}


.vcheckout-block-heading h2 {
  margin: 0;

  font-size: 25px;
  font-weight: 550;

  color: #111111;
}



/* =========================================
   FORM
========================================= */

.vcheckout-form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


.vcheckout-field {
  width: 100%;

  margin-bottom: 23px;
}


.vcheckout-field label {
  display: block;

  margin-bottom: 9px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.055em;
  text-transform: uppercase;

  color: #444444;
}


.vcheckout-field label span {
  margin-left: 5px;

  font-weight: 400;

  letter-spacing: 0;

  text-transform: none;

  color: #999999;
}


.vcheckout-field input,
.vcheckout-field textarea,
.vcheckout-field select {
  display: block;

  width: 100%;

  border:
    1px solid #d2d2cf;

  border-radius: 0;

  outline: none;

  background: #ffffff;

  color: #111111;

  font-family: "Figtree", sans-serif;

  font-size: 14px;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}


.vcheckout-field input,
.vcheckout-field select {
  height: 51px;

  padding:
    0 14px;
}


.vcheckout-field textarea {
  min-height: 115px;

  padding: 14px;

  resize: vertical;

  line-height: 1.6;
}


.vcheckout-field input:focus,
.vcheckout-field textarea:focus,
.vcheckout-field select:focus {
  border-color: #111111;

  box-shadow:
    0 0 0 1px #111111;
}



/* =========================================
   PAYMENT METHOD
========================================= */

.vcheckout-payment-method {
  border:
    1px solid #d6d6d2;
}


.vcheckout-payment-select {
  min-height: 82px;

  padding:
    18px 20px;

  display: flex;
  align-items: flex-start;

  gap: 15px;

  background: #ffffff;
}


.vcheckout-radio {
  flex: 0 0 auto;

  width: 15px;
  height: 15px;

  margin-top: 3px;

  border:
    4px solid #111111;

  border-radius: 50%;
}


.vcheckout-payment-select strong {
  display: block;

  margin-bottom: 4px;

  font-size: 14px;
  font-weight: 550;

  color: #111111;
}


.vcheckout-payment-select p {
  margin: 0;

  font-size: 12px;

  line-height: 1.55;

  color: #777777;
}



/* DETAILS */

.vcheckout-payment-details {
  padding:
    25px 20px
    24px;

  border-top:
    1px solid #dededb;

  background: #f7f7f4;
}


.vcheckout-payment-message {
  max-width: 600px;

  margin:
    0 0
    27px;

  font-size: 12px;

  line-height: 1.7;

  color: #5e5e5e;
}


.vcheckout-payment-message strong {
  color: #111111;
}



/* =========================================
   BANK / QR
========================================= */

.vcheckout-bank-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    145px;

  align-items: center;

  gap: 35px;
}


.vcheckout-bank-details {
  border-top:
    1px solid #d9d9d5;
}


.vcheckout-bank-row {
  padding:
    13px 0;

  display: grid;

  grid-template-columns:
    145px 1fr;

  gap: 15px;

  border-bottom:
    1px solid #d9d9d5;
}


.vcheckout-bank-row span {
  font-size: 10px;
  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.045em;

  color: #888888;
}


.vcheckout-bank-row strong {
  font-size: 12px;
  font-weight: 550;

  word-break: break-word;

  color: #111111;
}



.vcheckout-qr {
  text-align: center;
}


.vcheckout-qr-image {
  width: 135px;
  height: 135px;

  padding: 7px;

  background: #ffffff;

  border:
    1px solid #ddddda;
}


.vcheckout-qr-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


.vcheckout-qr p {
  margin:
    9px 0
    0;

  font-size: 10px;

  color: #888888;
}



/* =========================================
   COD NOTE
========================================= */

.vcheckout-cod-note {
  margin-top: 17px;

  display: flex;
  align-items: flex-start;

  gap: 10px;
}


.vcheckout-cod-note > span {
  flex: 0 0 auto;

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #999999;

  border-radius: 50%;

  font-size: 11px;

  color: #555555;
}


.vcheckout-cod-note p {
  margin: 0;

  font-size: 11px;

  line-height: 1.55;

  color: #777777;
}



/* =========================================
   SUMMARY
========================================= */

.vcheckout-summary {
  position: sticky;

  top: 115px;

  width: 100%;

  padding:
    31px 29px;

  border:
    1px solid #dededb;

  background: #ffffff;
}


.vcheckout-summary-title {
  margin:
    0 0
    26px;

  font-size: 19px;
  font-weight: 550;

  color: #111111;
}



/* =========================================
   SUMMARY PRODUCT
========================================= */

.vcheckout-product {
  display: grid;

  grid-template-columns:
    72px
    minmax(0, 1fr)
    auto;

  gap: 15px;

  align-items: center;

  padding:
    17px 0;

  border-bottom:
    1px solid #e2e2df;
}


.vcheckout-product-image {
  width: 72px;
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f6f6f3;
}


.vcheckout-product-image img {
  display: block;

  max-width: 72%;
  max-height: 78%;

  object-fit: contain;
}


.vcheckout-product-name {
  margin:
    0 0
    5px;

  font-size: 12px;
  font-weight: 550;

  line-height: 1.25;

  color: #111111;
}


.vcheckout-product-meta {
  margin: 0;

  font-size: 10px;

  line-height: 1.4;

  color: #888888;
}


.vcheckout-product-price {
  align-self: start;

  padding-top: 4px;

  white-space: nowrap;

  font-size: 11px;
  font-weight: 500;

  color: #111111;
}



/* =========================================
   TOTALS
========================================= */

.vcheckout-summary-totals {
  padding-top: 18px;
}


.vcheckout-summary-row {
  padding:
    8px 0;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  font-size: 12px;

  color: #555555;
}


.vcheckout-total {
  margin-top: 14px;

  padding-top: 20px;

  border-top:
    1px solid #dededb;

  display: flex;
  align-items: baseline;
  justify-content: space-between;

  gap: 20px;

  font-size: 15px;
  font-weight: 550;

  color: #111111;
}


.vcheckout-total strong {
  font-size: 20px;
  font-weight: 650;
}



/* =========================================
   PLACE ORDER
========================================= */

.vcheckout-place-order {
  width: 100%;
  min-height: 53px;

  margin-top: 27px;

  border:
    1px solid #111111;

  background: #111111;
  color: #ffffff;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 11px;
  font-weight: 550;

  letter-spacing: 0.075em;
  text-transform: uppercase;
}


.vcheckout-place-order:hover {
  background: #333333;

  border-color: #333333;
}


.vcheckout-submit-note {
  margin:
    15px auto
    0;

  max-width: 270px;

  text-align: center;

  font-size: 10px;

  line-height: 1.55;

  color: #999999;
}


.vcheckout-back {
  display: block;

  margin-top: 18px;

  text-align: center;

  font-size: 11px;

  color: #777777;

  text-decoration: underline;
  text-underline-offset: 3px;
}



/* =========================================
   EMPTY CHECKOUT
========================================= */

.vcheckout-empty {
  max-width: 620px;

  margin: 0 auto;

  padding:
    60px 20px
    80px;

  text-align: center;
}


.vcheckout-empty p {
  margin: 0 0 15px;

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: 0.07em;

  color: #999999;
}


.vcheckout-empty h2 {
  max-width: 500px;

  margin: 0 auto;

  font-size: 30px;
  font-weight: 400;

  line-height: 1.25;
}


.vcheckout-empty a {
  min-width: 210px;
  min-height: 51px;

  margin-top: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #111111;
  color: #ffffff;

  font-size: 11px;
  font-weight: 550;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}


.vcheckout-layout[hidden],
.vcheckout-empty[hidden] {
  display: none !important;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .vcheckout-section {
    padding:
      90px 32px
      115px;
  }


  .vcheckout-layout {
    grid-template-columns:
      minmax(0, 1.2fr)
      minmax(300px, 0.8fr);

    gap: 45px;
  }


  .vcheckout-bank-layout {
    grid-template-columns: 1fr;
  }

}



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

@media (max-width: 767px) {

  .vcheckout-section {
    padding:
      72px 20px
      90px;
  }


  .vcheckout-header {
    margin-bottom: 50px;
  }


  .vcheckout-title {
    font-size: 44px;
  }


  .vcheckout-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .vcheckout-form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .vcheckout-block {
    padding-bottom: 45px;

    margin-bottom: 45px;
  }


  .vcheckout-block-heading {
    margin-bottom: 29px;
  }


  .vcheckout-block-heading h2 {
    font-size: 22px;
  }


  .vcheckout-bank-row {
    grid-template-columns: 1fr;

    gap: 5px;
  }


  .vcheckout-bank-layout {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .vcheckout-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .vcheckout-summary {
    position: static;

    padding:
      28px 22px;
  }

}
.vcheckout-payment-method +
.vcheckout-payment-method {
  margin-top: 12px;
}


.vcheckout-payment-disabled {
  opacity: 0.55;

  background: #fafafa;

  cursor: not-allowed;

  pointer-events: none;
}


.vcheckout-radio-disabled {
  border: 1px solid #aaaaaa;

  background: transparent;
}


.vcheckout-payment-title-row {
  display: flex;
  align-items: center;

  gap: 10px;
}


.vcheckout-unavailable {
  padding: 3px 7px;

  border: 1px solid #cfcfcb;

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #777777;
}

/* =========================================
   CHECKOUT — PAYMENT
========================================= */

.vcheckout-payment-box {
  width: 100%;

  border:
    1px solid #d6d6d2;

  background: #ffffff;
}


/* =========================================
   PAYMENT TABS
========================================= */

.vcheckout-payment-tabs {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  border-bottom:
    1px solid #d6d6d2;
}


.vcheckout-payment-tab {
  position: relative;

  min-height: 58px;

  padding:
    0 18px;

  border: 0;

  background: #ffffff;

  color: #777777;

  cursor: pointer;

  font-family: "Figtree", sans-serif;

  font-size: 12px;
  font-weight: 550;

  letter-spacing: 0.025em;

  transition:
    color 180ms ease,
    background-color 180ms ease;
}


.vcheckout-payment-tab:first-child {
  border-right:
    1px solid #d6d6d2;
}


.vcheckout-payment-tab::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  height: 2px;

  background: #111111;

  transform: scaleX(0);

  transition:
    transform 200ms ease;
}


.vcheckout-payment-tab.active {
  color: #111111;
}


.vcheckout-payment-tab.active::after {
  transform: scaleX(1);
}



/* DISABLED WALLET TAB */

.vcheckout-payment-tab-disabled {
  cursor: not-allowed;

  color: #aaaaaa;

  background: #fafafa;
}


.vcheckout-payment-tab-disabled span {
  display: inline-block;

  margin-left: 7px;

  padding:
    3px 6px;

  border:
    1px solid #d5d5d2;

  font-size: 7px;
  font-weight: 600;

  letter-spacing: 0.055em;
  text-transform: uppercase;

  color: #999999;
}



/* =========================================
   PAYMENT PANEL
========================================= */

.vcheckout-payment-panel {
  width: 100%;

  padding:
    27px 24px
    25px;
}


.vcheckout-payment-panel[hidden] {
  display: none;
}


.vcheckout-payment-panel-intro {
  margin-bottom: 28px;
}


.vcheckout-payment-panel-intro h3 {
  margin:
    0 0
    7px;

  font-size: 15px;
  font-weight: 600;

  color: #111111;
}


.vcheckout-payment-panel-intro p {
  max-width: 570px;

  margin: 0;

  font-size: 12px;

  line-height: 1.65;

  color: #707070;
}



/* =========================================
   BANK CONTENT
========================================= */

.vcheckout-bank-content {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    155px;

  align-items: center;

  gap: 38px;
}



/* =========================================
   BANK DETAILS
========================================= */

.vcheckout-bank-details {
  width: 100%;

  border-top:
    1px solid #ddddda;
}


.vcheckout-bank-row {
  min-height: 48px;

  padding:
    11px 0;

  display: grid;

  grid-template-columns:
    145px
    minmax(0, 1fr);

  align-items: center;

  gap: 18px;

  border-bottom:
    1px solid #ddddda;
}


.vcheckout-bank-row span {
  font-size: 9px;
  font-weight: 550;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: #888888;
}


.vcheckout-bank-row strong {
  font-size: 12px;
  font-weight: 550;

  line-height: 1.45;

  word-break: break-word;

  color: #111111;
}



/* =========================================
   QR
========================================= */

.vcheckout-qr {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}


.vcheckout-qr-image {
  width: 145px;
  height: 145px;

  padding: 8px;

  border:
    1px solid #ddddda;

  background: #ffffff;
}


.vcheckout-qr-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


.vcheckout-qr p {
  margin:
    9px 0
    0;

  font-size: 10px;

  color: #888888;
}



/* =========================================
   PAYMENT PROOF NOTE
========================================= */

.vcheckout-payment-proof-note {
  max-width: 610px;

  margin:
    24px 0
    0;

  padding-top: 20px;

  border-top:
    1px solid #e1e1de;

  font-size: 11px;

  line-height: 1.65;

  color: #777777;
}



/* =========================================
   JAZZCASH PLACEHOLDER
========================================= */

.vcheckout-wallet-placeholder {
  min-height: 150px;

  padding:
    25px;

  display: flex;

  align-items: center;

  gap: 25px;

  border:
    1px dashed #d5d5d1;

  background: #fafafa;
}


.vcheckout-wallet-qr-placeholder {
  flex: 0 0 auto;

  width: 100px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #d6d6d2;

  background: #ffffff;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.08em;

  color: #aaaaaa;
}


.vcheckout-wallet-label {
  display: block;

  margin-bottom: 7px;

  font-size: 9px;
  font-weight: 550;

  letter-spacing: 0.055em;
  text-transform: uppercase;

  color: #999999;
}


.vcheckout-wallet-placeholder strong {
  font-size: 13px;
  font-weight: 500;

  color: #777777;
}



/* =========================================
   COD — DISABLED
========================================= */

.vcheckout-cod-disabled {
  width: 100%;

  min-height: 74px;

  margin-top: 13px;

  padding:
    16px 19px;

  display: flex;
  align-items: flex-start;

  gap: 14px;

  border:
    1px solid #ddddda;

  background: #fafafa;

  opacity: 0.62;

  cursor: not-allowed;
}


.vcheckout-disabled-radio {
  flex: 0 0 auto;

  width: 15px;
  height: 15px;

  margin-top: 2px;

  border:
    1px solid #999999;

  border-radius: 50%;
}


.vcheckout-cod-content {
  min-width: 0;

  flex: 1;
}


.vcheckout-cod-title {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 9px;
}


.vcheckout-cod-title strong {
  font-size: 13px;
  font-weight: 550;

  color: #333333;
}


.vcheckout-cod-title span {
  padding:
    3px 6px;

  border:
    1px solid #ccccca;

  font-size: 7px;
  font-weight: 600;

  letter-spacing: 0.055em;
  text-transform: uppercase;

  color: #777777;
}


.vcheckout-cod-content p {
  margin:
    5px 0
    0;

  font-size: 11px;

  line-height: 1.5;

  color: #777777;
}



/* =========================================
   CHECKOUT — MOBILE ACTION
   Hidden by default; enabled inside mobile query.
========================================= */

.vcheckout-mobile-action {
  display: none;
}


/* =========================================
   MOBILE PAYMENT
========================================= */

@media (max-width: 767px) {

  .vcheckout-payment-tab {
    min-height: 56px;

    padding:
      0 10px;

    font-size: 11px;
  }

  /* =========================================
   CHECKOUT — MOBILE FLOW
   Shipping → Summary → Payment → Action
========================================= */

.vcheckout-layout {
  display: flex;
  flex-direction: column;

  gap: 0;
}


/*
  Form ka visual box remove hota hai,
  lekin actual form functionality active rehti hai.
*/

.vcheckout-form {
  display: contents;
}


/* 01 — SHIPPING DETAILS */

.vcheckout-shipping {
  order: 1;

  width: 100%;
}


/* 02 — ORDER SUMMARY */

.vcheckout-summary {
  order: 2;

  width: 100%;

  position: static;

  margin-bottom: 55px;
}


/*
  Desktop summary ke andar jo Place Order,
  note aur Return to Cart hain,
  woh mobile par hide.
*/

.vcheckout-summary > .vcheckout-place-order,
.vcheckout-summary > .vcheckout-submit-note,
.vcheckout-summary > .vcheckout-back {
  display: none;
}


/* 03 — PAYMENT */

.vcheckout-payment {
  order: 3;

  width: 100%;

  margin-bottom: 0;
}


/* 04 — FINAL ACTION */

.vcheckout-mobile-action {
  order: 4;

  display: block;

  width: 100%;

  margin-top: 32px;
}


.vcheckout-mobile-action .vcheckout-place-order {
  display: block;

  width: 100%;

  margin-top: 0;
}


.vcheckout-mobile-action .vcheckout-submit-note,
.vcheckout-mobile-action .vcheckout-back {
  display: block;
}


  .vcheckout-payment-tab-disabled span {
    display: block;

    width: max-content;

    margin:
      4px auto
      0;
  }


  .vcheckout-payment-panel {
    padding:
      23px 18px
      22px;
  }


  .vcheckout-bank-content {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .vcheckout-bank-row {
    grid-template-columns: 1fr;

    gap: 5px;

    padding:
      12px 0;
  }


  .vcheckout-bank-row strong {
    font-size: 12px;
  }


  .vcheckout-qr-image {
    width: 150px;
    height: 150px;
  }


  .vcheckout-wallet-placeholder {
    flex-direction: column;

    align-items: flex-start;
  }

}
/* =========================================
   VERDEUR — ORDER RECEIVED
   Namespace: vos-
========================================= */

.vos-page {
  width: 100%;
  background: #ffffff;
}


.vos-section {
  width: 100%;

  padding:
    96px 60px
    140px;
}


.vos-inner {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
}


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

.vos-header {
  width: 100%;
  max-width: 720px;

  margin:
    0 auto
    54px;

  text-align: center;
}


.vos-kicker {
  margin:
    0 0
    13px;

  font-size: 11px;
  font-weight: 550;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888888;
}


.vos-title {
  margin: 0;

  font-size:
    clamp(48px, 4.4vw, 66px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;

  color: #111111;
}


.vos-intro {
  max-width: 620px;

  margin:
    23px auto
    0;

  font-size: 14px;

  line-height: 1.75;

  color: #666666;
}


/* =========================================
   ORDER STRIP
========================================= */

.vos-order-strip {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  margin-bottom: 42px;

  border-top:
    1px solid #dededb;

  border-bottom:
    1px solid #dededb;
}


.vos-order-strip-item {
  min-height: 94px;

  padding:
    22px 26px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 8px;
}


.vos-order-strip-item +
.vos-order-strip-item {
  border-left:
    1px solid #dededb;
}


.vos-order-strip-item > span {
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.065em;
  text-transform: uppercase;

  color: #888888;
}


.vos-order-strip-item > strong {
  font-size: 15px;
  font-weight: 600;

  color: #111111;
}


.vos-status {
  width: max-content;

  padding:
    6px 9px;

  border:
    1px solid #cfcfcb;

  font-size: 10px !important;

  letter-spacing: 0.045em;
  text-transform: uppercase;

  background: #f7f7f4;
}


/* =========================================
   STATUS PROGRESS
========================================= */

.vos-progress {
  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 0;

  margin-bottom: 76px;
}


.vos-progress::before {
  content: "";

  position: absolute;

  left: 15px;
  right: 15px;
  top: 7px;

  height: 1px;

  background: #ddddda;
}


.vos-progress-step {
  position: relative;

  z-index: 1;

  padding-right: 30px;
}


.vos-progress-dot {
  display: block;

  width: 15px;
  height: 15px;

  margin-bottom: 13px;

  border:
    1px solid #bbbbB7;

  border-radius: 50%;

  background: #ffffff;
}


.vos-progress-step.complete
.vos-progress-dot {
  border-color: #111111;

  background: #111111;
}


.vos-progress-step.active
.vos-progress-dot {
  border:
    4px solid #111111;

  background: #ffffff;
}


.vos-progress-step strong {
  display: block;

  margin-bottom: 5px;

  font-size: 11px;
  font-weight: 600;

  color: #111111;
}


.vos-progress-step p {
  max-width: 190px;

  margin: 0;

  font-size: 10px;

  line-height: 1.5;

  color: #888888;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.vos-layout {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(340px, 0.65fr);

  align-items: start;

  gap: 90px;
}


/* =========================================
   CONTENT BLOCKS
========================================= */

.vos-block {
  width: 100%;

  padding-bottom: 52px;

  margin-bottom: 52px;

  border-bottom:
    1px solid #dededb;
}


.vos-block:last-child {
  margin-bottom: 0;
}


.vos-block-heading {
  display: flex;

  align-items: baseline;

  gap: 18px;

  margin-bottom: 31px;
}


.vos-block-heading > p {
  margin: 0;

  font-size: 10px;
  font-weight: 500;

  color: #aaaaaa;
}


.vos-block-heading h2 {
  margin: 0;

  font-size: 25px;
  font-weight: 550;

  color: #111111;
}


/* =========================================
   PAYMENT BOX
========================================= */

.vos-payment-box {
  width: 100%;

  border:
    1px solid #d6d6d2;

  background: #ffffff;
}


.vos-payment-intro {
  padding:
    25px 25px
    23px;

  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  border-bottom:
    1px solid #dededb;
}


.vos-payment-label {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.065em;
  text-transform: uppercase;

  color: #888888;
}


.vos-payment-intro h3 {
  margin:
    0 0
    7px;

  font-size: 16px;
  font-weight: 600;

  color: #111111;
}


.vos-payment-intro p {
  max-width: 520px;

  margin: 0;

  font-size: 12px;

  line-height: 1.65;

  color: #707070;
}


.vos-payment-amount {
  flex: 0 0 auto;

  white-space: nowrap;

  font-size: 20px;
  font-weight: 650;

  color: #111111;
}


/* =========================================
   BANK DETAILS
========================================= */

.vos-bank-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    175px;

  align-items: center;

  gap: 42px;

  padding:
    27px 25px
    29px;

  background: #f8f8f5;
}


.vos-bank-details {
  border-top:
    1px solid #d9d9d5;
}


.vos-bank-row {
  min-height: 47px;

  padding:
    11px 0;

  display: grid;

  grid-template-columns:
    150px
    minmax(0, 1fr);

  align-items: center;

  gap: 18px;

  border-bottom:
    1px solid #d9d9d5;
}


.vos-bank-row span {
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: #888888;
}


.vos-bank-row strong {
  font-size: 12px;
  font-weight: 550;

  line-height: 1.45;

  word-break: break-word;

  color: #111111;
}


/* =========================================
   QR
========================================= */

.vos-qr {
  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}


.vos-qr-image {
  width: 165px;
  height: 165px;

  padding: 8px;

  border:
    1px solid #ddddda;

  background: #ffffff;
}


.vos-qr-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


.vos-qr p {
  margin:
    9px 0
    0;

  font-size: 10px;

  color: #888888;
}


/* =========================================
   PAYMENT PROOF
========================================= */

.vos-proof {
  max-width: 660px;
}


.vos-proof > p:first-child {
  margin:
    0 0
    23px;

  font-size: 13px;

  line-height: 1.7;

  color: #626262;
}


.vos-whatsapp-button {
  width: 100%;
  min-height: 53px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding:
    14px 22px;

  background: #111111;
  color: #ffffff;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.065em;
  text-transform: uppercase;

  transition:
    background-color 180ms ease;
}


.vos-whatsapp-button:hover {
  background: #333333;
}


.vos-proof-note {
  margin:
    12px 0
    0 !important;

  font-size: 10px !important;

  line-height: 1.5 !important;

  color: #999999 !important;
}


/* =========================================
   SUMMARY
========================================= */

.vos-summary {
  position: sticky;

  top: 115px;

  width: 100%;

  padding:
    31px 29px;

  border:
    1px solid #dededb;

  background: #ffffff;
}


.vos-summary-title {
  margin:
    0 0
    24px;

  font-size: 19px;
  font-weight: 550;

  color: #111111;
}


/* =========================================
   SUMMARY PRODUCTS
========================================= */

.vos-product {
  display: grid;

  grid-template-columns:
    72px
    minmax(0, 1fr)
    auto;

  gap: 15px;

  align-items: center;

  padding:
    17px 0;

  border-bottom:
    1px solid #e2e2df;
}


.vos-product-image {
  width: 72px;
  height: 82px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f6f6f3;
}


.vos-product-image img {
  max-width: 72%;
  max-height: 78%;

  object-fit: contain;
}


.vos-product-name {
  margin:
    0 0
    5px;

  font-size: 12px;
  font-weight: 550;

  line-height: 1.25;

  color: #111111;
}


.vos-product-meta {
  margin: 0;

  font-size: 10px;

  line-height: 1.45;

  color: #888888;
}


.vos-product-price {
  align-self: start;

  padding-top: 4px;

  white-space: nowrap;

  font-size: 11px;
  font-weight: 500;

  color: #111111;
}


/* =========================================
   TOTALS
========================================= */

.vos-totals {
  padding-top: 18px;
}


.vos-total-row {
  padding:
    8px 0;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  font-size: 12px;

  color: #555555;
}


.vos-total-final {
  margin-top: 14px;

  padding-top: 20px;

  display: flex;

  align-items: baseline;
  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid #dededb;

  font-size: 15px;
  font-weight: 550;

  color: #111111;
}


.vos-total-final strong {
  font-size: 20px;
  font-weight: 650;
}


/* =========================================
   DELIVERY
========================================= */

.vos-delivery {
  margin-top: 27px;

  padding-top: 25px;

  border-top:
    1px solid #dededb;
}


.vos-summary-subtitle {
  margin:
    0 0
    14px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.065em;
  text-transform: uppercase;

  color: #888888;
}


#vos-delivery-details > strong {
  display: block;

  margin-bottom: 5px;

  font-size: 12px;
  font-weight: 600;

  color: #111111;
}


#vos-delivery-details > p {
  margin:
    3px 0;

  font-size: 11px;

  line-height: 1.55;

  color: #666666;
}


.vos-delivery-note {
  margin-top: 15px;

  padding-top: 13px;

  border-top:
    1px solid #ecece8;
}


.vos-delivery-note span {
  display: block;

  margin-bottom: 5px;

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.055em;
  text-transform: uppercase;

  color: #999999;
}


.vos-delivery-note p {
  margin: 0;

  font-size: 10px;

  line-height: 1.55;

  color: #777777;
}


.vos-continue {
  display: block;

  margin-top: 24px;

  text-align: center;

  font-size: 11px;

  text-decoration: underline;
  text-underline-offset: 3px;

  color: #777777;
}


/* =========================================
   EMPTY STATE
========================================= */

.vos-empty {
  max-width: 660px;

  margin: 0 auto;

  padding:
    60px 20px
    90px;

  text-align: center;
}


.vos-empty[hidden],
.vos-order-strip[hidden],
.vos-progress[hidden],
.vos-layout[hidden] {
  display: none !important;
}


.vos-empty h2 {
  margin:
    0 auto
    16px;

  max-width: 560px;

  font-size: 31px;
  font-weight: 450;

  line-height: 1.25;

  color: #111111;
}


.vos-empty > p:not(.vos-kicker) {
  max-width: 500px;

  margin:
    0 auto;

  font-size: 13px;

  line-height: 1.7;

  color: #777777;
}


.vos-empty > a {
  min-width: 210px;
  min-height: 51px;

  margin-top: 28px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    12px 20px;

  background: #111111;
  color: #ffffff;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.065em;
  text-transform: uppercase;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .vos-section {
    padding:
      88px 32px
      115px;
  }


  .vos-layout {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(300px, 0.85fr);

    gap: 46px;
  }


  .vos-bank-layout {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .vos-qr {
    align-items: flex-start;
  }

}


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

@media (max-width: 767px) {

  .vos-section {
    padding:
      70px 20px
      92px;
  }


  .vos-header {
    margin-bottom: 42px;
  }


  .vos-title {
    font-size: 44px;
  }


  .vos-order-strip {
    grid-template-columns: 1fr;

    margin-bottom: 38px;
  }


  .vos-order-strip-item {
    min-height: auto;

    padding:
      17px 0;
  }


  .vos-order-strip-item +
  .vos-order-strip-item {
    border-left: 0;

    border-top:
      1px solid #dededb;
  }


  .vos-progress {
    grid-template-columns: 1fr;

    gap: 22px;

    margin-bottom: 58px;
  }


  .vos-progress::before {
    left: 7px;
    right: auto;
    top: 8px;
    bottom: 8px;

    width: 1px;
    height: auto;
  }


  .vos-progress-step {
    min-height: 52px;

    padding:
      0 0
      0 34px;
  }


  .vos-progress-dot {
    position: absolute;

    left: 0;
    top: 0;

    margin: 0;
  }


  .vos-layout {
    grid-template-columns: 1fr;

    gap: 52px;
  }


  .vos-block {
    padding-bottom: 43px;

    margin-bottom: 43px;
  }


  .vos-block-heading {
    margin-bottom: 27px;
  }


  .vos-block-heading h2 {
    font-size: 22px;
  }


  .vos-payment-intro {
    flex-direction: column;

    gap: 17px;

    padding:
      22px 18px
      20px;
  }


  .vos-payment-amount {
    font-size: 19px;
  }


  .vos-bank-layout {
    grid-template-columns: 1fr;

    padding:
      22px 18px
      24px;
  }


  .vos-bank-row {
    grid-template-columns: 1fr;

    gap: 5px;

    padding:
      12px 0;
  }


  .vos-qr {
    align-items: center;
  }


  .vos-qr-image {
    width: 155px;
    height: 155px;
  }


  .vos-summary {
    position: static;

    padding:
      28px 22px;
  }


  .vos-whatsapp-button {
    text-align: center;

    line-height: 1.4;
  }

}
.vos-whatsapp-fallback {
  margin:
    14px 0
    0 !important;

  font-size: 11px !important;

  line-height: 1.6 !important;

  color: #777777 !important;
}


.vos-whatsapp-fallback a {
  font-weight: 600;

  color: #111111;

  text-decoration: underline;

  text-underline-offset: 3px;
}

.product-title,
.scent-conclusion-title,
.related-product-name {
  text-transform: uppercase;
}

/* =========================================
   DESKTOP — STICKY / FIXED HEADER
========================================= */

@media (min-width: 901px) {

  /* Homepage: stays over hero and remains on screen */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  /* Inner pages: keep document spacing + stick on scroll */
  .site-header.page-header {
    position: sticky;
    top: 0;
  }


  /* Homepage header after scrolling */
  .site-header.header-scrolled {
    background: #ffffff;
    color: #111111;
  }

  .site-header.header-scrolled .brand-logo img {
    filter: none;
  }

  .site-header.header-scrolled .nav-link {
    color: #555555;
  }

  .site-header.header-scrolled .bag-count {
    background: #111111;
    color: #ffffff;
  }

}

.site-header.header-scrolled {
  background: #ffffff;
  color: #111111;
}

.site-header.header-scrolled .brand-logo img {
  filter: none;
}

.site-header.header-scrolled .nav-link {
  color: #555555;
}

.site-header.header-scrolled .bag-count {
  background: #111111;
  color: #ffffff;
}

/* =========================================
   MOBILE STICKY HEADER
========================================= */

@media (max-width: 900px) {

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .site-header.header-scrolled {
    background: #ffffff;
    color: #111111;
  }

  .site-header.header-scrolled .brand-logo img {
    filter: none;
  }

  .site-header.header-scrolled .menu-toggle {
    color: #111111;
  }

  .site-header.header-scrolled .bag-link {
    color: #111111;
  }

  .site-header.header-scrolled .bag-count {
    background: #111111;
    color: #ffffff;
  }

}

/* =========================================
   HEADER — CONSISTENT SUBTLE DIVIDER
========================================= */

/* Prevent 1px layout movement when state changes */
.site-header {
  border-bottom: 1px solid transparent;
  transition:
    background-color 350ms var(--ease-premium),
    color 350ms var(--ease-premium),
    border-color 300ms ease;
}


/* Inner pages */
.site-header.page-header {
  border-bottom-color: #eeeeee;
}


/* Homepage — after scroll */
.site-header.header-scrolled {
  border-bottom-color: #eeeeee;
}


/* Homepage — desktop hover */
@media (hover: hover) and (pointer: fine) {

  .site-header:not(.page-header):hover {
    border-bottom-color: #eeeeee;
  }

}


/* Mobile menu open */
.site-header.menu-open {
  border-bottom-color: #eeeeee;
}

.history-item {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.history-item:last-child {
    border-bottom: 0;
}

.history-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 7px;
}

.history-status {
    font-weight: 700;
}

.history-date {
    color: #777;
    font-size: 13px;
}

.history-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 6px;
}

.history-note {
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================
   OUT OF STOCK — FRONTEND STATE
========================================= */

.product-add-cart:disabled,
.ds-add-cart:disabled {
  background: #d9d9d5;
  color: #777777;
  cursor: not-allowed;
}

.product-add-cart:disabled:hover,
.ds-add-cart:disabled:hover {
  background: #d9d9d5;
  color: #777777;
}

.product-cart-button:disabled,
.fr-cart-button:disabled {
  background: #f1f1ee;
  color: #a4a4a0;
  cursor: not-allowed;
  box-shadow: none;
}

.product-cart-button:disabled:hover,
.fr-cart-button:disabled:hover {
  background: #f1f1ee;
  color: #a4a4a0;
  box-shadow: none;
}

/* =========================================
   CHECKOUT — PROMO & GIFT VOUCHER
========================================= */

.vcheckout-adjustment-intro {
  max-width: 620px;
  margin: -14px 0 24px;
  font-size: 11px;
  line-height: 1.6;
  color: #777777;
}

.vcheckout-code-card {
  padding: 18px 0;
  border-top: 1px solid #e2e2df;
}

.vcheckout-code-card:last-child {
  border-bottom: 1px solid #e2e2df;
}

.vcheckout-code-heading {
  margin-bottom: 12px;
}

.vcheckout-code-heading strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 550;
  color: #111111;
}

.vcheckout-code-heading span {
  display: block;
  font-size: 10px;
  line-height: 1.5;
  color: #888888;
}

.vcheckout-code-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.vcheckout-code-control input {
  min-width: 0;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid #ccccca;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.vcheckout-code-control input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: #999999;
}

.vcheckout-code-apply {
  min-width: 92px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vcheckout-code-apply:hover {
  background: #333333;
  border-color: #333333;
}

.vcheckout-code-apply:disabled {
  opacity: .5;
  cursor: wait;
}

.vcheckout-code-status {
  min-height: 18px;
  margin-top: 9px;
  font-size: 10px;
  line-height: 1.5;
  color: #777777;
}

.vcheckout-code-status.is-success {
  color: #2f6b3b;
}

.vcheckout-code-status.is-error {
  color: #9a3434;
}

.vcheckout-applied-codes {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.vcheckout-applied-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid #e1e1dd;
  background: #fafaf8;
}

.vcheckout-applied-code > div {
  min-width: 0;
}

.vcheckout-applied-code strong,
.vcheckout-applied-code span {
  display: block;
}

.vcheckout-applied-code strong {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.035em;
  color: #111111;
}

.vcheckout-applied-code span {
  font-size: 10px;
  line-height: 1.45;
  color: #666666;
}

.vcheckout-code-remove {
  margin-left: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vcheckout-summary-adjustment {
  color: #2f6b3b;
}

.vcheckout-summary-minus {
  font-weight: 550;
  color: #2f6b3b;
}

.vcheckout-fully-covered {
  margin-bottom: 16px;
  padding: 17px 18px;
  border: 1px solid #cfdccc;
  background: #f5faf4;
}

.vcheckout-fully-covered strong,
.vcheckout-fully-covered span {
  display: block;
}

.vcheckout-fully-covered strong {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #244d2d;
}

.vcheckout-fully-covered span {
  font-size: 10px;
  line-height: 1.5;
  color: #56705c;
}

#vcheckout-payment-methods[hidden],
#vcheckout-fully-covered[hidden],
#vcheckout-promo-row[hidden],
#vcheckout-order-total-row[hidden],
#vcheckout-voucher-row[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .vcheckout-code-control {
    grid-template-columns: 1fr;
  }

  .vcheckout-code-apply {
    width: 100%;
  }
}


/* =========================================
   CHECKOUT — PROMO / VOUCHER INSIDE SUMMARY
   Structural placement:
   Desktop: inside sticky Order Summary.
   Mobile: Shipping → Order Summary → Payment → Place Order.
========================================= */

.vcheckout-summary-code {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e2e2df;
}

.vcheckout-summary-code-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
}

.vcheckout-summary-code .vcheckout-adjustment-intro {
  margin: 0 0 16px;
  font-size: 10px;
  line-height: 1.55;
}

.vcheckout-summary-code .vcheckout-code-card {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}

.vcheckout-summary-code .vcheckout-code-heading {
  display: none;
}

.vcheckout-summary-code .vcheckout-code-status:empty {
  min-height: 0;
  margin-top: 0;
}

.vcheckout-summary-code .vcheckout-applied-codes:empty {
  margin-top: 0;
}

@media (max-width: 767px) {
  .vcheckout-shipping {
    order: 1;
  }

  .vcheckout-summary {
    order: 2;
  }

  .vcheckout-payment {
    order: 3;
  }

  .vcheckout-mobile-action {
    order: 4;
  }

  .vcheckout-summary-code {
    margin-top: 20px;
    padding-top: 18px;
  }
}

/* =========================================
   STOREFRONT SALE PRICE SYSTEM
   Neutral Verdeur treatment — no red
========================================= */

.storefront-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;

  column-gap: 8px;
  row-gap: 3px;
}

.storefront-price-regular {
  color: #9a9a9a;

  font-weight: 500;

  text-decoration-line: line-through;
  text-decoration-color: #9a9a9a;
  text-decoration-thickness: 1px;
}

.storefront-price-current {
  color: #111111;
}

.storefront-price-discount {
  color: #4f4f4f;

  font-size: 0.88em;
  font-weight: 600;

  letter-spacing: 0.01em;
}

.fr-price.storefront-price,
.collection-product-price.storefront-price,
.product-price.storefront-price,
.related-product-price.storefront-price,
.ds-price.storefront-price {
  justify-content: center;
}

.vcart-item-price.storefront-price,
.vcheckout-product-price.storefront-price {
  justify-content: flex-end;

  text-align: right;
}

@media (max-width: 767px) {

  .vcart-item-price.storefront-price {
    justify-content: flex-start;

    text-align: left;
  }

}

/* =========================================
   CART — AUTOMATIC SALE SUMMARY
   Neutral Verdeur treatment
========================================= */

.vcart-sale-summary {
  margin:
    0 0 16px;

  padding:
    0 0 16px;

  border-bottom:
    1px solid #e2e2df;
}

.vcart-sale-summary[hidden] {
  display: none !important;
}

.vcart-sale-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;

  gap: 18px;

  margin-bottom: 8px;

  font-size: 11px;
  line-height: 1.45;
}

.vcart-sale-summary-row:last-child {
  margin-bottom: 0;
}

.vcart-sale-summary-row > span:first-child {
  color: #6f6f6f;
}

.vcart-sale-summary-row > span:last-child,
.vcart-sale-summary-row strong {
  text-align: right;
}

.vcart-sale-summary-regular > span:last-child {
  color: #8f8f8f;
}

.vcart-sale-summary-current strong {
  color: #111111;
  font-weight: 600;
}

.vcart-sale-summary-saved strong {
  color: #4f4f4f;
  font-weight: 600;
}

@media (max-width: 767px) {

  .vcart-sale-summary {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

}

/* =========================================
   MOBILE — INNER PAGE HEADER OFFSET
   Fixed header ko document spacing deta hai.
   Homepage intentionally excluded.
========================================= */

@media (max-width: 900px) {

  .site-header.page-header ~ main {
    padding-top: var(--header-height);
  }

}

/* =========================================
   PRODUCT PAGE — PDP IMAGE GALLERY
   Main PDP first, then active gallery media.
========================================= */

.product-gallery {
  position: relative;

  width: 100%;
  max-width: 560px;

  margin: 0 auto;
}


.product-gallery-viewport {
  width: 100%;

  overflow: hidden;

  touch-action: pan-y;

  outline: none;
}


.product-gallery-track {
  display: flex;

  width: 100%;

  transform: translate3d(0, 0, 0);

  transition:
    transform 480ms var(--ease-premium);

  will-change: transform;
}


.product-gallery-slide {
  flex: 0 0 100%;

  min-width: 0;
  min-height: 680px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.product-gallery-arrow {
  position: absolute;
  z-index: 2;

  top: 50%;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 0;

  background: transparent;
  color: #111111;

  cursor: pointer;

  transform: translateY(-50%);

  opacity: 0.72;

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}


.product-gallery-arrow:hover {
  opacity: 1;
}


.product-gallery-arrow svg {
  width: 24px;
  height: 24px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.product-gallery-arrow-prev {
  left: 4px;
}


.product-gallery-arrow-next {
  right: 4px;
}


.product-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 12px;
}


.product-gallery-dot {
  width: 6px;
  height: 6px;

  border-radius: 999px;

  background: #ccccca;

  cursor: pointer;

  transition:
    width 180ms ease,
    background-color 180ms ease;
}


.product-gallery-dot.active {
  width: 18px;

  background: #111111;
}


@media (max-width: 1100px) {

  .product-gallery {
    max-width: 430px;
  }


  .product-gallery-slide {
    min-height: 550px;
  }


  .product-gallery-arrow {
    width: 34px;
    height: 34px;
  }

}


@media (max-width: 767px) {

  .product-gallery {
    max-width: 100%;
  }


  .product-gallery-slide {
    min-height: 390px;
  }


  /*
   * Mobile interaction is intentionally quieter:
   * finger swipe + dots, no floating arrow buttons.
   */
  .product-gallery-arrow {
    display: none;
  }


  .product-gallery-dots {
    margin-top: 8px;
  }


  .product-gallery-dot {
    width: 5px;
    height: 5px;
  }


  .product-gallery-dot.active {
    width: 16px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .product-gallery-track,
  .product-gallery-dot {
    transition: none;
  }

}

