/* variables */
:root {
  --color-ink: #25131f;
  --color-muted: #735765;
  --color-prune: #1f0d19;
  --color-paper: #fff8ef;
  --color-cream: #fff0df;
  --color-powder: #ffe4ec;
  --color-blush: #f6adc0;
  --color-rose: #df3d7a;
  --color-cta: #df3d7a;
  --color-rose-deep: #ad255b;
  --color-coral: #ee7351;
  --color-logo-salmon: #cf6f72;
  --color-logo-salmon-deep: #b85d63;
  --color-gold: #c8a260;
  --color-border: rgba(61, 24, 43, 0.16);
  --shadow-soft: 0 28px 80px rgba(67, 24, 43, 0.17);
  --shadow-card: 0 18px 48px rgba(67, 24, 43, 0.14);
  --radius: 8px;
  --radius-small: 5px;
  --container: 1180px;
  --header-height: 78px;
  --section-space: 92px;
  --font-title: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* reset/base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.chaos-site {
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 226, 235, 0.86)),
    radial-gradient(circle at 12% 8%, rgba(238, 115, 81, 0.22), transparent 32vw);
}

body.nav-open,
body.age-lock {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 900px;
  font-size: 9rem;
}

h2 {
  font-size: 6.6rem;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

::selection {
  background: var(--color-rose);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* layout */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-rose-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: 2.6rem;
  line-height: 1;
}

.product-tag {
  color: var(--color-coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rr-price-tax-label {
  display: inline-block;
  margin-left: 0.22em;
  color: inherit;
  font-size: 0.74em;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/* buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.cart-button:focus-visible,
.menu-toggle:focus-visible,
.quantity-control button:focus-visible {
  outline: 3px solid rgba(223, 61, 122, 0.28);
  outline-offset: 2px;
}

.button--primary {
  background: var(--color-rose);
  color: #fff;
  box-shadow: 0 14px 34px rgba(223, 61, 122, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-rose-deep);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 248, 239, 0.82);
  color: var(--color-ink);
  backdrop-filter: blur(12px);
}

.button--outline,
.button--ghost {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-ink);
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--color-rose);
  color: var(--color-rose-deep);
}

.button--small {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 0.7rem;
}

.button.is-added {
  background: var(--color-prune);
  color: #fff;
}

/* header */
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  color: var(--color-paper);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header--solid,
.site-header.is-scrolled,
.site-header.nav-is-open {
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 14px 40px rgba(50, 19, 37, 0.08);
  color: var(--color-ink);
  backdrop-filter: blur(18px);
}

.header-bar {
  display: grid;
  min-height: 52px;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}

.site-logo span {
  color: var(--color-coral);
}

.site-logo--image {
  display: inline-flex;
  width: clamp(104px, 10vw, 156px);
  align-items: center;
}

.site-logo--image img {
  width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: none;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: end;
}

.buy-link {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-button,
.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: currentColor;
  backdrop-filter: blur(12px);
}

.site-header--solid .cart-button,
.site-header--solid .menu-toggle,
.site-header.is-scrolled .cart-button,
.site-header.is-scrolled .menu-toggle,
.site-header.nav-is-open .cart-button,
.site-header.nav-is-open .menu-toggle {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.74);
}

.cart-button {
  position: relative;
}

.cart-button svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  position: absolute;
  right: -4px;
  bottom: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--color-rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* hero */
.hero-video {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: 138px 0 76px;
  background: var(--color-logo-salmon);
  color: var(--color-paper);
  isolation: isolate;
}

.hero-video__backdrop,
.hero-video__media,
.hero-video__fallback,
.hero-video__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video__backdrop {
  z-index: -5;
  object-fit: contain;
  filter: saturate(1.05);
  opacity: 0.34;
  transform: none;
}

.hero-video__media,
.hero-video__fallback {
  z-index: -3;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  will-change: transform;
}

.hero-video__media.is-unavailable {
  opacity: 0;
}

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

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

.hero-video__fallback {
  z-index: -4;
  padding: 4vh 0;
}

.hero-video__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31, 13, 25, 0.78), rgba(31, 13, 25, 0.38) 48%, rgba(31, 13, 25, 0.38)),
    linear-gradient(0deg, rgba(31, 13, 25, 0.66), rgba(31, 13, 25, 0.08) 52%, rgba(31, 13, 25, 0.42));
}

.hero-video__content {
  position: relative;
  max-width: 850px;
}

.hero-video .eyebrow {
  color: var(--color-blush);
}

.hero-video__lead {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(255, 248, 239, 0.9);
  font-size: 1.35rem;
}

.hero-video--chaos {
  align-items: end;
  min-height: 100svh;
  padding: 136px 0 64px;
  background: var(--color-logo-salmon);
}

.hero-video--chaos::before,
.hero-video--chaos::after {
  content: none;
}

.hero-video--chaos .hero-video__backdrop {
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
  opacity: 0.16;
}

.hero-video--chaos .hero-video__media,
.hero-video--chaos .hero-video__fallback {
  object-fit: contain;
  object-position: center top;
  padding: 0;
  background: var(--color-logo-salmon);
  filter: saturate(1.06) contrast(1.02);
}

.hero-video--chaos .hero-video__overlay {
  background:
    linear-gradient(90deg, rgba(31, 13, 25, 0.58), rgba(31, 13, 25, 0.12) 48%, rgba(31, 13, 25, 0.08)),
    linear-gradient(0deg, rgba(31, 13, 25, 0.56), rgba(31, 13, 25, 0.02) 56%, rgba(31, 13, 25, 0.18));
}

.hero-video--chaos .hero-video__content {
  z-index: 2;
  max-width: 470px;
  border-left: 4px solid rgba(255, 248, 239, 0.64);
  padding: 16px 0 16px 20px;
  background: linear-gradient(90deg, rgba(31, 13, 25, 0.34), transparent);
}

.hero-video--chaos h1 {
  max-width: 450px;
  font-size: clamp(2.9rem, 5.6vw, 4.8rem);
  text-shadow: 0 12px 36px rgba(31, 13, 25, 0.34);
}

.hero-video--chaos .hero-video__lead {
  max-width: 430px;
  margin: 16px 0 24px;
  font-size: 1.06rem;
}

.hero-video--chaos .button--primary {
  background: #ff2f86;
  box-shadow: 0 16px 42px rgba(255, 47, 134, 0.38);
}

.hero-chaos {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero-chaos__poster {
  position: absolute;
  border: 6px solid rgba(255, 248, 239, 0.92);
  background: var(--color-paper);
  box-shadow: 0 18px 46px rgba(31, 13, 25, 0.26);
  object-fit: contain;
  opacity: 0.95;
  animation: chaos-float 8s ease-in-out infinite;
}

.hero-chaos__poster--logo {
  top: 14%;
  right: 6%;
  width: min(290px, 24vw);
  transform: rotate(9deg);
}

.hero-chaos__poster--banner {
  right: -4%;
  bottom: 8%;
  width: min(620px, 45vw);
  transform: rotate(-6deg);
  animation-delay: -1.2s;
}

.hero-chaos__poster--rebellion {
  top: 48%;
  left: -7%;
  width: min(410px, 28vw);
  transform: rotate(-10deg);
  animation-delay: -2.5s;
}

.hero-chaos__poster--bottle {
  right: 22%;
  bottom: -5%;
  width: min(260px, 16vw);
  border: 0;
  background: transparent;
  filter: drop-shadow(0 22px 28px rgba(31, 13, 25, 0.32));
  transform: rotate(7deg);
  animation-delay: -3.6s;
}

.hero-chaos__word {
  position: absolute;
  color: rgba(255, 248, 239, 0.86);
  font-family: var(--font-title);
  line-height: 0.8;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(31, 13, 25, 0.26);
  animation: chaos-pulse 4.5s ease-in-out infinite;
}

.hero-chaos__word--one {
  top: 18%;
  left: 4%;
  color: #ff83af;
  font-size: clamp(4rem, 11vw, 12rem);
  transform: rotate(-8deg);
}

.hero-chaos__word--two {
  right: 12%;
  bottom: 29%;
  color: rgba(255, 248, 239, 0.24);
  font-size: clamp(4rem, 10vw, 11rem);
  transform: rotate(8deg);
  animation-delay: -1.4s;
}

.hero-chaos__word--three {
  left: 48%;
  bottom: 10%;
  color: rgba(255, 47, 134, 0.8);
  font-size: clamp(4rem, 12vw, 13rem);
  transform: rotate(-14deg);
  animation-delay: -2.1s;
}

.scroll-cue {
  position: absolute;
  right: 52px;
  bottom: 34px;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: rgba(255, 248, 239, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 56px;
  background: currentColor;
  content: "";
}

/* chaos wall */
.chaos-wall {
  position: relative;
  overflow: hidden;
  padding: 0 0 86px;
  background:
    linear-gradient(90deg, #f06a4b 0 42%, #ffe9df 42% 100%),
    var(--color-cream);
  color: var(--color-ink);
}

.chaos-wall::before,
.chaos-wall::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.chaos-wall::before {
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(31, 13, 25, 0.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255, 248, 239, 0.12) 0 2px, transparent 2px 40px);
  mix-blend-mode: multiply;
}

.chaos-wall::after {
  right: -10vw;
  bottom: 3vw;
  width: 58vw;
  height: 18vw;
  background: url("../media/new-pink-hit-banner-fast.jpg") center / contain no-repeat;
  opacity: 0.24;
  transform: rotate(-3deg);
}

.chaos-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(31, 13, 25, 0.2);
  background: #ff2f86;
  color: #fff8ef;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.chaos-marquee span {
  min-width: max-content;
  padding: 16px 22px 18px;
  animation: chaos-marquee 28s linear infinite;
}

.chaos-wall__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(420px, 0.96fr) minmax(360px, 0.88fr);
  gap: 56px;
  align-items: center;
  padding-top: 64px;
}

.chaos-wall__copy {
  display: grid;
  gap: 22px;
  width: 100%;
  max-width: 780px;
  border: 5px solid rgba(255, 248, 239, 0.9);
  background: rgba(255, 239, 220, 0.94);
  box-shadow: 0 20px 54px rgba(31, 13, 25, 0.18);
  padding: clamp(32px, 4.8vw, 60px);
  transform: rotate(-0.6deg);
}

.chaos-wall__copy h2 {
  max-width: 720px;
  font-size: clamp(3rem, 4.6vw, 5.1rem);
}

.chaos-wall__copy p:not(.eyebrow) {
  color: #371421;
  max-width: 660px;
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.68;
}

.chaos-wall__signature {
  color: var(--color-rose) !important;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.8vw, 4.2rem) !important;
  line-height: 0.98;
}

.chaos-stack {
  position: relative;
  min-height: 610px;
}

.chaos-stack__item {
  position: absolute;
  overflow: hidden;
  border: 6px solid rgba(255, 248, 239, 0.94);
  background: var(--color-paper);
  box-shadow: 0 24px 62px rgba(31, 13, 25, 0.22);
}

.chaos-stack__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff1e4;
}

.chaos-stack__item--main {
  top: 0;
  right: 8%;
  z-index: 2;
  width: min(470px, 72%);
  aspect-ratio: 0.77;
  transform: rotate(1.2deg);
}

.chaos-stack__item--banner {
  right: 0;
  bottom: 8%;
  z-index: 4;
  width: min(620px, 88%);
  aspect-ratio: 3.8;
  transform: rotate(-2.4deg);
}

.chaos-stack__item--type {
  top: 22%;
  left: 0;
  z-index: 3;
  width: min(370px, 52%);
  aspect-ratio: 1;
  transform: rotate(-3deg);
}

.chaos-stack__item--logo {
  top: 8%;
  left: 28%;
  z-index: 5;
  width: min(240px, 34%);
  aspect-ratio: 2.33;
  transform: rotate(4deg);
}

.chaos-stack--single {
  display: grid;
  min-height: 0;
  place-items: center;
}

.chaos-stack--single .chaos-stack__item--rebellion {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1;
  transform: rotate(1.1deg);
}

.chaos-stack--single .chaos-stack__item--rebellion img {
  object-fit: cover;
}

/* early hit ribbon */
.hit-ribbon {
  position: relative;
  overflow: hidden;
  padding: 34px 0 40px;
  background:
    linear-gradient(90deg, #f05f41 0 32%, #ffb9cb 32% 68%, #ff2f86 68%),
    var(--color-powder);
  color: var(--color-paper);
}

.hit-ribbon::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(31, 13, 25, 0.12) 0 2px, transparent 2px 26px),
    linear-gradient(180deg, rgba(255, 248, 239, 0.08), transparent 55%);
  content: "";
  pointer-events: none;
}

.hit-ribbon__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1fr) minmax(160px, 0.26fr);
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
}

.hit-ribbon figure {
  margin: 0;
}

.hit-ribbon__banner,
.hit-ribbon__shoe,
.hit-ribbon__poster {
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 42px rgba(31, 13, 25, 0.18);
}

.hit-ribbon__banner {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: rotate(-0.5deg);
}

.hit-ribbon__banner img,
.hit-ribbon__shoe img,
.hit-ribbon__poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hit-ribbon__side {
  display: grid;
  gap: 14px;
  align-items: center;
}

.hit-ribbon__side--left {
  justify-items: start;
}

.hit-ribbon__side--right {
  justify-items: end;
}

.hit-ribbon__side span {
  display: inline-block;
  color: #fff8ef;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.82;
  text-shadow: 0 10px 24px rgba(31, 13, 25, 0.18);
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.hit-ribbon__shoe {
  width: min(300px, 100%);
  aspect-ratio: 1.7;
  clip-path: polygon(4% 0, 100% 8%, 96% 100%, 0 91%);
  transform: rotate(3deg);
}

.hit-ribbon__poster {
  width: min(190px, 100%);
  aspect-ratio: 0.82;
  clip-path: polygon(0 8%, 94% 0, 100% 92%, 8% 100%);
  opacity: 0.92;
  transform: rotate(-3deg);
}

.hit-ribbon__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 239, 0.8);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.92);
  color: var(--color-rose-deep);
  padding: 11px 18px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(31, 13, 25, 0.18);
  transform: rotate(-1deg);
}

/* pdf excerpts */
.pdf-extracts {
  position: relative;
  overflow: hidden;
  padding: 68px 0 86px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.92), rgba(255, 226, 235, 0.76)),
    radial-gradient(circle at 85% 12%, rgba(223, 61, 122, 0.18), transparent 34vw);
}

.pdf-extracts::before {
  position: absolute;
  top: 34px;
  right: -6vw;
  color: rgba(173, 37, 91, 0.08);
  content: "PINK";
  font-family: var(--font-title);
  font-size: clamp(8rem, 18vw, 20rem);
  line-height: 0.8;
  pointer-events: none;
}

.pdf-extracts__header {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 860px;
  gap: 14px;
  margin-bottom: 32px;
}

.pdf-extracts__header h2 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.pdf-extracts__header p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-muted);
  font-weight: 800;
}

.pdf-extracts__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  align-items: start;
}

.pdf-extract {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 18px 42px rgba(67, 24, 43, 0.11);
  clip-path: polygon(2% 0, 100% 3%, 98% 100%, 0 96%);
  transform: rotate(var(--pdf-tilt, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pdf-extract:hover {
  box-shadow: var(--shadow-card);
  transform: rotate(var(--pdf-tilt, 0deg)) translateY(-4px);
}

.pdf-extract:nth-child(2) {
  --pdf-tilt: -0.8deg;
}

.pdf-extract:nth-child(3) {
  --pdf-tilt: 0.9deg;
}

.pdf-extract:nth-child(5) {
  --pdf-tilt: -0.6deg;
}

.pdf-extract--wide {
  grid-column: span 8;
}

.pdf-extract--dark {
  clip-path: polygon(0 4%, 97% 0, 100% 96%, 3% 100%);
}

.pdf-extract img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

/* manifesto */
.manifesto {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 240, 223, 0.92), rgba(255, 228, 236, 0.76)),
    repeating-linear-gradient(-8deg, rgba(223, 61, 122, 0.13) 0 2px, transparent 2px 36px);
}

.manifesto::before {
  position: absolute;
  right: -40px;
  bottom: 36px;
  color: rgba(173, 37, 91, 0.08);
  content: "Oh là là";
  font-family: var(--font-title);
  font-size: 15rem;
  line-height: 1;
  pointer-events: none;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.74fr);
  gap: 82px;
  align-items: center;
}

.manifesto__copy {
  position: relative;
  z-index: 1;
  border-left: 10px solid #ff2f86;
  padding-left: clamp(18px, 3vw, 36px);
}

.manifesto__copy h2 {
  max-width: 880px;
}

.manifesto__copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: #4d2739;
  font-size: 1.12rem;
}

.manifesto__lead {
  color: var(--color-rose-deep) !important;
  font-family: var(--font-title);
  font-size: 2.6rem !important;
  line-height: 1.05;
}

.manifesto__visual {
  position: relative;
  min-height: 620px;
}

.manifesto__visual--video {
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  border: 8px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: var(--color-logo-salmon);
  box-shadow: var(--shadow-card);
  transform: rotate(1.8deg);
}

.manifesto__visual--video::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(31, 13, 25, 0.44)),
    radial-gradient(circle at 18% 14%, rgba(255, 248, 239, 0.28), transparent 28%);
  content: "";
  pointer-events: none;
}

.manifesto-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.manifesto__visual--video figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.92);
  color: var(--color-prune);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.poster-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-paper);
}

.poster-card figcaption,
.moodboard__item figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.9);
  color: var(--color-prune);
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.poster-card--large {
  top: 0;
  right: 0;
  width: 86%;
  aspect-ratio: 0.92;
  transform: rotate(3deg);
}

.poster-card--small {
  bottom: 0;
  left: 0;
  width: 68%;
  aspect-ratio: 1.1;
  transform: rotate(-4deg);
}

.poster-card--stamp {
  top: 42%;
  right: -5%;
  z-index: 2;
  width: 48%;
  aspect-ratio: 2.33;
  transform: rotate(11deg);
}

.poster-card--large:hover {
  transform: rotate(1deg) translateY(-4px);
}

.poster-card--small:hover {
  transform: rotate(-7deg) translateY(-4px);
}

.poster-card--stamp:hover {
  transform: rotate(7deg) translateY(-4px);
}

/* brand world */
.brand-world {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 217, 210, 0.98), rgba(255, 234, 224, 0.86)),
    url("../media/new-rebellion-poster-fast.jpg") left top / 40vw auto repeat-y;
}

.world-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 0.88fr);
  gap: 70px;
  align-items: center;
}

.world-story__image {
  overflow: hidden;
  border: 6px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: #050203;
  box-shadow: var(--shadow-card);
  transform: rotate(-0.8deg);
}

.world-story__image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  object-position: center;
  background: #050203;
}

.world-story__copy {
  display: grid;
  gap: 18px;
}

.world-story__copy h2 {
  font-size: 5rem;
}

.world-story__copy p {
  color: #552d3d;
  font-size: 1.05rem;
}

.world-story__final {
  color: var(--color-rose-deep) !important;
  font-weight: 900;
}

.winemaker {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  margin-top: 84px;
  border-top: 1px solid rgba(61, 24, 43, 0.16);
  padding-top: 44px;
}

.winemaker figure {
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.9);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
}

.winemaker img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: contain;
  background: var(--color-paper);
}

.winemaker h3 {
  max-width: 780px;
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}

.winemaker p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  color: #552d3d;
}

/* collection */
.collection {
  overflow: hidden;
  background: var(--color-cream);
}

.collection__grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(330px, 0.72fr) minmax(300px, 0.7fr);
  gap: 60px;
  align-items: center;
}

.collection__label h2 {
  font-size: 4.6rem;
  text-transform: uppercase;
}

.collection__label p:last-child {
  margin-top: 18px;
  color: var(--color-muted);
  font-weight: 800;
}

.collection__media {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.collection__media::before {
  position: absolute;
  inset: auto 8% 7% 8%;
  height: 54%;
  background: linear-gradient(90deg, #f8b4ca 0 50%, #e92f78 50% 100%);
  content: "";
}

.collection__media img {
  position: relative;
  width: min(520px, 96%);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 34px 46px rgba(67, 24, 43, 0.18));
}

.collection__content {
  display: grid;
  gap: 18px;
  color: var(--color-rose-deep);
  font-weight: 800;
}

.collection__commerce {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  padding-top: 8px;
}

.price {
  color: var(--color-rose-deep);
  font-size: 1.6rem;
  font-weight: 900;
}

.collection__commerce span {
  color: var(--color-muted);
  font-weight: 900;
  text-transform: uppercase;
}

/* pink statement */
.pink-manifesto {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: #f7b4cf;
  color: var(--color-rose);
}

.pink-manifesto::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 240, 223, 0.05), rgba(255, 240, 223, 0.7)),
    url("../media/new-pink-hit-banner-fast.jpg") right center / contain no-repeat,
    url("../media/brand-logo-lips.jpg") left bottom / 36vw auto no-repeat;
  content: "";
  opacity: 0.82;
}

.pink-manifesto__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 72px;
  align-items: end;
}

.pink-manifesto h2 {
  color: var(--color-rose);
  font-family: var(--font-body);
  font-size: 5.8rem;
  font-weight: 300;
  line-height: 1.03;
  text-transform: uppercase;
}

.pink-manifesto__aside {
  display: grid;
  gap: 16px;
  color: var(--color-rose-deep);
  font-weight: 850;
}

.pink-manifesto__aside img {
  width: 100%;
  border: 8px solid rgba(255, 248, 239, 0.9);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
}

/* moving strip and concise home shop */
.visual-strip {
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--color-logo-salmon-deep), var(--color-logo-salmon) 52%, #ff8a68);
  padding: 24px 0;
  color: var(--color-paper);
}

.visual-strip__track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 18px;
  animation: strip-scroll 42s linear infinite;
}

.visual-strip:hover .visual-strip__track {
  animation-play-state: paused;
}

.visual-strip figure {
  display: grid;
  width: min(560px, 78vw);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.9);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transform: rotate(var(--tilt, -1deg));
}

.visual-strip figure:nth-child(2n) {
  --tilt: 2.2deg;
}

.visual-strip figure:nth-child(3n) {
  --tilt: -3deg;
}

.visual-strip img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #fff1e4;
}

.visual-strip figcaption {
  background: var(--color-paper);
  color: var(--color-prune);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.home-shop {
  background:
    linear-gradient(135deg, rgba(255, 240, 223, 0.96), rgba(255, 228, 236, 0.9)),
    url("../media/new-pink-hit-banner-fast.jpg") right top / min(620px, 46vw) auto no-repeat;
  padding-top: 76px;
}

.home-shop__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.46fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.home-shop__sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 248, 239, 0.92);
  box-shadow: var(--shadow-card);
  transform: none;
}

.home-shop__sidebar h2 {
  font-size: 4rem;
}

.home-shop__sidebar p:not(.eyebrow) {
  color: var(--color-muted);
  font-weight: 800;
}

.home-wine-list {
  display: grid;
  gap: 14px;
}

.home-wine {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 248, 239, 0.78);
  box-shadow: 0 14px 38px rgba(67, 24, 43, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform: none;
}

.home-wine:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.home-wine img {
  width: 150px;
  height: 190px;
  object-fit: contain;
  border-radius: var(--radius-small);
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

.home-wine h3 {
  margin: 4px 0 8px;
  font-family: var(--font-title);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}

.home-wine p:not(.product-tag) {
  color: var(--color-muted);
}

.home-wine strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-rose-deep);
}

.clement-feature {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 248, 239, 0.72), transparent 32%),
    linear-gradient(135deg, var(--color-logo-salmon), #ffe6dc 62%, var(--color-paper));
}

.clement-feature__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 0.9fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.clement-feature__image {
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
  transform: rotate(-1.2deg);
}

.clement-feature__image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: contain;
  object-position: center;
  background: #f4a49a;
}

.clement-feature__copy {
  display: grid;
  gap: 18px;
  color: #522838;
}

.clement-feature__copy h2 {
  color: var(--color-prune);
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.clement-feature__copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.08rem;
  font-weight: 780;
}

.clement-feature--image-only .clement-feature__grid {
  display: block;
}

.clement-feature--image-only .clement-feature__image {
  max-width: 1180px;
  margin: 0 auto;
  transform: none;
}

.clement-feature--image-only .clement-feature__image img {
  display: block;
  height: auto;
  aspect-ratio: auto;
}

.ice-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: clamp(520px, 76vw, 860px);
  align-items: end;
  background: var(--color-logo-salmon);
  color: var(--color-paper);
}

.ice-feature__media {
  position: absolute;
  inset: 0;
}

.ice-feature__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ice-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.ice-feature::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 13, 25, 0.58), rgba(31, 13, 25, 0.08) 52%),
    linear-gradient(0deg, rgba(31, 13, 25, 0.58), transparent 54%);
  content: "";
}

.ice-feature__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding-bottom: clamp(48px, 8vw, 92px);
}

.ice-feature__copy > .eyebrow {
  margin-bottom: 2px;
  color: var(--color-rose);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.4vw, 1.85rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(31, 13, 25, 0.28);
}

.ice-feature__copy h2 {
  max-width: 820px;
  color: var(--color-paper);
  font-size: clamp(3.4rem, 8vw, 8rem);
}

.ice-feature__copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.1rem;
  font-weight: 820;
}

.bandana-video {
  position: relative;
  overflow: hidden;
  min-height: clamp(500px, 70vw, 820px);
  background: var(--color-logo-salmon);
  color: var(--color-paper);
}

.bandana-video__media,
.bandana-video__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bandana-video__media {
  object-fit: cover;
  object-position: center;
}

.bandana-video__overlay {
  background:
    linear-gradient(90deg, rgba(31, 13, 25, 0.48), rgba(31, 13, 25, 0.02) 55%),
    linear-gradient(0deg, rgba(31, 13, 25, 0.54), transparent 58%);
}

.bandana-video__caption {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  align-content: end;
  gap: 12px;
  padding-bottom: clamp(40px, 7vw, 82px);
}

.bandana-video__caption h2 {
  max-width: 760px;
  color: var(--color-paper);
  font-size: clamp(3rem, 7vw, 7rem);
}

@media (max-width: 980px) {
  .clement-feature__grid {
    grid-template-columns: 1fr;
  }

  .clement-feature__image img {
    aspect-ratio: 1.45;
  }

  .collection-motion__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .ice-feature,
  .bandana-video {
    min-height: 560px;
  }

  .ice-feature__media img,
  .bandana-video__media {
    object-position: center;
  }

  .manifesto__visual--video,
  .manifesto-video {
    min-height: 440px;
  }

  .collection-motion__grid {
    grid-template-columns: 1fr;
  }

  .collection-motion__item video,
  .collection-motion__final img {
    min-height: 420px;
  }
}

@keyframes strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% + 50vw));
  }
}

@keyframes chaos-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes chaos-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes chaos-pulse {
  0%,
  100% {
    opacity: 0.78;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.035;
  }
}

/* gallery */
.gallery-section {
  overflow: hidden;
  background: #ffe6ec;
}

.gallery-section__header {
  display: grid;
  gap: 8px;
  margin-bottom: 44px;
  text-align: center;
}

.gallery-section__header h2 {
  font-size: 5rem;
}

.moodboard {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.moodboard__item {
  position: relative;
  grid-column: span 3;
  min-height: 300px;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.9);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.moodboard__item--wide {
  grid-column: span 6;
}

.moodboard__item--portrait,
.moodboard__item--tall {
  grid-row: span 2;
  min-height: 520px;
}

.moodboard__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-paper);
  transition: transform 360ms ease;
}

.moodboard__item:hover img {
  transform: scale(1.035);
}

/* product detail */
.product-detail {
  overflow: hidden;
  background: #fff0df;
}

.product-detail::before {
  position: absolute;
  top: 4%;
  right: -160px;
  width: 650px;
  height: 650px;
  background: rgba(246, 173, 192, 0.32);
  clip-path: polygon(45% 0, 56% 18%, 78% 8%, 70% 34%, 98% 42%, 72% 54%, 86% 82%, 58% 70%, 44% 100%, 34% 70%, 4% 86%, 20% 56%, 0 38%, 28% 32%);
  content: "";
}

.product-detail__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.product-detail__media {
  position: sticky;
  top: 110px;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.product-detail__media img {
  width: min(470px, 94%);
  filter: drop-shadow(0 34px 48px rgba(67, 24, 43, 0.16));
}

.product-detail__intro h2 {
  font-size: 4.2rem;
}

.accordion-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.detail-panel {
  border-top: 2px solid rgba(31, 13, 25, 0.18);
  padding: 20px 0;
  color: var(--color-ink);
}

.detail-panel h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-panel p + p {
  margin-top: 10px;
}

.grape-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.grape-list li {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 248, 239, 0.62);
  color: var(--color-rose-deep);
  font-weight: 900;
}

/* cuvees */
.cuvees {
  background: #ffe6ec;
}

.cuvees__header {
  display: grid;
  gap: 8px;
  margin-bottom: 46px;
  text-align: center;
}

.cuvees__header h2 {
  font-size: 5rem;
}

.cuvee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cuvee-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 248, 239, 0.76);
  box-shadow: 0 14px 38px rgba(67, 24, 43, 0.08);
}

.cuvee-card img {
  width: 170px;
  height: 220px;
  object-fit: contain;
  border: 6px solid #fff;
  border-radius: var(--radius-small);
  background: #fff;
}

.cuvee-card h3,
.archive-product h3,
.purchase-panel h3,
.shop-prices h3 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 0.98;
}

.cuvee-card p:not(.product-tag) {
  margin: 10px 0;
  color: var(--color-muted);
}

.cuvee-card strong {
  color: var(--color-rose-deep);
}

.cuvee-card--future img {
  filter: saturate(0.82);
}

/* shop */
.shop-section {
  background:
    linear-gradient(180deg, #fff0df, #ffe2eb);
}

.shop-section__header {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-bottom: 54px;
  text-align: center;
}

.shop-section__header h2 {
  font-size: 5.8rem;
  text-transform: uppercase;
}

.shop-section__header p {
  color: var(--color-rose-deep);
  font-weight: 900;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.purchase-panel {
  overflow: hidden;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.84);
  box-shadow: var(--shadow-soft);
}

.purchase-panel__image {
  display: grid;
  min-height: 330px;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 240, 223, 0.92), rgba(255, 226, 232, 0.7));
}

.purchase-panel__image img {
  width: min(360px, 78%);
  filter: drop-shadow(0 30px 46px rgba(67, 24, 43, 0.18));
}

.purchase-panel__body {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.purchase-panel__description,
.archive-product p,
.shipping-note {
  color: var(--color-muted);
}

.purchase-panel__meta {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.purchase-panel__meta strong {
  color: var(--color-rose-deep);
  font-size: 1.45rem;
}

.purchase-panel__meta span {
  color: var(--color-muted);
  font-weight: 900;
}

.quantity-control {
  display: inline-grid;
  width: 156px;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
}

.quantity-control button,
.quantity-control input {
  width: 100%;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  text-align: center;
}

.quantity-control button {
  font-size: 1.2rem;
  font-weight: 900;
}

.quantity-control input {
  font-weight: 900;
  appearance: textfield;
}

.shop-prices {
  border-top: 2px solid rgba(31, 13, 25, 0.18);
  padding-top: 20px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 16px;
  border-bottom: 1px solid rgba(61, 24, 43, 0.12);
  padding: 0 0 12px;
}

.price-list span {
  font-weight: 900;
}

.price-list strong {
  color: var(--color-rose-deep);
}

.price-list small {
  grid-column: 1 / -1;
  color: var(--color-muted);
}

.shipping-note {
  margin-top: 24px;
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 248, 239, 0.62);
}

.product-archive {
  display: grid;
  gap: 16px;
  margin-top: 54px;
}

.archive-product {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(61, 24, 43, 0.16);
  padding: 18px 0;
}

.archive-product img {
  width: 130px;
  height: 160px;
  object-fit: contain;
  border: 6px solid rgba(255, 248, 239, 0.9);
  background: #fff;
}

.archive-product strong {
  color: var(--color-rose-deep);
}

/* boutique page */
.shop-hero {
  position: relative;
  overflow: hidden;
  min-height: 86svh;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 84% 24%, rgba(223, 61, 122, 0.22), transparent 34%),
    linear-gradient(110deg, #24111f, #5b2634 62%, #c86f64);
  color: var(--color-paper);
}

.shop-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.9fr);
  gap: 76px;
  align-items: center;
}

.shop-hero__copy {
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.shop-hero__copy .eyebrow {
  color: var(--color-blush);
}

.shop-hero__copy h1 {
  max-width: 720px;
  font-size: clamp(4.6rem, 9vw, 7rem);
  overflow-wrap: normal;
  word-break: normal;
}

.shop-hero__copy p:not(.eyebrow):not(.brand-mark) {
  max-width: 620px;
  color: rgba(255, 248, 239, 0.86);
  font-size: 1.15rem;
}

.shop-hero__visual {
  position: relative;
  min-height: 600px;
}

.shop-polaroid {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  animation: polaroid-float 8s ease-in-out infinite;
}

.shop-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-paper);
}

.shop-polaroid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.9);
  color: var(--color-prune);
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.shop-polaroid--heel {
  top: 0;
  left: 0;
  width: 58%;
  aspect-ratio: 1.08;
  transform: rotate(-5deg);
}

.shop-polaroid--ice {
  top: 118px;
  right: 0;
  width: 54%;
  aspect-ratio: 0.96;
  transform: rotate(4deg);
  animation-delay: 900ms;
}

.shop-polaroid--founders {
  right: 12%;
  bottom: 0;
  width: 64%;
  aspect-ratio: 1.26;
  transform: rotate(-1deg);
  animation-delay: 1800ms;
}

@keyframes polaroid-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

.shop-catalog {
  background: #ffe6ec;
}

.shop-catalog__header {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.shop-catalog__header h2 {
  font-size: 5.6rem;
}

.shop-catalog__header p {
  color: var(--color-muted);
}

.shop-catalog-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 248, 239, 0.86);
  box-shadow: var(--shadow-card);
}

.shop-sidebar h2 {
  font-size: 3.3rem;
}

.shop-sidebar__nav {
  display: grid;
  gap: 10px;
}

.shop-sidebar__nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: var(--radius-small);
  padding: 12px;
  background: rgba(255, 255, 255, 0.52);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shop-sidebar__nav a:hover,
.shop-sidebar__nav a:focus-visible,
.shop-sidebar__nav a.is-active {
  border-color: rgba(223, 61, 122, 0.32);
  background: #fff;
  transform: translateX(3px);
}

.shop-sidebar__nav span,
.shop-sidebar__nav strong {
  color: var(--color-ink);
  font-weight: 900;
}

.shop-sidebar__nav small {
  grid-column: 1 / -1;
  color: var(--color-muted);
}

.shop-sidebar__delivery {
  display: grid;
  gap: 7px;
  border-top: 1px solid rgba(61, 24, 43, 0.12);
  padding-top: 16px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.shop-sidebar__delivery strong {
  color: var(--color-rose-deep);
}

.shop-sidebar__delivery span {
  display: grid;
  gap: 3px;
}

.shop-sidebar__delivery span strong {
  color: var(--color-rose-deep);
  font-size: 0.9rem;
}

.shop-sidebar__delivery span small {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.shop-catalog__main {
  min-width: 0;
}

.product-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-shop-grid--list {
  grid-template-columns: 1fr;
}

.product-buy-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 248, 239, 0.78);
  box-shadow: 0 14px 38px rgba(67, 24, 43, 0.08);
  scroll-margin-top: 100px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-buy-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.product-buy-card--featured {
  grid-column: auto;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 0.75fr);
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.9), rgba(255, 228, 236, 0.9));
}

.product-buy-card--split {
  grid-template-columns: 190px minmax(0, 1fr);
}

.product-buy-card__image {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: linear-gradient(160deg, rgba(255, 240, 223, 0.92), rgba(255, 226, 232, 0.8));
}

.product-buy-card__image img {
  width: min(260px, 86%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(67, 24, 43, 0.16));
}

.product-buy-card__body {
  display: grid;
  gap: 14px;
}

.product-buy-card__body h3 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.98;
}

.product-buy-card__body p:not(.product-tag) {
  color: var(--color-muted);
}

.product-buy-card__deal {
  color: var(--color-rose-deep) !important;
  font-weight: 900;
}

.carton-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(173, 37, 91, 0.18);
  border-radius: var(--radius-small);
  padding: 12px;
  background: rgba(255, 255, 255, 0.64);
}

.carton-offer__copy {
  display: grid;
  gap: 3px;
}

.carton-offer__copy span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carton-offer__copy strong {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 950;
}

.carton-offer__copy small {
  color: var(--color-rose-deep);
  font-weight: 900;
}

.rr-carton-form {
  margin: 0;
}

.rr-carton-form .button {
  width: max-content;
  white-space: nowrap;
}

.product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-attributes li {
  border: 1px solid rgba(173, 37, 91, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-rose-deep);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-band {
  background:
    linear-gradient(135deg, rgba(255, 240, 223, 0.96), rgba(255, 228, 236, 0.9)),
    url("../media/brand-logo-lips.jpg") right center / contain no-repeat;
}

.checkout-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.checkout-band__copy {
  position: sticky;
  top: 110px;
}

.checkout-band__copy h2 {
  font-size: 4.8rem;
}

.checkout-band__copy p:last-child {
  margin-top: 18px;
  color: var(--color-rose-deep);
  font-weight: 900;
}

.checkout-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-card {
  min-height: 190px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 248, 239, 0.78);
  box-shadow: 0 14px 38px rgba(67, 24, 43, 0.08);
}

.checkout-card h3 {
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.checkout-card p {
  margin-top: 16px;
  color: var(--color-muted);
}

/* cart and account */
.checkout-hero {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 86px) 0 76px;
  color: var(--color-paper);
}

.checkout-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.checkout-hero--account img {
  object-position: center 38%;
}

.checkout-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 13, 25, 0.78), rgba(31, 13, 25, 0.28) 54%, rgba(31, 13, 25, 0.66)),
    linear-gradient(180deg, rgba(31, 13, 25, 0.3), rgba(31, 13, 25, 0.82));
}

.checkout-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 880px;
  gap: 16px;
}

.checkout-hero__content h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 9vw, 8.4rem);
  line-height: 0.88;
}

.checkout-hero__content p:last-child {
  max-width: 660px;
  color: rgba(255, 248, 239, 0.88);
  font-size: 1.22rem;
}

.cart-page,
.account-page {
  min-height: 70svh;
  background:
    linear-gradient(135deg, rgba(255, 240, 223, 0.98), rgba(255, 228, 236, 0.92));
}

.cart-page__header {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-bottom: 44px;
}

.cart-page__header h1,
.cart-page__header h2,
.account-intro h1,
.account-intro h2 {
  font-size: clamp(4.2rem, 8vw, 7rem);
}

.cart-page__header p,
.account-intro p,
.account-help p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.cart-items-panel,
.cart-summary,
.account-help,
.order-dashboard {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow-card);
}

.cart-items-panel {
  min-height: 380px;
  padding: 18px;
}

.cart-empty {
  display: grid;
  min-height: 340px;
  place-content: center;
  gap: 16px;
  text-align: center;
}

.cart-empty h2,
.cart-summary h2,
.account-help h2,
.order-dashboard h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(61, 24, 43, 0.12);
  padding: 0 0 14px;
}

.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item img {
  width: 126px;
  height: 150px;
  object-fit: contain;
  border-radius: var(--radius-small);
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

.cart-item h3 {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.cart-item__body p:not(.product-tag),
.cart-item__remove,
.cart-item__actions small {
  color: var(--color-muted);
}

.cart-item.has-promo {
  border-color: rgba(205, 67, 105, 0.2);
}

.cart-item__deal {
  margin-top: 8px;
  color: var(--color-rose-deep) !important;
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-item__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cart-item__actions .quantity-control {
  width: 132px;
  grid-template-columns: 36px 1fr 36px;
}

.cart-item__remove {
  border: 0;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
}

.cart-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  padding: 24px;
}

.cart-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-steps li {
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.cart-steps li.is-active,
.cart-steps li.is-complete {
  border-color: rgba(205, 67, 105, 0.28);
  background: rgba(205, 67, 105, 0.12);
  color: var(--color-rose-deep);
}

.cart-promo-panel {
  margin-top: 18px;
  border: 1px solid rgba(205, 67, 105, 0.18);
  border-radius: var(--radius-small);
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.cart-promo-panel h3,
.checkout-step h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.cart-promo-panel ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
}

.cart-total-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.cart-total-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(61, 24, 43, 0.1);
  padding-bottom: 10px;
}

.cart-total-list div:last-child {
  border-bottom: 0;
  color: var(--color-rose-deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.cart-total-list dd {
  margin: 0;
  font-weight: 900;
}

.shipping-options,
.checkout-form {
  display: grid;
  gap: 12px;
  border: 0;
  margin: 0;
  padding: 0;
}

.shipping-options legend {
  margin-bottom: 4px;
  color: var(--color-rose-deep);
  font-weight: 900;
}

.shipping-options label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius-small);
  padding: 11px;
  background: rgba(255, 255, 255, 0.58);
}

.shipping-options strong {
  color: var(--color-rose-deep);
}

.rr-shipping-delay {
  grid-column: 2 / -1;
  display: block;
  margin-top: -2px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

#shipping_method .rr-shipping-delay,
.woocommerce-shipping-methods .rr-shipping-delay {
  margin-top: 5px;
  padding-left: 0;
}

.checkout-form label {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-form input {
  width: 100%;
  border: 1px solid rgba(61, 24, 43, 0.16);
  border-radius: var(--radius-small);
  background: #fff;
  padding: 13px 14px;
}

.checkout-step {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: var(--radius-small);
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.checkout-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.checkout-step.is-locked {
  display: none;
}

.checkout-step.is-complete {
  background: rgba(255, 255, 255, 0.34);
}

.checkout-step.is-complete > .button {
  display: none;
}

.checkout-step .button {
  width: 100%;
}

.form-status {
  min-height: 1.4em;
  color: var(--color-rose-deep);
  font-weight: 800;
}

.account-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 28px;
  align-items: start;
}

.account-intro {
  display: grid;
  gap: 18px;
}

.account-help {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.account-help a {
  color: var(--color-rose-deep);
  font-weight: 900;
}

.order-dashboard {
  margin-top: 42px;
  padding: 24px;
}

.order-dashboard__header {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.orders-empty {
  color: var(--color-muted);
}

.orders-list {
  display: grid;
  gap: 14px;
}

.order-card {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius-small);
  padding: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.order-card__head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.order-card h3 {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 500;
}

.order-card strong {
  color: var(--color-rose-deep);
}

.order-card p,
.order-card li {
  color: var(--color-muted);
}

.order-card ul {
  display: grid;
  gap: 4px;
  margin: 14px 0 0;
  padding-left: 18px;
}

/* contact */
.contact-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(207, 111, 114, 0.24), transparent 34%),
    linear-gradient(135deg, #fff8ef, #ffe0d3 56%, #f6a19a);
  color: var(--color-prune);
}

.contact-section .eyebrow {
  color: var(--color-rose-deep);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 80px;
  align-items: start;
}

.contact-section__content,
.contact-form {
  min-width: 0;
}

.contact-section__content > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 24px;
  color: #5d2d3d;
  font-size: 1.1rem;
}

.contact-logo {
  display: block;
  width: min(560px, 100%);
  margin-top: 6px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius-small);
  background: rgba(255, 248, 239, 0.9);
  box-shadow: 0 24px 70px rgba(67, 24, 43, 0.14);
  padding: clamp(14px, 2vw, 22px);
}

address {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  font-style: normal;
}

address a {
  color: var(--color-rose-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 248, 239, 0.86);
  box-shadow: 0 24px 70px rgba(67, 24, 43, 0.12);
}

.newsletter-title {
  margin-bottom: 8px;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
}

.contact-form label {
  color: var(--color-rose-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(61, 24, 43, 0.14);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-blush);
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: #5d2d3d;
  font-size: 0.9rem;
}

.contact-section .button--glass {
  border-color: rgba(61, 24, 43, 0.18);
  background: rgba(255, 248, 239, 0.58);
  color: var(--color-prune);
}

/* footer */
.site-footer {
  padding: 58px 0 30px;
  background: var(--color-logo-salmon);
  color: rgba(255, 248, 239, 0.82);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.85fr 0.85fr;
  gap: 32px;
}

.site-logo--footer {
  display: inline-block;
  margin-bottom: 16px;
  color: #fff;
}

.site-logo--footer-image {
  width: min(320px, 76vw);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: 8px;
  background: #1f0d19;
  box-shadow: 0 22px 54px rgba(31, 13, 25, 0.18);
}

.site-logo--footer-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  filter: none;
}

.footer-contact-line {
  margin-top: 12px;
  color: var(--color-blush);
  font-weight: 900;
}

.footer-contact-line + .footer-contact-line {
  margin-top: 4px;
}

.footer-contact-line a {
  color: inherit;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer__grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-blush);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.86rem;
}

.site-footer__credit {
  color: rgba(255, 248, 239, 0.92);
  font-weight: 800;
}

.site-footer__credit a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 248, 239, 0.48);
  text-underline-offset: 4px;
}

/* age popup */
.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(31, 13, 25, 0.38), rgba(31, 13, 25, 0.52)),
    rgba(31, 13, 25, 0.22);
  backdrop-filter: blur(6px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.9), rgba(255, 228, 236, 0.86)),
    url("../media/brand-logo-lips.jpg") center / contain no-repeat;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  padding: 42px;
  text-align: center;
}

.age-gate__panel h2 {
  font-size: 4rem;
}

.age-gate__text {
  margin: 18px auto 26px;
  color: var(--color-muted);
}

.age-gate__remember {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.age-gate__remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-rose);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.age-gate__denied {
  margin-top: 18px;
  color: var(--color-rose-deep);
  font-weight: 800;
}

/* toast and animations */
.site-toast {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  max-width: min(340px, calc(100% - 36px));
  border-radius: 999px;
  background: var(--color-prune);
  color: #fff;
  box-shadow: var(--shadow-soft);
  padding: 12px 18px;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-shop-cta {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-rose);
  color: #fff;
  box-shadow: 0 18px 42px rgba(173, 37, 91, 0.28);
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-shop-cta:hover,
.floating-shop-cta:focus-visible {
  background: var(--color-rose-deep);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* responsive */
@media (max-width: 1120px) {
  h1 {
    font-size: 7rem;
  }

  h2,
  .shop-section__header h2 {
    font-size: 5rem;
  }

  .site-nav {
    gap: 18px;
  }

  .moodboard__item {
    grid-column: span 4;
  }

  .moodboard__item--wide {
    grid-column: span 8;
  }

  .collection__grid,
  .cuvee-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection__label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  :root {
    --section-space: 86px;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2,
  .world-story__copy h2,
  .gallery-section__header h2,
  .cuvees__header h2,
  .shop-section__header h2 {
    font-size: 4.2rem;
  }

  .header-bar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-logo {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: rgba(255, 248, 239, 0.98);
    box-shadow: var(--shadow-card);
    color: var(--color-ink);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(61, 24, 43, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .buy-link {
    display: none;
  }

  .manifesto__grid,
  .chaos-wall__grid,
  .world-story,
  .winemaker,
  .collection__grid,
  .pink-manifesto__grid,
  .product-detail__grid,
  .shop-layout,
  .shop-hero__grid,
  .shop-catalog-layout,
  .checkout-band__grid,
  .cart-layout,
  .account-page__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .manifesto__visual {
    min-height: 540px;
    order: -1;
  }

  .chaos-wall {
    padding-bottom: 86px;
  }

  .chaos-wall__grid {
    min-height: auto;
  }

  .chaos-stack {
    min-height: 650px;
    order: -1;
  }

  .hero-chaos__poster--logo {
    right: -2%;
    width: min(260px, 32vw);
  }

  .hero-chaos__poster--banner {
    right: -12%;
    width: min(560px, 56vw);
  }

  .hero-chaos__poster--rebellion {
    width: min(350px, 36vw);
  }

  .hero-chaos__poster--bottle {
    right: 10%;
    width: min(220px, 22vw);
  }

  .collection__label {
    grid-column: auto;
  }

  .collection__media,
  .product-detail__media {
    min-height: 460px;
  }

  .product-detail__media {
    position: static;
  }

  .moodboard__item,
  .moodboard__item--wide {
    grid-column: span 6;
  }

  .pdf-extract,
  .pdf-extract--wide {
    grid-column: span 6;
  }

  .hit-ribbon__inner {
    grid-template-columns: minmax(110px, 0.2fr) minmax(0, 1fr) minmax(130px, 0.24fr);
  }

  .hit-ribbon__banner {
    width: 100%;
  }

  .hit-ribbon__poster {
    width: min(170px, 100%);
  }

  .hit-ribbon__shoe {
    width: min(260px, 100%);
  }

  .site-footer__grid,
  .cuvee-grid,
  .product-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cuvee-card,
  .product-buy-card,
  .product-buy-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .cuvee-card img,
  .product-buy-card__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.9;
  }

  .shop-hero__visual {
    min-height: 560px;
    order: -1;
  }

  .shop-sidebar,
  .home-shop__sidebar,
  .cart-summary {
    position: static;
  }

  .product-shop-grid--list {
    grid-template-columns: 1fr;
  }

  .checkout-band__copy {
    position: static;
  }

  .checkout-hero {
    min-height: 52svh;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 60px;
  }

  .container {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 4.2rem;
  }

  h2,
  .world-story__copy h2,
  .gallery-section__header h2,
  .cuvees__header h2,
  .shop-section__header h2,
  .product-detail__intro h2 {
    font-size: 3.1rem;
  }

  .brand-mark {
    font-size: 2rem;
  }

  .site-header {
    padding: 10px 0;
  }

  .site-logo {
    font-size: 1.28rem;
  }

  .site-logo--image {
    width: 112px;
  }

  .site-logo--image img {
    max-height: 42px;
  }

  .cart-button,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-video {
    padding-top: 112px;
    padding-bottom: 70px;
  }

  .hero-video--chaos {
    align-items: start;
    min-height: 100svh;
    padding-top: clamp(236px, 64vw, 330px);
    padding-bottom: 44px;
  }

  .hero-video__backdrop {
    filter: saturate(1.08);
    opacity: 0.4;
  }

  .hero-video__media,
  .hero-video__fallback {
    object-position: center top;
    padding: 0;
  }

  .hero-video--chaos .hero-video__media,
  .hero-video--chaos .hero-video__fallback {
    object-position: center top;
    padding: 0;
  }

  .hero-video--chaos .hero-video__content {
    max-width: calc(100% - 14px);
    padding: 18px 0 18px 18px;
  }

  .hero-video--chaos h1 {
    font-size: 2.85rem;
  }

  .hero-chaos__poster {
    border-width: 4px;
  }

  .hero-chaos__poster--logo {
    top: 12%;
    right: -18%;
    width: 54vw;
  }

  .hero-chaos__poster--banner {
    right: -38%;
    bottom: 21%;
    width: 92vw;
  }

  .hero-chaos__poster--rebellion {
    top: 40%;
    left: -32%;
    width: 66vw;
  }

  .hero-chaos__poster--bottle {
    right: -4%;
    bottom: 8%;
    width: 34vw;
  }

  .hero-chaos__word--one {
    top: 24%;
    left: -8%;
  }

  .hero-chaos__word--two {
    right: -28%;
    bottom: 38%;
  }

  .hero-chaos__word--three {
    left: 28%;
    bottom: 16%;
  }

  .hero-video__overlay {
    background:
      linear-gradient(180deg, rgba(31, 13, 25, 0.7), rgba(31, 13, 25, 0.28) 50%, rgba(31, 13, 25, 0.78));
  }

  .hero-video__lead {
    margin: 20px 0 26px;
    font-size: 1.06rem;
  }

  .button-row,
  .age-gate__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .hit-ribbon {
    padding: 24px 0 28px;
  }

  .hit-ribbon__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hit-ribbon__banner {
    width: 100%;
    transform: none;
  }

  .hit-ribbon__side {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }

  .hit-ribbon__side--left {
    order: -1;
  }

  .hit-ribbon__side--right {
    justify-content: space-between;
  }

  .hit-ribbon__side span {
    font-size: 2.5rem;
  }

  .hit-ribbon__poster,
  .hit-ribbon__shoe {
    width: min(46%, 210px);
  }

  .hit-ribbon__cta {
    min-width: 154px;
  }

  .manifesto__visual {
    min-height: 440px;
  }

  .chaos-wall {
    padding-bottom: 58px;
  }

  .chaos-wall__grid {
    gap: 28px;
    padding-top: 44px;
  }

  .chaos-wall__copy {
    transform: none;
  }

  .chaos-stack {
    min-height: 560px;
  }

  .chaos-stack__item {
    border-width: 5px;
  }

  .chaos-stack__item--main {
    right: 4%;
    width: 84%;
  }

  .chaos-stack__item--type {
    top: 30%;
    width: 62%;
  }

  .chaos-stack__item--banner {
    bottom: 9%;
    width: 100%;
  }

  .chaos-stack__item--logo {
    top: 6%;
    left: 8%;
    width: 48%;
  }

  .manifesto__lead {
    font-size: 2rem !important;
  }

  .poster-card {
    border-width: 6px;
  }

  .poster-card--large {
    width: 88%;
  }

  .poster-card--small {
    width: 72%;
  }

  .poster-card--stamp {
    right: 0;
    width: 58%;
  }

  .world-story__image,
  .poster-card--large,
  .poster-card--small,
  .poster-card--stamp {
    transform: none;
  }

  .winemaker h3,
  .cuvee-card h3,
  .archive-product h3,
  .purchase-panel h3,
  .shop-prices h3 {
    font-size: 2.2rem;
  }

  .collection__label h2 {
    font-size: 2.8rem;
  }

  .collection__media {
    min-height: 430px;
  }

  .pink-manifesto {
    padding: 78px 0;
  }

  .pink-manifesto h2 {
    font-size: 2.9rem;
  }

  .moodboard {
    grid-template-columns: 1fr;
  }

  .pdf-extracts {
    padding: 58px 0 66px;
  }

  .pdf-extracts__grid {
    grid-template-columns: 1fr;
  }

  .pdf-extract,
  .pdf-extract--wide {
    grid-column: 1;
    transform: none;
  }

  .pdf-extract img {
    min-height: 0;
  }

  .moodboard__item,
  .moodboard__item--wide,
  .moodboard__item--portrait,
  .moodboard__item--tall {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 0.86;
  }

  .moodboard__item--wide {
    aspect-ratio: 1;
  }

  .product-detail::before {
    right: -260px;
  }

  .grape-list {
    display: grid;
  }

  .cuvee-grid,
  .product-shop-grid,
  .checkout-cards,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    min-height: auto;
    padding: 112px 0 68px;
  }

  .checkout-hero {
    min-height: 62svh;
    padding: 112px 0 58px;
  }

  .checkout-hero img {
    transform: none;
  }

  .checkout-hero__content h1 {
    font-size: 4rem;
  }

  .checkout-hero__content p:last-child {
    font-size: 1rem;
  }

  .shop-hero__copy h1 {
    font-size: 3.6rem;
  }

  .shop-hero__visual {
    min-height: 430px;
  }

  .floating-shop-cta {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 10px 16px;
  }

  .shop-polaroid {
    border-width: 6px;
  }

  .shop-polaroid--heel {
    width: 68%;
    transform: none;
  }

  .shop-polaroid--ice {
    top: 120px;
    width: 62%;
    transform: none;
  }

  .shop-polaroid--founders {
    right: 3%;
    width: 76%;
    transform: none;
  }

  .shop-catalog__header h2,
  .checkout-band__copy h2 {
    font-size: 3.1rem;
  }

  .product-buy-card {
    padding: 14px;
  }

  .home-shop__grid {
    grid-template-columns: 1fr;
  }

  .home-wine {
    grid-template-columns: 1fr;
  }

  .home-wine img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .visual-strip img {
    height: 240px;
  }

  .product-buy-card__image {
    min-height: 260px;
  }

  .product-buy-card__body h3,
  .checkout-card h3 {
    font-size: 2.25rem;
  }

  .cart-page,
  .account-page {
    padding-top: var(--section-space);
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .cart-item__actions {
    justify-items: stretch;
  }

  .cart-item__actions .quantity-control {
    width: 100%;
  }

  .shipping-options label {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .shipping-options strong {
    grid-column: 2;
  }

  .purchase-panel__body,
  .contact-form,
  .age-gate__panel {
    padding: 22px;
  }

  .purchase-panel__image {
    min-height: 280px;
  }

  .quantity-control {
    width: 100%;
  }

  .price-list article {
    grid-template-columns: 1fr;
  }

  .archive-product {
    grid-template-columns: 1fr;
  }

  .archive-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.9;
  }

  .archive-product .button {
    width: fit-content;
  }

  .contact-section h2,
  .newsletter-title,
  address a {
    overflow-wrap: anywhere;
  }

  .contact-section h2 {
    font-size: 2.8rem;
  }

  .site-footer__bottom {
    display: grid;
  }

  .age-gate__panel h2 {
    font-size: 3rem;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 3.55rem;
  }

  h2,
  .world-story__copy h2,
  .gallery-section__header h2,
  .cuvees__header h2,
  .shop-section__header h2,
  .product-detail__intro h2 {
    font-size: 2.65rem;
  }

  .pink-manifesto h2 {
    font-size: 2.5rem;
  }
}

/* collections page */
.collections-hero {
  position: relative;
  overflow: hidden;
  padding: 146px 0 94px;
  background:
    linear-gradient(120deg, var(--color-logo-salmon-deep), var(--color-logo-salmon) 58%, #ffd1bd),
    var(--color-logo-salmon);
  color: var(--color-paper);
}

.collections-hero::before {
  position: absolute;
  inset: auto -8vw -10vw auto;
  width: 54vw;
  height: 22vw;
  background: url("../media/new-pink-hit-banner-fast.jpg") center / contain no-repeat;
  content: "";
  opacity: 0.16;
  transform: rotate(-4deg);
}

.collections-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.collections-hero__copy {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.collections-hero__copy h1 {
  font-size: clamp(4.2rem, 8vw, 7.8rem);
}

.collections-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 248, 239, 0.84);
  font-size: 1.18rem;
  font-weight: 650;
}

.collections-hero__visual {
  position: relative;
  min-height: 590px;
}

.collections-poster {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.94);
  background: var(--color-paper);
  box-shadow: 0 24px 70px rgba(31, 13, 25, 0.28);
}

.collections-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff1e4;
}

.collections-poster--main {
  top: 0;
  right: 3%;
  width: min(430px, 76%);
  aspect-ratio: 0.75;
  transform: rotate(2deg);
}

.collections-poster--logo {
  top: 12%;
  left: 0;
  z-index: 2;
  width: min(260px, 42%);
  aspect-ratio: 2.3;
  transform: rotate(-6deg);
}

.collections-poster--hit {
  right: 0;
  bottom: 6%;
  z-index: 3;
  width: min(520px, 86%);
  aspect-ratio: 3.2;
  transform: rotate(-2deg);
}

.collections-hero__visual--single {
  display: grid;
  min-height: 0;
  place-items: center;
}

.collections-poster--rebellion-square {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1;
  transform: rotate(-1.2deg);
}

.collections-poster--rebellion-square img {
  object-fit: cover;
}

.collection-motion {
  overflow: hidden;
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 47, 134, 0.18), transparent 28%),
    linear-gradient(135deg, #fff8ef, #ffe1d6 48%, rgba(207, 111, 114, 0.38));
}

.collection-motion__header {
  display: grid;
  max-width: 860px;
  gap: 12px;
  margin-bottom: 28px;
}

.collection-motion__header h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.collection-motion__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.collection-motion__item,
.collection-motion__final {
  overflow: hidden;
  border: 7px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.collection-motion__item {
  display: grid;
  grid-template-rows: 1fr auto;
}

.collection-motion__item video,
.collection-motion__final img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  background: var(--color-paper);
}

.collection-motion__item p {
  background: var(--color-paper);
  color: var(--color-prune);
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .collection-motion__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .collection-motion__grid {
    grid-template-columns: 1fr;
  }

  .collection-motion__item video,
  .collection-motion__final img {
    min-height: 420px;
  }
}

.collection-wine {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background: var(--color-paper);
}

.collection-wine--pink {
  background:
    linear-gradient(135deg, rgba(255, 228, 236, 0.96), rgba(255, 248, 239, 0.94)),
    var(--color-powder);
}

.collection-wine--white {
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.98), rgba(255, 240, 223, 0.9)),
    var(--color-cream);
}

.collection-wine__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.collection-wine__grid--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
}

.collection-wine__grid--reverse .collection-wine__bottle {
  order: 2;
}

.collection-wine__bottle {
  display: grid;
  min-height: 620px;
  place-items: center;
  border: 1px solid rgba(61, 24, 43, 0.12);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(160deg, rgba(255, 228, 236, 0.72), rgba(255, 248, 239, 0.96));
  box-shadow: var(--shadow-card);
}

.collection-wine__bottle img {
  width: min(330px, 82%);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 34px 52px rgba(67, 24, 43, 0.2));
}

.collection-wine__copy {
  display: grid;
  gap: 18px;
  max-width: 830px;
}

.collection-wine__copy h2,
.collections-world__copy h2 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.collection-wine__lead {
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.02;
}

.collection-wine__copy p:not(.eyebrow):not(.collection-wine__lead),
.collections-world__copy p:not(.eyebrow) {
  color: var(--color-muted);
  font-weight: 700;
}

.collection-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.collection-facts article {
  border: 1px solid rgba(61, 24, 43, 0.12);
  background: rgba(255, 255, 255, 0.58);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.07);
}

.collection-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-rose-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-facts p {
  color: var(--color-ink) !important;
  font-size: 0.94rem;
  font-weight: 750 !important;
}

.collections-hero--compact {
  padding: 128px 0 72px;
}

.collections-hero--compact .collections-hero__visual {
  min-height: 470px;
}

.collections-compact {
  background:
    linear-gradient(135deg, rgba(255, 228, 236, 0.96), rgba(255, 248, 239, 0.98)),
    var(--color-paper);
}

.collections-compact__header {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-bottom: 34px;
}

.collections-compact__header h2 {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

.collections-compact__header p {
  color: var(--color-muted);
  font-weight: 800;
}

.collections-compact__grid {
  display: grid;
  gap: 18px;
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  border: 1px solid rgba(61, 24, 43, 0.12);
  background: rgba(255, 248, 239, 0.86);
  box-shadow: var(--shadow-card);
}

.collection-card--pink {
  background: rgba(255, 229, 237, 0.9);
}

.collection-card--white {
  background: rgba(255, 252, 244, 0.92);
}

.collection-card figure {
  display: grid;
  min-height: 360px;
  margin: 0;
  place-items: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(160deg, rgba(255, 228, 236, 0.82), rgba(255, 248, 239, 0.96));
}

.collection-card figure img {
  width: min(260px, 80%);
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(67, 24, 43, 0.18));
}

.collection-card__motion {
  position: relative;
  overflow: hidden;
  background: var(--color-logo-salmon);
}

.collection-card__motion::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(31, 13, 25, 0.24)),
    radial-gradient(circle at 18% 16%, rgba(255, 248, 239, 0.22), transparent 32%);
  content: "";
  pointer-events: none;
}

.collection-card__motion video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.collection-card__body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.collection-card__body h3 {
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.collection-card__body > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--color-muted);
  font-weight: 750;
}

.collection-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 4px;
}

.collection-card__facts div {
  border-top: 2px solid rgba(61, 24, 43, 0.12);
  padding-top: 12px;
}

.collection-card__facts dt {
  color: var(--color-rose-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-card__facts dd {
  margin: 7px 0 0;
  color: var(--color-ink);
  font-weight: 850;
}

.collections-world {
  padding: 104px 0;
  background:
    linear-gradient(90deg, var(--color-logo-salmon-deep), var(--color-logo-salmon)),
    var(--color-logo-salmon);
  color: var(--color-paper);
}

.collections-world__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(380px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.collections-world--image-only {
  padding: 86px 0;
}

.collections-world--image-only .collections-world__grid {
  display: block;
}

.collections-world--image-only .collections-world__rebellion {
  width: min(860px, 100%);
  margin: 0 auto;
  transform: rotate(-1deg);
}

.collections-world__copy {
  display: grid;
  gap: 18px;
}

.collections-world__copy p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.8);
}

.collections-world__final {
  color: var(--color-blush) !important;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1;
}

.collections-world__images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.collections-world__images img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  border: 7px solid rgba(255, 248, 239, 0.92);
  box-shadow: 0 20px 54px rgba(31, 13, 25, 0.24);
}

.collections-world__images img:first-child {
  grid-column: span 6;
  aspect-ratio: 1.72;
}

.collections-world__images img:nth-child(2),
.collections-world__images img:nth-child(3) {
  grid-column: span 3;
  aspect-ratio: 0.95;
}

.collections-world__rebellion {
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.92);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  box-shadow: 0 20px 54px rgba(31, 13, 25, 0.24);
  transform: rotate(1.4deg);
}

.collections-world__rebellion img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.rr-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.woo-shop-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 92px;
  background:
    linear-gradient(120deg, var(--color-logo-salmon-deep) 0 30%, var(--color-logo-salmon) 64%, #ffd1bd 100%),
    var(--color-logo-salmon);
  color: var(--color-paper);
}

.woo-shop-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.9fr);
  gap: 74px;
  align-items: center;
}

.woo-shop-hero__copy {
  display: grid;
  gap: 20px;
  max-width: 780px;
}

.woo-shop-hero__copy h1 {
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  overflow-wrap: normal;
  word-break: normal;
}

.woo-shop-hero__copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 239, 0.84);
  font-size: 1.12rem;
  font-weight: 700;
}

.woo-shop-hero__images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.woo-shop-hero__images img {
  width: 100%;
  min-height: 220px;
  object-fit: contain;
  border: 7px solid rgba(255, 248, 239, 0.94);
  background: #fff1e4;
  box-shadow: 0 22px 58px rgba(31, 13, 25, 0.24);
}

.woo-shop-hero__images img:first-child {
  grid-column: span 6;
  aspect-ratio: 3.1;
  transform: rotate(-1deg);
}

.woo-shop-hero__images img:nth-child(2),
.woo-shop-hero__images img:nth-child(3) {
  grid-column: span 3;
  aspect-ratio: 0.92;
}

.woo-shop-products {
  background:
    linear-gradient(135deg, rgba(255, 228, 236, 0.98), rgba(255, 248, 239, 0.94)),
    var(--color-powder);
}

.woo-shop-products--direct {
  padding-top: clamp(118px, 12vw, 154px);
}

.woo-shop-products__header {
  display: grid;
  max-width: 820px;
  gap: 12px;
  margin-bottom: 42px;
}

.woo-shop-products__header h2 {
  font-size: clamp(3.6rem, 7vw, 6rem);
}

.woo-shop-products__header p:not(.eyebrow) {
  color: var(--color-muted);
  font-weight: 800;
}

.woo-shop-products__catalog .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

body.rose-rose-shop-page .woocommerce ul.products::before,
body.rose-rose-shop-page .woocommerce ul.products::after {
  content: none;
}

body.rose-rose-shop-page .woocommerce ul.products li.product {
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(61, 24, 43, 0.12);
  background: rgba(255, 248, 239, 0.92);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

body.rose-rose-shop-page .woocommerce ul.products li.product a img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  margin: 0 0 18px;
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

body.rose-rose-shop-page .woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.2em;
  padding: 0;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1;
}

body.rose-rose-shop-page .woocommerce ul.products li.product .price {
  display: block;
  margin: 10px 0 14px;
  color: var(--color-rose-deep);
  font-size: 1.02rem;
  font-weight: 950;
}

body.rose-rose-shop-page .woocommerce ul.products li.product .button {
  width: 100%;
  white-space: normal;
}

body.rose-rose-shop-page.post-type-archive-product main.wp-block-group {
  max-width: none !important;
  padding: 138px 0 92px !important;
  background:
    linear-gradient(120deg, var(--color-logo-salmon-deep) 0 32%, var(--color-logo-salmon) 68%, #ffd1bd 100%),
    var(--color-logo-salmon);
}

body.rose-rose-shop-page.post-type-archive-product .wp-block-breadcrumbs,
body.rose-rose-shop-page.post-type-archive-product .wp-block-query-title,
body.rose-rose-shop-page.post-type-archive-product .wc-block-store-notices,
body.rose-rose-shop-page.post-type-archive-product .wp-block-woocommerce-product-results-count,
body.rose-rose-shop-page.post-type-archive-product .wp-block-woocommerce-catalog-sorting,
body.rose-rose-shop-page.post-type-archive-product .wp-block-woocommerce-product-collection {
  width: min(var(--container), calc(100% - 40px));
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.rose-rose-shop-page.post-type-archive-product .wp-block-breadcrumbs {
  color: rgba(255, 248, 239, 0.78);
}

body.rose-rose-shop-page.post-type-archive-product .wp-block-query-title {
  margin-top: 54px !important;
  margin-bottom: 22px !important;
  color: var(--color-paper);
  font-family: var(--font-title);
  font-size: clamp(4.8rem, 10vw, 8rem);
  font-weight: 500;
}

body.rose-rose-shop-page.post-type-archive-product .wp-block-query-title::after {
  display: block;
  max-width: 660px;
  margin-top: 16px;
  color: rgba(255, 248, 239, 0.8);
  content: "La boutique officielle Rose & Rose : choisissez vos vins, ajoutez au panier, puis finalisez livraison et paiement.";
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
}

body.rose-rose-shop-page.post-type-archive-product .wp-block-group.alignwide {
  width: min(var(--container), calc(100% - 40px));
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  color: rgba(255, 248, 239, 0.76);
}

body.rose-rose-shop-page.post-type-archive-product .wp-block-woocommerce-product-collection {
  margin-top: 38px !important;
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-product-template > li {
  width: auto !important;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 248, 239, 0.92);
  padding: 18px;
  box-shadow: 0 22px 60px rgba(31, 13, 25, 0.22);
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-components-product-image {
  display: grid;
  min-height: 320px;
  place-items: center;
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-components-product-image img {
  width: min(260px, 86%) !important;
  height: min(300px, 72vw) !important;
  object-fit: contain !important;
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-product .wp-block-post-title {
  display: block;
  margin: 18px 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1;
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-product .wp-block-post-title a {
  color: var(--color-ink);
  text-decoration: none;
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-components-product-price {
  color: var(--color-rose-deep);
  font-weight: 900;
}

body.rose-rose-shop-page.post-type-archive-product .wc-block-components-product-button__button {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: var(--color-rose) !important;
  color: var(--color-paper) !important;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .collections-hero__grid,
  .collection-wine__grid,
  .collection-wine__grid--reverse,
  .collection-card,
  .collections-world__grid,
  .woo-shop-hero__grid {
    grid-template-columns: 1fr;
  }

  .collection-wine__grid--reverse .collection-wine__bottle {
    order: 0;
  }

  .collections-hero__visual {
    min-height: 520px;
    order: -1;
  }

  .collections-hero__visual--single {
    min-height: 0;
  }

  .collection-facts {
    grid-template-columns: 1fr;
  }

  .collection-card__facts {
    grid-template-columns: 1fr;
  }

  body.rose-rose-shop-page.post-type-archive-product .wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .woo-shop-products__catalog .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collections-hero {
    padding: 112px 0 62px;
  }

  .collections-hero__visual {
    min-height: 430px;
  }

  .collections-hero__visual--single {
    min-height: 0;
  }

  .collections-poster {
    border-width: 6px;
  }

  .collections-poster--main {
    right: 0;
    width: 78%;
  }

  .collections-poster--logo {
    top: 4%;
    width: 48%;
  }

  .collections-poster--hit {
    width: 94%;
  }

  .collection-wine {
    padding: 70px 0;
  }

  .collections-compact {
    padding: 64px 0;
  }

  .collection-card figure {
    min-height: 310px;
  }

  .collection-card__body {
    padding: 24px;
  }

  .collection-wine__bottle {
    min-height: 420px;
  }

  .collections-world__images {
    grid-template-columns: 1fr;
  }

  .collections-world__images img,
  .collections-world__images img:first-child,
  .collections-world__images img:nth-child(2),
  .collections-world__images img:nth-child(3) {
    grid-column: 1;
    min-height: 0;
  }

  body.rose-rose-shop-page.post-type-archive-product .wc-block-product-template {
    grid-template-columns: 1fr !important;
  }

  .woo-shop-hero {
    padding: 112px 0 66px;
  }

  .woo-shop-hero__copy h1 {
    font-size: 3.55rem;
  }

  .woo-shop-hero__images {
    grid-template-columns: 1fr;
  }

  .woo-shop-hero__images img,
  .woo-shop-hero__images img:first-child,
  .woo-shop-hero__images img:nth-child(2),
  .woo-shop-hero__images img:nth-child(3) {
    grid-column: 1;
    min-height: 0;
  }

  .woo-shop-products__catalog .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  body.rose-rose-shop-page.post-type-archive-product main.wp-block-group {
    padding-top: 112px !important;
  }
}

/* WordPress and WooCommerce integration */
body.rose-rose-maquette .wp-site-blocks,
body.rose-rose-maquette .wp-site-blocks > * {
  padding-block: 0;
}

body.rose-rose-maquette .wp-site-blocks > * + *,
body.rose-rose-maquette .wp-block-post-content > * + * {
  margin-block-start: 0;
}

body.rose-rose-maquette .wp-block-post-title {
  display: none;
}

body.rose-rose-maquette .wp-block-post-content,
body.rose-rose-maquette .entry-content,
body.rose-rose-maquette .wp-block-html,
body.rose-rose-maquette .wp-block-shortcode {
  margin: 0;
  max-width: none !important;
  width: 100% !important;
}

body.rose-rose-maquette .wp-block-post-content > * {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: none !important;
}

body.rose-rose-maquette .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.rose-rose-maquette .wp-block-post-content-is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.rose-rose-maquette .entry-content-is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.rose-rose-maquette .wp-block-post-content > section,
body.rose-rose-maquette .entry-content > section,
body.rose-rose-maquette .wp-block-post-content > .section,
body.rose-rose-maquette .entry-content > .section {
  position: relative;
  left: 50%;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

body.rose-rose-maquette .wp-block-post-content > .wp-block-html,
body.rose-rose-maquette .wp-block-post-content > .wp-block-shortcode {
  width: 100%;
}

body.rose-rose-maquette main.wp-block-group {
  margin-top: 0 !important;
  padding: 0 !important;
}

body.rose-rose-maquette .has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.rose-rose-maquette .wp-block-group.has-global-padding,
body.rose-rose-maquette .wp-block-post-content.has-global-padding,
body.rose-rose-maquette .entry-content.has-global-padding,
body.rose-rose-maquette [data-block-name="woocommerce/page-content-wrapper"] {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.rose-rose-maquette main > .wp-block-group,
body.rose-rose-maquette main > .entry-content,
body.rose-rose-maquette .wp-block-group.alignfull,
body.rose-rose-maquette .wp-block-post-content.alignfull {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: none !important;
}

body.rose-rose-maquette main,
body.rose-rose-maquette .wp-site-blocks,
body.rose-rose-maquette .wp-block-post-content {
  overflow-x: clip;
}

body.rose-rose-maquette .woocommerce-notices-wrapper,
body.rose-rose-maquette .woocommerce-message,
body.rose-rose-maquette .woocommerce-info,
body.rose-rose-maquette .woocommerce-error {
  margin: 0 0 18px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius-small);
  background: rgba(255, 248, 239, 0.82);
  color: var(--color-ink);
  box-shadow: 0 12px 30px rgba(67, 24, 43, 0.08);
}

body.rose-rose-maquette .woocommerce a.button,
body.rose-rose-maquette .woocommerce button.button,
body.rose-rose-maquette .woocommerce input.button,
body.rose-rose-maquette .woocommerce #payment #place_order {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--color-cta);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

body.rose-rose-maquette .woocommerce a.button:hover,
body.rose-rose-maquette .woocommerce button.button:hover,
body.rose-rose-maquette .woocommerce input.button:hover,
body.rose-rose-maquette .woocommerce #payment #place_order:hover {
  transform: translateY(-1px);
  background: #ff2f86;
  color: var(--color-paper);
  box-shadow: 0 18px 36px rgba(255, 47, 134, 0.26);
}

body.rose-rose-maquette .woocommerce button.button:disabled,
body.rose-rose-maquette .woocommerce button.button:disabled[disabled] {
  background: rgba(37, 19, 31, 0.34);
  color: rgba(255, 248, 239, 0.92);
}

body.rose-rose-maquette .woocommerce a.button.alt,
body.rose-rose-maquette .woocommerce button.button.alt,
body.rose-rose-maquette .woocommerce input.button.alt,
body.rose-rose-maquette .woocommerce #payment #place_order {
  background: var(--color-cta);
}

body.rose-rose-maquette .woocommerce .button[name="update_cart"],
body.rose-rose-maquette .woocommerce .coupon .button,
body.rose-rose-maquette .woocommerce .restore-item {
  background: transparent;
  color: var(--color-rose-deep);
  border-color: rgba(61, 24, 43, 0.16);
  box-shadow: none;
}

body.rose-rose-maquette .woocommerce .quantity .qty,
body.rose-rose-maquette .woocommerce input.input-text,
body.rose-rose-maquette .woocommerce textarea,
body.rose-rose-maquette .woocommerce select {
  min-height: 52px;
  border: 1px solid rgba(61, 24, 43, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

body.rose-rose-maquette .woocommerce textarea {
  min-height: 132px;
  resize: vertical;
}

body.rose-rose-maquette .woocommerce input:focus,
body.rose-rose-maquette .woocommerce textarea:focus,
body.rose-rose-maquette .woocommerce select:focus {
  outline: none;
  border-color: rgba(205, 67, 105, 0.42);
  box-shadow: 0 0 0 4px rgba(246, 173, 192, 0.28);
}

.cart-page__woocommerce .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.cart-page__woocommerce .woocommerce-cart-form,
.cart-page__woocommerce .cart-collaterals {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow-card);
}

.cart-page__woocommerce .woocommerce-cart-form {
  padding: 18px;
}

.cart-page__woocommerce .cart-collaterals {
  padding: 24px;
}

.cart-page__woocommerce .cart-collaterals > * {
  width: 100%;
  float: none;
}

.cart-page__woocommerce .shop_table {
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: transparent;
}

.cart-page__woocommerce .shop_table th,
.cart-page__woocommerce .shop_table td {
  border: 0;
  border-bottom: 1px solid rgba(61, 24, 43, 0.12);
  padding: 16px 12px;
}

.cart-page__woocommerce .shop_table tr:last-child td,
.cart-page__woocommerce .shop_table tr:last-child th {
  border-bottom: 0;
}

.cart-page__woocommerce .product-thumbnail img {
  width: 92px;
  border-radius: 18px;
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

.cart-page__woocommerce .product-thumbnail img.rr-cart-product-image--mjrr075 {
  width: 92px;
  max-height: 128px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
  object-fit: contain;
  object-position: center center;
}

.cart-page__woocommerce .product-name a,
.order-dashboard--woocommerce a,
.single-product .summary a {
  color: var(--color-ink);
}

.cart-page__woocommerce .product-name a:hover,
.order-dashboard--woocommerce a:hover,
.single-product .summary a:hover {
  color: var(--color-rose-deep);
}

.cart-page__woocommerce .product-remove a.remove {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(205, 67, 105, 0.1);
  color: var(--color-rose-deep) !important;
  line-height: 34px;
}

.cart-page__woocommerce .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-page__woocommerce .coupon input {
  min-width: 220px;
}

.cart-page__woocommerce .checkout-button {
  width: 100%;
  text-align: center;
}

.checkout-page__woocommerce .woocommerce {
  display: grid;
  gap: 18px;
}

.checkout-page__woocommerce .checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 28px;
  align-items: start;
}

.checkout-page__woocommerce .col2-set,
.checkout-page__woocommerce #order_review_heading,
.checkout-page__woocommerce #order_review {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow-card);
}

.checkout-page__woocommerce .col2-set {
  padding: 24px;
}

.checkout-page__woocommerce #order_review_heading {
  margin: 0 0 -12px;
  padding: 24px 24px 0;
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.checkout-page__woocommerce #order_review {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.checkout-page__woocommerce #customer_details .col-1,
.checkout-page__woocommerce #customer_details .col-2 {
  float: none;
  width: 100%;
}

.checkout-page__woocommerce .form-row {
  margin-bottom: 14px;
}

.checkout-page__woocommerce .woocommerce-checkout-review-order-table {
  margin-bottom: 22px;
}

.checkout-page__woocommerce #payment {
  border: 0;
  background: transparent;
}

.checkout-page__woocommerce #payment ul.payment_methods {
  border-bottom-color: rgba(61, 24, 43, 0.12);
}

.checkout-page__woocommerce .woocommerce-privacy-policy-text {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.cart-page--pro,
.checkout-page--pro {
  padding-top: clamp(120px, 11vw, 154px);
}

.cart-page__compact-title {
  display: grid;
  gap: 8px;
  max-width: 860px;
  margin-bottom: 30px;
}

.cart-page__compact-title h1 {
  font-size: clamp(3.8rem, 7.4vw, 6.6rem);
  line-height: 0.9;
}

.cart-page__woocommerce .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 28px;
  align-items: start;
}

.cart-page__woocommerce .woocommerce-notices-wrapper,
.cart-page__woocommerce .woocommerce-message,
.cart-page__woocommerce .woocommerce-info,
.cart-page__woocommerce .woocommerce-error {
  grid-column: 1 / -1;
}

.cart-page__woocommerce .woocommerce-cart-form {
  grid-column: 1;
  min-width: 0;
}

.cart-page__woocommerce .cart-collaterals {
  grid-column: 2;
  min-width: 0;
}

.cart-page__woocommerce .woocommerce-cart-form,
.cart-page__woocommerce .cart-collaterals,
.checkout-page__woocommerce .col2-set,
.checkout-page__woocommerce #order_review_heading,
.checkout-page__woocommerce #order_review {
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.94), rgba(255, 255, 255, 0.78)),
    var(--color-paper);
}

.cart-page__woocommerce .shop_table {
  width: 100%;
  table-layout: auto;
}

.cart-page__woocommerce .shop_table thead th {
  color: var(--color-rose-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-page__woocommerce .shop_table tbody tr {
  transition: background-color 160ms ease;
}

.cart-page__woocommerce .shop_table tbody tr:hover {
  background: rgba(255, 228, 236, 0.3);
}

.cart-page__woocommerce .shop_table td {
  vertical-align: middle;
}

.cart-page__woocommerce td.product-thumbnail {
  width: 112px;
}

.cart-page__woocommerce td.product-name {
  min-width: 220px;
  font-weight: 900;
}

.cart-page__woocommerce td.product-price,
.cart-page__woocommerce td.product-subtotal,
.cart-page__woocommerce .cart-subtotal td,
.cart-page__woocommerce .order-total td {
  color: var(--color-prune);
  font-weight: 950;
  white-space: nowrap;
}

.cart-page__woocommerce td.actions {
  padding-top: 22px;
  background: rgba(255, 248, 239, 0.58);
}

.cart-page__woocommerce .coupon {
  align-items: center;
}

.cart-page__woocommerce .coupon .input-text {
  flex: 1 1 230px;
}

.cart-page__woocommerce .cart_totals {
  float: none;
  width: 100%;
}

.cart-page__woocommerce .cart_totals h2,
.checkout-page__woocommerce #order_review_heading {
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 3.6vw, 3.35rem);
  font-weight: 500;
  line-height: 1;
}

.cart-page__woocommerce .cart_totals .shop_table th,
.cart-page__woocommerce .cart_totals .shop_table td {
  padding: 14px 0;
}

.cart-page__woocommerce .wc-proceed-to-checkout {
  padding: 14px 0 0;
}

.cart-page__woocommerce .checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  white-space: normal;
}

.checkout-page__woocommerce .checkout {
  display: grid;
  grid-template-areas:
    "customer review-title"
    "customer review";
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 0 28px;
  align-items: start;
}

.checkout-page__woocommerce .col2-set {
  grid-area: customer;
  min-width: 0;
}

.checkout-page__woocommerce #order_review_heading {
  grid-area: review-title;
  margin: 0;
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  padding-bottom: 12px;
}

.checkout-page__woocommerce #order_review {
  grid-area: review;
  min-width: 0;
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.checkout-page__woocommerce .woocommerce-billing-fields h3,
.checkout-page__woocommerce .woocommerce-shipping-fields h3,
.checkout-page__woocommerce .woocommerce-additional-fields h3 {
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 500;
}

.checkout-page__woocommerce .woocommerce-checkout-review-order-table th,
.checkout-page__woocommerce .woocommerce-checkout-review-order-table td {
  border-color: rgba(61, 24, 43, 0.12);
  padding: 13px 0;
}

.checkout-page__woocommerce #shipping_method {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-page__woocommerce #shipping_method li,
.checkout-page__woocommerce #payment ul.payment_methods li {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 12px;
}

.checkout-page__woocommerce #payment div.payment_box {
  border-radius: 16px;
  background: rgba(255, 228, 236, 0.58);
  color: var(--color-muted);
}

.order-dashboard--woocommerce {
  padding: 28px;
}

.order-dashboard--woocommerce .woocommerce {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
}

.order-dashboard--woocommerce .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-dashboard--woocommerce .woocommerce-MyAccount-navigation a {
  display: block;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 700;
}

.order-dashboard--woocommerce .woocommerce-MyAccount-navigation .is-active a,
.order-dashboard--woocommerce .woocommerce-MyAccount-navigation a:hover {
  border-color: rgba(205, 67, 105, 0.24);
  background: rgba(255, 228, 236, 0.92);
}

.order-dashboard--woocommerce .woocommerce-MyAccount-content > *:first-child {
  margin-top: 0;
}

.order-dashboard--woocommerce .woocommerce-Addresses,
.order-dashboard--woocommerce .shop_table,
.order-dashboard--woocommerce form {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.06);
}

body.rose-rose-product-page .product-detail {
  position: relative;
}

body.rose-rose-product-page .product-detail .product {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

body.rose-rose-product-page .woocommerce-product-gallery {
  position: sticky;
  top: 110px;
}

body.rose-rose-product-page .woocommerce-product-gallery__wrapper,
body.rose-rose-product-page .flex-viewport {
  border-radius: 28px;
  background: rgba(255, 248, 239, 0.66);
}

body.rose-rose-product-page .woocommerce-product-gallery__image {
  padding: 20px;
}

body.rose-rose-product-page .summary {
  display: grid;
  gap: 18px;
}

body.rose-rose-product-page .summary .product_title {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
}

body.rose-rose-product-page .summary .price {
  color: var(--color-rose-deep);
  font-size: 1.4rem;
  font-weight: 800;
}

body.rose-rose-product-page .summary form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
}

body.rose-rose-product-page .summary .quantity .qty {
  width: 104px;
}

.rr-product-profile {
  display: grid;
  gap: 18px;
  margin-top: 8px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.9), rgba(255, 228, 236, 0.68)),
    var(--color-paper);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 18px 46px rgba(67, 24, 43, 0.08);
}

.rr-product-profile__intro {
  display: grid;
  gap: 8px;
}

.rr-product-profile__intro h2 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
}

.rr-product-profile__intro p:not(.eyebrow) {
  color: var(--color-muted);
  font-weight: 760;
}

.rr-product-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.rr-product-profile__grid div {
  border-top: 2px solid rgba(61, 24, 43, 0.12);
  padding-top: 12px;
}

.rr-product-profile__grid dt {
  color: var(--color-rose-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rr-product-profile__grid dd {
  margin: 6px 0 0;
  color: var(--color-ink);
  font-weight: 800;
}

.rr-product-profile__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rr-product-profile__reassurance span {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 9px 12px;
  color: var(--color-prune);
  font-size: 0.82rem;
  font-weight: 900;
}

body.rose-rose-product-page .product_meta,
body.rose-rose-product-page .woocommerce-tabs,
body.rose-rose-product-page .related {
  margin-top: 32px;
}

body.rose-rose-product-page .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

body.rose-rose-product-page .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body.rose-rose-product-page .woocommerce-tabs ul.tabs li a {
  display: block;
  border-radius: 999px;
  border: 1px solid rgba(61, 24, 43, 0.14);
  background: rgba(255, 248, 239, 0.84);
  padding: 12px 18px;
}

body.rose-rose-product-page .related {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(61, 24, 43, 0.12);
  padding-top: 34px;
}

body.rose-rose-product-page .related > h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

body.rose-rose-product-page .related ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

body.rose-rose-product-page .related ul.products::before,
body.rose-rose-product-page .related ul.products::after {
  content: none;
}

body.rose-rose-product-page .related ul.products li.product {
  display: grid;
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius-small);
  background: rgba(255, 248, 239, 0.82);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.08);
}

body.rose-rose-product-page .related ul.products li.product a img {
  height: 260px;
  object-fit: contain;
  margin: 0 0 14px;
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

body.rose-rose-product-page .related .woocommerce-loop-product__title {
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

body.rose-rose-product-page .related .price {
  color: var(--color-rose-deep);
  font-weight: 950;
}

.rr-loop-product-description {
  min-height: 4.4em;
  margin: 8px 0 14px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.55;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template > li.wc-block-product {
  width: auto !important;
  min-width: 0;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: var(--radius-small);
  background: rgba(255, 248, 239, 0.84);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.08);
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wc-block-components-product-image {
  display: grid;
  min-height: 250px;
  place-items: center;
  background: linear-gradient(160deg, #fff8ef, #ffe2eb);
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wc-block-components-product-image img {
  width: min(240px, 86%) !important;
  height: 250px !important;
  object-fit: contain !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wp-block-post-title {
  margin: 14px 0 8px !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wp-block-post-title a {
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1;
  text-decoration: none;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wc-block-components-product-price {
  color: var(--color-rose-deep);
  font-weight: 950;
}

@media (max-width: 980px) {
  .cart-page__woocommerce .woocommerce,
  .checkout-page__woocommerce .checkout,
  .order-dashboard--woocommerce .woocommerce,
  body.rose-rose-product-page .product-detail .product {
    grid-template-columns: 1fr;
  }

  .cart-page__woocommerce .woocommerce-cart-form,
  .cart-page__woocommerce .cart-collaterals {
    grid-column: 1;
  }

  .checkout-page__woocommerce .checkout {
    grid-template-areas:
      "customer"
      "review-title"
      "review";
    gap: 18px;
  }

  body.rose-rose-product-page .related ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .rr-product-profile__grid {
    grid-template-columns: 1fr;
  }

  .checkout-page__woocommerce #order_review {
    position: static;
  }

  body.rose-rose-product-page .woocommerce-product-gallery {
    position: static;
  }
}

@media (max-width: 782px) {
  .cart-page__woocommerce .woocommerce-cart-form,
  .cart-page__woocommerce .cart-collaterals,
  .checkout-page__woocommerce .col2-set,
  .checkout-page__woocommerce #order_review_heading,
  .checkout-page__woocommerce #order_review,
  .order-dashboard--woocommerce {
    padding: 18px;
  }

  .cart-page__woocommerce .shop_table thead {
    display: none;
  }

  .cart-page__woocommerce .shop_table tbody tr {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(61, 24, 43, 0.1);
    border-radius: 18px;
    margin-bottom: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.62);
  }

  .cart-page__woocommerce .shop_table td {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 0 0 8px;
    border: 0;
  }

  .cart-page__woocommerce .shop_table td::before {
    color: var(--color-rose-deep);
    content: attr(data-title);
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .cart-page__woocommerce .shop_table td.product-remove,
  .cart-page__woocommerce .shop_table td.product-thumbnail,
  .cart-page__woocommerce .shop_table td.actions {
    display: block;
  }

  .cart-page__woocommerce .shop_table td.product-remove::before,
  .cart-page__woocommerce .shop_table td.product-thumbnail::before,
  .cart-page__woocommerce .shop_table td.actions::before {
    content: none;
  }

  .cart-page__woocommerce td.actions {
    padding-top: 12px;
  }

  body.rose-rose-product-page .related ul.products {
    grid-template-columns: 1fr;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template {
    grid-template-columns: 1fr !important;
  }

  .rr-loop-product-description {
    min-height: 0;
  }
}

/* final ecommerce polish */
.site-header,
.site-header--solid,
.site-header.is-scrolled,
.site-header.nav-is-open {
  z-index: 1000;
  background: rgba(255, 248, 239, 0.97);
  box-shadow: 0 12px 34px rgba(50, 19, 37, 0.1);
  color: var(--color-ink);
  backdrop-filter: blur(18px);
}

.site-header .site-logo--image img {
  filter: none;
}

.header-actions {
  min-width: 44px;
}

.header-actions .buy-link {
  display: none !important;
}

.cart-page--pro,
.checkout-page--pro {
  min-height: 100svh;
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 173, 192, 0.22), transparent 34vw),
    linear-gradient(135deg, rgba(255, 248, 239, 0.98), rgba(255, 228, 236, 0.86));
  padding-top: clamp(118px, 10vw, 148px);
}

.cart-page__compact-title {
  max-width: var(--container);
  margin-bottom: 24px;
}

.cart-page__compact-title h1 {
  color: var(--color-prune);
  font-size: clamp(3.15rem, 6.4vw, 5.8rem);
}

.checkout-step-intro {
  max-width: 680px;
  margin: 4px 0 0;
  color: var(--color-muted);
  font-weight: 780;
}

.checkout-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-progress li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(61, 24, 43, 0.13);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.74);
  color: var(--color-muted);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-progress li::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  place-items: center;
  border-radius: 999px;
  background: rgba(61, 24, 43, 0.1);
  color: var(--color-prune);
  content: counter(list-item);
  font-size: 0.72rem;
}

.checkout-progress li.is-active {
  border-color: rgba(223, 61, 122, 0.32);
  background: rgba(255, 228, 236, 0.95);
  color: var(--color-prune);
}

.checkout-progress li.is-complete {
  background: rgba(255, 248, 239, 0.92);
  color: var(--color-rose-deep);
}

.cart-page__woocommerce,
.checkout-page__woocommerce {
  min-width: 0;
}

.cart-page__woocommerce .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px) !important;
  gap: 22px !important;
  align-items: start;
}

body.rose-rose-cart-page:not(.rose-rose-shipping-page) .woocommerce-shipping-totals.shipping,
body.rose-rose-cart-page:not(.rose-rose-shipping-page) .shipping,
body.rose-rose-cart-page:not(.rose-rose-shipping-page) .shipping-calculator-button,
body.rose-rose-cart-page:not(.rose-rose-shipping-page) .shipping-calculator-form {
  display: none !important;
}

body.rose-rose-cart-page:not(.rose-rose-shipping-page) .cart_totals h2::after {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  content: "La livraison se choisit à l'étape suivante.";
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: none;
}

body.rose-rose-shipping-page .cart-page__woocommerce .woocommerce {
  grid-template-columns: minmax(0, 760px) !important;
  justify-content: center;
}

body.rose-rose-shipping-page .cart-page__woocommerce .woocommerce-cart-form {
  display: none !important;
}

body.rose-rose-shipping-page .cart-page__woocommerce .cart-collaterals {
  grid-column: 1 !important;
}

body.rose-rose-shipping-page .cart-page__woocommerce .cart_totals h2 {
  margin-bottom: 8px;
}

body.rose-rose-shipping-page .cart-page__woocommerce .cart_totals h2::after {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  content: "Sélectionnez votre transporteur, puis continuez vers le paiement.";
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
  text-transform: none;
}

.cart-page__woocommerce .woocommerce-cart-form,
.cart-page__woocommerce .cart-collaterals,
.checkout-page__woocommerce .col2-set,
.checkout-page__woocommerce #order_review_heading,
.checkout-page__woocommerce #order_review {
  overflow: hidden;
  border: 1px solid rgba(61, 24, 43, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 239, 0.94) !important;
  box-shadow: 0 18px 48px rgba(67, 24, 43, 0.11) !important;
}

.cart-page__woocommerce .woocommerce-cart-form {
  grid-column: 1 !important;
  padding: clamp(16px, 2vw, 24px);
}

.cart-page__woocommerce .cart-collaterals {
  grid-column: 2 !important;
  padding: clamp(18px, 2.4vw, 26px);
}

.cart-page__woocommerce .cart-collaterals,
.cart-page__woocommerce .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

.cart-page__woocommerce table.shop_table,
.checkout-page__woocommerce table.shop_table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
  border: 0 !important;
  border-collapse: collapse;
}

.cart-page__woocommerce table.shop_table th,
.cart-page__woocommerce table.shop_table td,
.checkout-page__woocommerce table.shop_table th,
.checkout-page__woocommerce table.shop_table td {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.cart-page__woocommerce table.cart th.product-thumbnail,
.cart-page__woocommerce table.cart td.product-thumbnail {
  width: 92px;
}

.cart-page__woocommerce table.cart th.product-remove,
.cart-page__woocommerce table.cart td.product-remove {
  width: 44px;
}

.cart-page__woocommerce table.cart td.product-name {
  min-width: 0 !important;
  width: auto;
  color: var(--color-prune);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
}

.cart-page__woocommerce table.cart td.product-name a {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.cart-page__woocommerce table.cart td.product-price,
.cart-page__woocommerce table.cart td.product-quantity,
.cart-page__woocommerce table.cart td.product-subtotal {
  width: 112px;
}

.cart-page__woocommerce table.cart .quantity .qty {
  width: 82px;
  min-height: 44px;
}

.cart-page__woocommerce .product-thumbnail img {
  width: 74px !important;
  height: 92px !important;
  object-fit: contain;
  border-radius: 6px;
}

.cart-page__woocommerce td.actions {
  background: transparent !important;
}

.cart-page__woocommerce .coupon {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.cart-page__woocommerce .coupon .input-text {
  width: 100% !important;
  min-width: 0 !important;
}

.cart-page__woocommerce .cart_totals h2 {
  margin-bottom: 12px;
}

.cart-page__woocommerce .cart_totals .shop_table th,
.cart-page__woocommerce .cart_totals .shop_table td {
  width: 50%;
  overflow-wrap: normal;
}

.cart-page__woocommerce .order-total th,
.cart-page__woocommerce .order-total td {
  color: var(--color-rose-deep) !important;
  font-size: 1.08rem;
}

.cart-page__woocommerce .wc-proceed-to-checkout .checkout-button {
  width: 100% !important;
  min-height: 54px;
  white-space: normal;
}

.checkout-page__woocommerce .checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
  grid-template-areas: none !important;
  gap: 0 22px !important;
  align-items: start;
}

.checkout-page__woocommerce .col2-set {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(18px, 2.4vw, 28px);
}

.checkout-page__woocommerce .woocommerce-billing-fields__field-wrapper,
.checkout-page__woocommerce .woocommerce-shipping-fields__field-wrapper,
.checkout-page__woocommerce .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.checkout-page__woocommerce .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.checkout-page__woocommerce .form-row-wide,
.checkout-page__woocommerce #billing_country_field,
.checkout-page__woocommerce #shipping_country_field,
.checkout-page__woocommerce #billing_address_1_field,
.checkout-page__woocommerce #billing_address_2_field,
.checkout-page__woocommerce #shipping_address_1_field,
.checkout-page__woocommerce #shipping_address_2_field,
.checkout-page__woocommerce #order_comments_field {
  grid-column: 1 / -1;
}

.checkout-page__woocommerce .form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-prune);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rr-checkout-country-note {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 16px;
  background: rgba(255, 228, 236, 0.62);
  padding: 14px 16px;
}

.rr-checkout-country-note strong {
  color: var(--color-prune);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rr-checkout-country-note span {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 720;
}

.checkout-page__woocommerce .rr-hidden-country-field {
  display: none !important;
}

.checkout-page__woocommerce .select2-container {
  width: 100% !important;
}

.checkout-page__woocommerce .select2-container--default .select2-selection--single {
  min-height: 54px;
  border: 1px solid rgba(61, 24, 43, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
}

.checkout-page__woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 12px 44px 12px 14px;
  color: var(--color-ink);
  line-height: 30px;
}

.checkout-page__woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 14px;
  right: 12px;
}

.select2-dropdown {
  border-color: rgba(61, 24, 43, 0.14);
  border-radius: 12px;
  background: var(--color-paper);
  box-shadow: 0 18px 42px rgba(67, 24, 43, 0.12);
}

.checkout-page__woocommerce #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
  padding: 22px 22px 10px !important;
  border-bottom: 0 !important;
  border-radius: 8px 8px 0 0 !important;
  box-shadow: 0 18px 48px rgba(67, 24, 43, 0.08) !important;
  align-self: start;
}

.checkout-page__woocommerce #order_review {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 106px;
  min-width: 0;
  margin-top: 78px !important;
  padding: 0 22px 22px !important;
  border-top: 0 !important;
  border-radius: 0 0 8px 8px !important;
  align-self: start;
}

.checkout-page__woocommerce .woocommerce-checkout-review-order-table .product-name {
  width: 62%;
  overflow-wrap: anywhere;
}

.checkout-page__woocommerce .woocommerce-checkout-review-order-table .product-total {
  width: 38%;
  text-align: right;
  white-space: nowrap;
}

.checkout-page__woocommerce .woocommerce-checkout-review-order-table .woocommerce-shipping-totals.shipping {
  display: none !important;
}

.checkout-page__woocommerce .woocommerce-checkout-review-order-table th,
.checkout-page__woocommerce .woocommerce-checkout-review-order-table td {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.checkout-page__woocommerce #shipping_method {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
}

.checkout-page__woocommerce #shipping_method li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  padding: 15px 16px;
}

.checkout-page__woocommerce #shipping_method input {
  margin-top: 5px;
}

.checkout-page__woocommerce #shipping_method label {
  margin: 0;
  color: var(--color-prune);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.4;
}

.checkout-page__woocommerce #shipping_method .amount {
  color: var(--color-rose-deep);
  font-weight: 950;
}

.checkout-page__woocommerce #payment {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 22px;
  border: 1px solid rgba(61, 24, 43, 0.12) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.98), rgba(255, 228, 236, 0.58)),
    #fff !important;
  padding: 18px !important;
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.08);
}

.checkout-page__woocommerce #payment::before {
  display: block;
  order: 0;
  color: var(--color-prune);
  content: "Moyen de paiement";
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 0.98;
}

.checkout-page__woocommerce #payment::after {
  display: block;
  order: 1;
  color: var(--color-muted);
  content: "Choisissez votre moyen de paiement, puis validez avec le bouton final.";
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.5;
}

.checkout-page__woocommerce #payment ul.payment_methods {
  display: grid;
  order: 2;
  gap: 10px;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
}

body:not(.rose-rose-checkout-page) .wc-stripe-payment-request-wrapper,
body:not(.rose-rose-checkout-page) #wc-stripe-payment-request-wrapper,
body:not(.rose-rose-checkout-page) #wc-stripe-payment-request-button,
body:not(.rose-rose-checkout-page) .wc-stripe-express-checkout-wrapper,
body:not(.rose-rose-checkout-page) .wcpay-express-checkout-wrapper,
body:not(.rose-rose-checkout-page) .wc-block-components-express-payment,
body:not(.rose-rose-checkout-page) .express-payment-methods,
body:not(.rose-rose-checkout-page) #wc-stripe-express-checkout-element,
body:not(.rose-rose-checkout-page) .wc-stripe-cart-checkout-container,
body:not(.rose-rose-checkout-page) .stripe-gateway-checkout-button,
body:not(.rose-rose-checkout-page) .payment-request-button,
body:not(.rose-rose-checkout-page) .wc-block-components-checkout-place-order-button,
body.rose-rose-cart-page .wc-stripe-payment-request-wrapper,
body.rose-rose-cart-page #wc-stripe-payment-request-wrapper,
body.rose-rose-cart-page .wc-stripe-express-checkout-wrapper,
body.rose-rose-shipping-page .wc-stripe-payment-request-wrapper,
body.rose-rose-shipping-page #wc-stripe-payment-request-wrapper,
body.rose-rose-shipping-page .wc-stripe-express-checkout-wrapper {
  display: none !important;
}

.checkout-page__woocommerce #payment ul.payment_methods li {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px;
}

.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_stripe,
.checkout-page__woocommerce #payment ul.payment_methods li[class*="payment_method_stripe_"],
.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_woocommerce_payments,
.checkout-page__woocommerce #payment ul.payment_methods li[class*="payment_method_woocommerce_payments"] {
  display: grid !important;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 228, 236, 0.82)),
    #fff;
}

.checkout-page__woocommerce #payment ul.payment_methods li > label {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--color-prune);
  font-weight: 950;
  line-height: 1.25;
}

.checkout-page__woocommerce #payment div.payment_box,
.checkout-page__woocommerce .woocommerce-SavedPaymentMethods,
.checkout-page__woocommerce .wc-stripe-elements-field,
.checkout-page__woocommerce .stripe-card-group,
.checkout-page__woocommerce .wcpay-payment-element {
  max-width: 100%;
}

.checkout-page__woocommerce #payment div.payment_box {
  order: 1;
  border-radius: 14px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.64) !important;
  color: var(--color-muted);
  line-height: 1.55;
  overflow: visible;
  padding: 10px !important;
}

.checkout-page__woocommerce #payment div.payment_box::before {
  display: none !important;
}

.checkout-page__woocommerce #wc-stripe-upe-form,
.checkout-page__woocommerce .wc-payment-form {
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
}

.checkout-page__woocommerce .wc-stripe-upe-element.StripeElement,
.checkout-page__woocommerce .wc-stripe-upe-element .__PrivateStripeElement,
.checkout-page__woocommerce .wc-stripe-upe-element iframe {
  min-height: 420px !important;
  height: 420px !important;
  max-height: none !important;
}

.checkout-page__woocommerce #wc-stripe-hidden-style-input {
  position: absolute !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.checkout-page__woocommerce #wc-stripe-upe-errors {
  margin-top: 8px;
}

.checkout-page__woocommerce .wc-stripe-elements-field,
.checkout-page__woocommerce .wcpay-upe-element,
.checkout-page__woocommerce .wc-payment-form iframe {
  border-radius: 12px !important;
}

.checkout-page__woocommerce #place_order {
  min-height: 56px;
  margin-top: 14px;
  border-radius: 999px !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce #order_review,
body.rose-rose-payment-page .checkout-page__woocommerce #payment,
body.rose-rose-payment-page .checkout-page__woocommerce #payment ul.payment_methods,
body.rose-rose-payment-page .checkout-page__woocommerce #payment ul.payment_methods li {
  overflow: visible !important;
}

/* final payment cleanup: keep only the real WooCommerce/Stripe controls */
.checkout-page__woocommerce #payment::after,
.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_stripe::before,
.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_stripe::after {
  display: none !important;
  content: none !important;
}

.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_stripe > label {
  display: inline-flex !important;
}

/* checkout flow: delivery first, payment second */
body.rose-rose-shipping-page .shipping-page__woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 22px;
  align-items: start;
}

.rr-shipping-address-card {
  min-width: 0;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.96), rgba(255, 255, 255, 0.82)),
    var(--color-paper);
  box-shadow: 0 18px 48px rgba(67, 24, 43, 0.11);
  padding: clamp(18px, 2.6vw, 30px);
}

.rr-shipping-address-card__header {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.rr-shipping-address-card__header h2 {
  color: var(--color-prune);
  font-size: clamp(2.6rem, 4.4vw, 4.25rem);
  line-height: 0.92;
}

.rr-shipping-address-card__header p:not(.eyebrow) {
  max-width: 640px;
  color: var(--color-muted);
  font-weight: 760;
}

.rr-shipping-address-card__saved {
  margin-bottom: 18px;
  border: 1px solid rgba(223, 61, 122, 0.2);
  border-radius: 16px;
  background: rgba(255, 228, 236, 0.62);
  color: var(--color-prune);
  padding: 13px 15px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.5;
}

.rr-shipping-address-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rr-shipping-address-card label {
  display: grid;
  gap: 7px;
  color: var(--color-prune);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rr-shipping-address-card .rr-field-wide {
  grid-column: 1 / -1;
}

.rr-shipping-address-card input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(61, 24, 43, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-ink);
  padding: 12px 14px;
  text-transform: none;
}

.rr-shipping-address-card input:focus {
  outline: none;
  border-color: rgba(205, 67, 105, 0.42);
  box-shadow: 0 0 0 4px rgba(246, 173, 192, 0.28);
}

.rr-shipping-address-card .button {
  width: 100%;
  margin-top: 20px;
  min-height: 58px;
  line-height: 1.25;
  white-space: normal;
}

body.rose-rose-shipping-page .shipping-page__woocommerce > .woocommerce {
  display: block !important;
  grid-column: 2;
  min-width: 0;
}

body.rose-rose-shipping-page .shipping-page__woocommerce .cart-collaterals {
  grid-column: auto !important;
}

body.rose-rose-shipping-page .wc-proceed-to-checkout {
  display: block !important;
  margin-top: 18px;
}

body.rose-rose-shipping-page.rose-rose-shipping-needs-address .wc-proceed-to-checkout {
  display: none !important;
}

body.rose-rose-shipping-page.rose-rose-shipping-needs-address .cart_totals h2::after {
  content: "Renseignez d'abord votre adresse pour afficher les modes de livraison.";
}

body.rose-rose-shipping-page.rose-rose-shipping-needs-address .cart_totals tr.woocommerce-shipping-totals.shipping,
body.rose-rose-shipping-page.rose-rose-shipping-needs-address .cart_totals .woocommerce-shipping-totals.shipping,
body.rose-rose-shipping-page.rose-rose-shipping-needs-address .cart_totals #shipping_method {
  display: none !important;
}

body.rose-rose-shipping-page .shipping-calculator-button,
body.rose-rose-shipping-page .shipping-calculator-form,
body.rose-rose-shipping-page .woocommerce-shipping-calculator {
  display: none !important;
}

body.rose-rose-shipping-page .cart_totals table.shop_table,
body.rose-rose-shipping-page .cart_totals table.shop_table tbody,
body.rose-rose-shipping-page .cart_totals table.shop_table tr,
body.rose-rose-shipping-page .cart_totals table.shop_table th,
body.rose-rose-shipping-page .cart_totals table.shop_table td {
  display: block;
  width: 100% !important;
}

body.rose-rose-shipping-page .cart_totals table.shop_table tr {
  border-bottom: 1px solid rgba(61, 24, 43, 0.12);
  padding: 13px 0;
}

body.rose-rose-shipping-page .cart_totals table.shop_table tr:last-child {
  border-bottom: 0;
}

body.rose-rose-shipping-page .cart_totals table.shop_table th,
body.rose-rose-shipping-page .cart_totals table.shop_table td {
  border: 0 !important;
  padding: 0 !important;
}

body.rose-rose-shipping-page .cart_totals table.shop_table th {
  margin-bottom: 8px;
  color: var(--color-rose-deep);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.rose-rose-shipping-page .cart_totals table.shop_table tr.cart-subtotal,
body.rose-rose-shipping-page .cart_totals table.shop_table tr.order-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

body.rose-rose-shipping-page .cart_totals table.shop_table tr.cart-subtotal th,
body.rose-rose-shipping-page .cart_totals table.shop_table tr.order-total th {
  margin-bottom: 0;
}

body.rose-rose-shipping-page .cart_totals #shipping_method {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
}

body.rose-rose-shipping-page .cart_totals #shipping_method li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  padding: 15px 16px;
}

body.rose-rose-shipping-page .cart_totals #shipping_method input {
  margin-top: 5px;
  accent-color: var(--color-rose);
}

body.rose-rose-shipping-page .cart_totals #shipping_method label {
  color: var(--color-prune);
  font-weight: 880;
  line-height: 1.4;
}

body.rose-rose-shipping-page .cart_totals .woocommerce-shipping-destination,
body.rose-rose-shipping-page .cart_totals .woocommerce-shipping-calculator {
  display: none !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce .woocommerce-shipping-fields {
  display: none !important;
}

.checkout-page__woocommerce .rr-billing-address-hidden {
  display: none !important;
}

.rr-checkout-shipping-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 228, 236, 0.66), rgba(255, 248, 239, 0.86)),
    var(--color-paper);
  padding: 16px;
}

.rr-checkout-shipping-summary .eyebrow {
  margin-bottom: 4px;
}

.rr-checkout-shipping-summary p:not(.eyebrow) {
  color: var(--color-prune);
  font-weight: 820;
  line-height: 1.55;
}

.rr-shipping-recap {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--color-prune);
  font-style: normal;
  line-height: 1.45;
}

.rr-shipping-recap span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  font-weight: 760;
}

.rr-shipping-recap span:first-child {
  margin-bottom: 2px;
  font-size: 1rem;
  font-weight: 950;
}

.rr-checkout-shipping-summary > a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 24, 43, 0.14);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--color-rose-deep);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rr-chronopost-relay-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  border: 1px solid rgba(205, 67, 105, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 230, 232, 0.9));
  padding: 18px;
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.08);
}

.rr-chronopost-relay-panel[hidden] {
  display: none !important;
}

.rr-chronopost-relay-panel h3 {
  margin: 0;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1;
}

.rr-chronopost-relay-panel p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 720;
  line-height: 1.55;
}

.rr-chronopost-relay-panel .button {
  justify-self: start;
}

.rr-chronopost-relay-panel__status {
  border-top: 1px solid rgba(61, 24, 43, 0.1);
  padding-top: 10px;
  font-size: 0.86rem;
}

.rr-chronopost-relay-panel__status.is-error {
  color: #9d1b35;
}

.rr-chronopost-relay-panel__picker:empty {
  display: none;
}

.rr-chronopost-relay-panel__loading {
  border: 1px dashed rgba(187, 55, 104, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 14px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.rr-relay-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.rr-relay-search {
  display: grid;
  gap: 6px;
  margin-bottom: 2px;
}

.rr-relay-search span {
  color: var(--color-prune);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rr-relay-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(61, 24, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 10px 16px;
  color: var(--color-prune);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 760;
  outline: none;
}

.rr-relay-search input:focus {
  border-color: rgba(187, 55, 104, 0.55);
  box-shadow: 0 0 0 3px rgba(221, 58, 123, 0.12);
}

.rr-relay-list__hint {
  margin: -2px 0 2px !important;
  color: rgba(61, 24, 43, 0.68) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.rr-relay-list__count {
  margin: 0 !important;
  color: var(--color-rose-deep) !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

.rr-relay-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 13px 14px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.rr-relay-option:hover,
.rr-relay-option:has(input:checked) {
  border-color: rgba(187, 55, 104, 0.5);
  box-shadow: 0 10px 24px rgba(67, 24, 43, 0.08);
  transform: translateY(-1px);
}

.rr-relay-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-rose);
}

.rr-relay-option__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rr-relay-option__body strong {
  color: var(--color-prune);
  font-size: 0.92rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.rr-relay-option__body small {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 740;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.rr-relay-list__empty {
  border: 1px dashed rgba(187, 55, 104, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  padding: 12px 14px;
  color: var(--color-muted) !important;
  font-size: 0.88rem !important;
  font-weight: 820 !important;
}

.rr-chronopost-relay-panel #outer-container-method-chronorelay {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 !important;
  padding: 0;
}

.rr-chronopost-relay-panel #container-method-chronorelay {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.rr-chronopost-relay-panel #container-method-chronorelay h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rr-chronopost-relay-panel .chronorelais-explain,
.rr-chronopost-relay-panel .chronorelais-error {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.rr-chronopost-relay-panel .chronorelais-list,
.rr-chronopost-relay-panel .chronorelais-pickup-list {
  max-width: 100%;
}

.rr-chronopost-relay-panel input[name="shipping_method_chronorelais"] {
  accent-color: var(--color-rose);
}

body.rose-rose-payment-page #order_review .pickup-relay-link {
  display: none !important;
}

.rr-use-shipping-as-billing {
  grid-column: 1 / -1;
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 0 !important;
  color: var(--color-muted) !important;
  font-size: 0.9rem !important;
  font-weight: 780 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.rr-use-shipping-as-billing input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--color-rose);
}

.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_bacs,
.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_cheque,
.checkout-page__woocommerce #payment ul.payment_methods li.payment_method_cod {
  display: none !important;
}

.checkout-page__woocommerce #payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--color-rose);
}

.checkout-page__woocommerce #payment ul.payment_methods li:has(input[type="radio"]:checked) {
  border-color: rgba(223, 61, 122, 0.34);
  box-shadow: 0 12px 30px rgba(223, 61, 122, 0.11);
}

.checkout-page__woocommerce #payment .place-order {
  display: grid;
  gap: 12px;
  order: 3;
  margin: 0 !important;
  padding: 0 !important;
}

.checkout-page__woocommerce #payment .place-order::before {
  display: block;
  border-top: 1px solid rgba(61, 24, 43, 0.1);
  padding-top: 14px;
  color: var(--color-prune);
  content: "Régler la commande";
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-page__woocommerce #payment .woocommerce-terms-and-conditions-wrapper {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.checkout-page__woocommerce #wc-stripe-express-checkout-button-separator {
  display: none !important;
}

.checkout-page__woocommerce #place_order {
  width: 100%;
  white-space: normal;
}

body.rose-rose-payment-page .checkout-page__compact-title {
  max-width: 860px;
}

body.rose-rose-payment-page .checkout-page__woocommerce .checkout {
  gap: 24px !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce #order_review_heading {
  background: rgba(255, 248, 239, 0.96) !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce #order_review {
  background: rgba(255, 248, 239, 0.96) !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce .woocommerce-checkout-review-order-table {
  margin-bottom: 0 !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce .woocommerce-checkout-review-order-table tfoot tr:last-child th,
body.rose-rose-payment-page .checkout-page__woocommerce .woocommerce-checkout-review-order-table tfoot tr:last-child td {
  border-top: 1px solid rgba(61, 24, 43, 0.16) !important;
  color: var(--color-rose-deep) !important;
  font-size: 1rem;
  font-weight: 950;
}

body.rose-rose-payment-page .checkout-page__woocommerce #payment {
  gap: 16px;
  margin-top: 20px;
  padding: clamp(16px, 2vw, 22px) !important;
}

body.rose-rose-payment-page .checkout-page__woocommerce #payment::before {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

body.rose-rose-payment-page .checkout-page__woocommerce #payment ul.payment_methods li {
  display: grid;
  gap: 10px;
  min-width: 0;
}

body.rose-rose-payment-page .checkout-page__woocommerce #payment ul.payment_methods li > label {
  min-width: 0;
  justify-content: space-between;
}

body.rose-rose-payment-page .checkout-page__woocommerce #payment ul.payment_methods li > label img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

body.rose-rose-payment-page .checkout-page__woocommerce #wc-stripe-express-checkout-element,
body.rose-rose-payment-page .checkout-page__woocommerce .wc-stripe-express-checkout-wrapper,
body.rose-rose-payment-page .checkout-page__woocommerce #wc-stripe-payment-request-wrapper {
  width: 100%;
  max-width: 100%;
}

body.rose-rose-payment-page .checkout-page__woocommerce #wc-stripe-express-checkout-element {
  min-height: 48px;
}

body.rose-rose-payment-page .checkout-page__woocommerce .stripe-source-errors,
body.rose-rose-payment-page .checkout-page__woocommerce #wc-stripe-upe-errors {
  border-radius: 12px;
  color: var(--color-rose-deep);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 980px) {
  body.rose-rose-shipping-page .shipping-page__woocommerce {
    grid-template-columns: 1fr;
  }

  body.rose-rose-shipping-page .shipping-page__woocommerce > .woocommerce {
    grid-column: 1;
  }

  .cart-page__woocommerce .woocommerce,
  .checkout-page__woocommerce .checkout {
    grid-template-columns: 1fr !important;
  }

  .cart-page__woocommerce .woocommerce-cart-form,
  .cart-page__woocommerce .cart-collaterals {
    grid-column: 1 !important;
  }

  .checkout-page__woocommerce .checkout {
    grid-template-areas: none !important;
    gap: 16px !important;
  }

  .checkout-page__woocommerce .col2-set,
  .checkout-page__woocommerce #order_review_heading,
  .checkout-page__woocommerce #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .checkout-page__woocommerce .woocommerce-billing-fields__field-wrapper,
  .checkout-page__woocommerce .woocommerce-shipping-fields__field-wrapper,
  .checkout-page__woocommerce .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .checkout-page__woocommerce #order_review {
    margin-top: 0 !important;
    position: static;
  }
}

@media (max-width: 782px) {
  .rr-shipping-address-card__grid {
    grid-template-columns: 1fr;
  }

  .rr-checkout-shipping-summary {
    grid-template-columns: 1fr;
  }

  .rr-checkout-shipping-summary > a {
    justify-self: start;
  }

  .cart-page--pro,
  .checkout-page--pro {
    padding-top: 104px;
  }

  .cart-page__woocommerce .woocommerce-cart-form,
  .cart-page__woocommerce .cart-collaterals,
  .checkout-page__woocommerce .col2-set,
  .checkout-page__woocommerce #order_review_heading,
  .checkout-page__woocommerce #order_review {
    padding: 16px !important;
  }

  .cart-page__woocommerce table.cart {
    table-layout: auto;
  }

  .cart-page__woocommerce table.cart tbody tr {
    display: grid;
    grid-template-columns: 38px 78px minmax(0, 1fr);
    gap: 8px 10px;
    border: 1px solid rgba(61, 24, 43, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.62);
  }

  .cart-page__woocommerce table.cart tbody tr:last-child {
    display: block;
  }

  .cart-page__woocommerce table.cart td {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .cart-page__woocommerce table.cart td.product-remove {
    grid-column: 1;
    grid-row: 1;
  }

  .cart-page__woocommerce table.cart td.product-thumbnail {
    grid-column: 2;
    grid-row: 1 / span 4;
  }

  .cart-page__woocommerce table.cart td.product-name,
  .cart-page__woocommerce table.cart td.product-price,
  .cart-page__woocommerce table.cart td.product-quantity,
  .cart-page__woocommerce table.cart td.product-subtotal {
    grid-column: 3;
  }

  .cart-page__woocommerce table.cart td.product-price::before,
  .cart-page__woocommerce table.cart td.product-quantity::before,
  .cart-page__woocommerce table.cart td.product-subtotal::before {
    display: inline-block;
    min-width: 82px;
    color: var(--color-rose-deep);
    content: attr(data-title);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .cart-page__woocommerce .coupon {
    grid-template-columns: 1fr;
  }

  .checkout-progress {
    gap: 8px;
  }

  .checkout-progress li {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .checkout-progress li::before {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
}

/* legal pages */
.legal-page {
  min-height: 100vh;
  padding-top: clamp(112px, 9vw, 138px);
  padding-bottom: clamp(54px, 7vw, 96px);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 95, 142, 0.13), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(207, 174, 107, 0.12), transparent 26%),
    linear-gradient(135deg, #fff8ef 0%, #ffe8ef 48%, #fff4e6 100%);
}

.legal-page__grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 820px);
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.legal-page__header {
  position: sticky;
  top: 104px;
  max-width: 320px;
}

.legal-page__header h1 {
  margin: 8px 0 14px;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.legal-page__header .manifesto__lead {
  color: var(--color-muted);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.65;
  max-width: 34ch;
}

.legal-page__content {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 820px;
}

.legal-card {
  border: 1px solid rgba(61, 24, 43, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 14px 34px rgba(67, 24, 43, 0.06);
  overflow-wrap: anywhere;
}

.legal-card--notice {
  background: rgba(255, 238, 228, 0.9);
  border-color: rgba(207, 111, 114, 0.25);
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  line-height: 1.08;
  text-wrap: balance;
}

.legal-card p,
.legal-card li {
  color: var(--color-muted);
  font-size: clamp(0.88rem, 1vw, 0.94rem);
  line-height: 1.68;
}

.legal-card p + p,
.legal-card ul + p,
.legal-card p + ul {
  margin-top: 8px;
}

.legal-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
}

.legal-card a {
  color: var(--color-rose-deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .legal-page__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .legal-page__header {
    position: static;
    max-width: 720px;
  }

  .legal-page__header .manifesto__lead {
    max-width: 58ch;
  }
}

@media (max-width: 640px) {
  .legal-page {
    padding-top: 96px;
    padding-bottom: 46px;
  }

  .legal-page__header h1 {
    font-size: clamp(2.05rem, 12vw, 3.15rem);
    line-height: 0.98;
  }

  .legal-page__header .manifesto__lead,
  .legal-card p,
  .legal-card li {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .legal-card {
    padding: 16px;
    box-shadow: 0 10px 24px rgba(67, 24, 43, 0.05);
  }

  .legal-card h2 {
    font-size: 1.24rem;
  }
}

/* order received */
body.woocommerce-order-received #wp--skip-link--target {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 13% 10%, rgba(255, 95, 142, 0.2), transparent 31%),
    linear-gradient(135deg, #fff8ef 0%, #ffe7ee 48%, #fff4e6 100%);
}

body.woocommerce-order-received #wp--skip-link--target > *:not(.rr-order-received) {
  max-width: min(1180px, calc(100vw - 32px));
}

body.woocommerce-order-received .wc-block-order-confirmation-status-description,
body.woocommerce-order-received .wc-block-order-confirmation-address-wrapper {
  display: none !important;
}

.rr-order-received {
  width: min(1180px, calc(100vw - 32px));
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: clamp(120px, 12vw, 164px) 0 clamp(68px, 9vw, 112px);
}

body.rose-rose-maquette.woocommerce-order-received .is-layout-constrained > .rr-order-received {
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.rr-order-received__hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61, 24, 43, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 225, 235, 0.76)),
    var(--color-paper);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 70px rgba(67, 24, 43, 0.12);
}

.rr-order-received__hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: clamp(16px, 4vw, 38px);
  color: rgba(174, 37, 91, 0.08);
  content: "Oh la la";
  font-family: var(--font-title);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.rr-order-received__hero > * {
  position: relative;
  z-index: 1;
}

.rr-order-received__hero h1 {
  max-width: 780px;
  margin: 8px 0 16px;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.rr-order-received__hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.rr-order-received__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rr-order-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.rr-order-summary div,
.rr-order-card {
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(67, 24, 43, 0.08);
}

.rr-order-summary div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.rr-order-summary dt,
.rr-order-card .eyebrow {
  margin: 0;
  color: var(--color-rose-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rr-order-summary dd {
  margin: 0;
  color: var(--color-prune);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.rr-order-received__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 18px;
}

.rr-order-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
}

.rr-order-card h2 {
  margin: 5px 0 0;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.rr-order-card--items {
  grid-row: span 2;
}

.rr-order-card--address {
  grid-column: 2;
}

.rr-order-items {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.rr-order-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.72);
  padding: 12px;
}

.rr-order-item__media {
  display: grid;
  place-items: center;
  width: 74px;
  height: 92px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 229, 236, 0.7), rgba(255, 248, 239, 0.95));
}

.rr-order-item__media img {
  width: 64px;
  height: 82px;
  object-fit: contain;
}

.rr-order-item h3 {
  margin: 0;
  color: var(--color-prune);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.rr-order-item p {
  margin: 5px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.rr-order-item > strong {
  color: var(--color-rose-deep);
  font-weight: 950;
  white-space: nowrap;
}

.rr-order-totals {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  border-top: 1px solid rgba(61, 24, 43, 0.12);
  padding-top: 18px;
}

.rr-order-totals div {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  color: var(--color-muted);
}

.rr-order-totals strong {
  color: var(--color-prune);
  white-space: nowrap;
}

.rr-order-totals__grand {
  border-top: 1px solid rgba(61, 24, 43, 0.12);
  margin-top: 6px;
  padding-top: 14px;
  color: var(--color-prune) !important;
  font-size: 1.12rem;
  font-weight: 950;
}

.rr-order-card--next {
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--color-logo-salmon-deep);
  color: rgba(255, 248, 239, 0.78);
}

.rr-order-card--next h2,
.rr-order-card--next a {
  color: #fff;
}

.rr-order-card--next p:not(.eyebrow) {
  margin: 0;
  line-height: 1.65;
}

.rr-order-note {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.rr-order-note strong {
  color: var(--color-blush);
}

.rr-order-addresses {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.rr-order-addresses h2 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rr-order-addresses address {
  margin-top: 8px;
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .rr-order-summary,
  .rr-order-received__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rr-order-card--items,
  .rr-order-card--address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .rr-order-received {
    width: min(100% - 24px, 1180px);
    padding-top: 104px;
  }

  .rr-order-summary,
  .rr-order-received__grid,
  .rr-order-item {
    grid-template-columns: 1fr;
  }

  .rr-order-item {
    justify-items: start;
  }

  .rr-order-item > strong {
    white-space: normal;
  }

  .rr-order-totals div {
    align-items: flex-start;
  }
}

/* 1706 refinements */
.chaos-stack--single {
  min-height: 0 !important;
}

.chaos-stack--single .chaos-stack__item--rebellion {
  position: relative !important;
  inset: auto !important;
}

@media (max-width: 980px) {
  .chaos-stack--single {
    order: 0;
  }

  .clement-feature--image-only .clement-feature__image img {
    aspect-ratio: auto;
  }
}

@media (max-width: 680px) {
  .collection-card__motion video {
    min-height: 340px;
  }
}

/* final mobile polish */
@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.rose-rose-maquette {
    min-width: 0;
  }

  .site-header,
  .site-main,
  .section,
  .site-footer,
  .cart-page--pro,
  .checkout-page--pro,
  .legal-page {
    max-width: 100vw;
    overflow-x: clip;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  img,
  video,
  iframe,
  canvas,
  svg {
    max-width: 100%;
  }

  .header-bar {
    min-width: 0;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }

  .site-logo--image {
    width: min(108px, 31vw);
  }

  .hero-video--chaos .hero-video__content,
  .chaos-wall__copy,
  .world-story__copy,
  .collection__label,
  .shop-hero__copy,
  .checkout-hero__content,
  .collections-hero__copy,
  .legal-page__header,
  .legal-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .single_add_to_cart_button {
    max-width: 100%;
    white-space: normal;
  }

  .checkout-page__woocommerce .woocommerce,
  .cart-page__woocommerce .woocommerce,
  .shipping-page__woocommerce,
  .checkout-page__woocommerce .checkout,
  .checkout-page__woocommerce .col2-set,
  .checkout-page__woocommerce #order_review,
  .checkout-page__woocommerce #payment,
  .rr-shipping-address-card,
  .rr-checkout-shipping-summary,
  .cart-page__woocommerce .cart-collaterals,
  .cart-page__woocommerce .woocommerce-cart-form {
    min-width: 0;
    max-width: 100%;
  }

  .checkout-page__woocommerce table,
  .cart-page__woocommerce table,
  .woocommerce table.shop_table {
    width: 100% !important;
  }

  .checkout-page__woocommerce th,
  .checkout-page__woocommerce td,
  .cart-page__woocommerce th,
  .cart-page__woocommerce td {
    overflow-wrap: anywhere;
  }

  .checkout-page__woocommerce #payment {
    padding: 14px !important;
  }

  .checkout-page__woocommerce #payment ul.payment_methods li {
    padding: 12px;
  }

  .checkout-page__woocommerce .wc-stripe-upe-element.StripeElement,
  .checkout-page__woocommerce .wc-stripe-upe-element .__PrivateStripeElement,
  .checkout-page__woocommerce .wc-stripe-upe-element iframe {
    min-height: 440px !important;
    height: 440px !important;
  }

  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce form .form-row select,
  .rr-shipping-address-card input {
    width: 100%;
    min-width: 0;
  }
}

/* responsive polish 2306 */
.collections-poster--rebellion-square,
.chaos-stack--single .chaos-stack__item--rebellion {
  transform: none !important;
}

@media (max-width: 980px) {
  .hero-video--chaos {
    align-items: end;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 104px 0 32px;
  }

  .hero-video--chaos .hero-video__media,
  .hero-video--chaos .hero-video__fallback {
    object-fit: cover;
    object-position: center center;
  }

  .hero-video--chaos .hero-video__overlay {
    background:
      linear-gradient(180deg, rgba(31, 13, 25, 0.26), rgba(31, 13, 25, 0.12) 36%, rgba(31, 13, 25, 0.78)),
      linear-gradient(90deg, rgba(31, 13, 25, 0.48), rgba(31, 13, 25, 0.06) 58%);
  }

  .hero-video--chaos .hero-video__content {
    width: min(560px, calc(100% - 40px));
    max-width: none;
    margin: 0;
    border-left: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(31, 13, 25, 0.56), rgba(31, 13, 25, 0.26));
    box-shadow: 0 22px 60px rgba(31, 13, 25, 0.24);
    padding: 18px;
  }

  .hero-video--chaos .hero-video__lead {
    max-width: 42ch;
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .hero-chaos__word {
    opacity: 0.55;
  }

  .manifesto__visual--video,
  .manifesto-video {
    min-height: min(72svh, 620px);
  }

  .manifesto__visual--video {
    transform: none;
  }

  .bandana-video {
    min-height: min(78svh, 720px);
  }

  .collections-poster--rebellion-square {
    width: min(470px, 88vw);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 0;
  }

  .header-bar {
    min-height: 54px;
  }

  .hero-video--chaos {
    align-items: start;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: auto;
    padding: clamp(280px, 68vw, 350px) 0 24px;
  }

  .hero-video--chaos .hero-video__backdrop {
    filter: blur(10px) saturate(1.1);
    opacity: 0.36;
  }

  .hero-video--chaos .hero-video__media,
  .hero-video--chaos .hero-video__fallback {
    object-fit: contain;
    object-position: center top;
    background: transparent;
  }

  .hero-video--chaos .hero-video__content {
    width: calc(100% - 24px);
    margin-inline: auto;
    padding: 14px;
    background: linear-gradient(180deg, rgba(31, 13, 25, 0.64), rgba(31, 13, 25, 0.36));
    box-shadow: 0 16px 44px rgba(31, 13, 25, 0.24);
    backdrop-filter: blur(8px);
  }

  .hero-video--chaos .hero-video__lead {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .hero-video--chaos .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-video--chaos .button {
    min-height: 42px;
    padding: 12px 13px;
    font-size: 0.72rem;
  }

  .hero-chaos {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hit-ribbon {
    padding: 22px 0 26px;
  }

  .manifesto__grid,
  .chaos-wall__grid,
  .world-story,
  .clement-feature__grid {
    gap: 28px;
  }

  .manifesto__copy {
    border-left-width: 6px;
    padding-left: 16px;
  }

  .manifesto__lead {
    font-size: 1.82rem !important;
    line-height: 1.08;
  }

  .manifesto__visual--video,
  .manifesto-video {
    min-height: min(74svh, 520px);
  }

  .manifesto__visual--video {
    border-width: 5px;
  }

  .ice-feature,
  .bandana-video {
    min-height: 540px;
  }

  .ice-feature__copy,
  .bandana-video__caption {
    padding-bottom: 36px;
  }

  .ice-feature__copy h2,
  .bandana-video__caption h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
    line-height: 0.96;
  }

  .ice-feature__copy > .eyebrow {
    font-size: clamp(0.96rem, 5vw, 1.36rem);
    line-height: 1.08;
  }

  .ice-feature__copy p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .chaos-stack--single .chaos-stack__item--rebellion {
    width: min(100%, 420px);
    border-width: 4px;
  }

  .chaos-stack--single .chaos-stack__item--rebellion img {
    object-fit: contain;
  }

  .collections-hero {
    padding: 98px 0 46px;
  }

  .collections-hero__grid {
    gap: 24px;
  }

  .collections-hero__copy {
    gap: 14px;
  }

  .collections-hero__copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 0.92;
  }

  .collections-hero__copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .collections-poster--rebellion-square {
    width: min(320px, 76vw);
    border-width: 5px;
  }

  .collection-card figure {
    min-height: 280px;
  }

  .collection-card__motion video {
    min-height: 280px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 420px) {
  .hero-video--chaos {
    padding-top: clamp(250px, 68vw, 310px);
  }

  .hero-video--chaos .hero-video__content {
    width: calc(100% - 20px);
    padding: 12px;
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.88rem;
  }

  .hero-video--chaos .button {
    min-height: 40px;
    padding: 11px 12px;
  }

  .collections-poster--rebellion-square {
    width: min(292px, 78vw);
  }
}

@media (max-width: 920px) and (max-height: 560px) and (orientation: landscape) {
  .hero-video--chaos {
    min-height: 560px;
    padding: 78px 0 18px;
  }

  .hero-video--chaos .hero-video__content {
    max-width: 480px;
    padding: 12px 14px;
  }

  .hero-video--chaos .hero-video__lead {
    margin-bottom: 10px;
  }

  .hero-video--chaos .button-row {
    display: flex;
    flex-wrap: wrap;
  }
}

/* typography harmony 2506 */
:root {
  --type-body-balanced: clamp(0.95rem, 0.98vw, 1.03rem);
  --type-copy-balanced: clamp(0.96rem, 1vw, 1.06rem);
  --type-lead-balanced: clamp(1rem, 1.25vw, 1.16rem);
  --type-eyebrow-balanced: clamp(0.76rem, 0.8vw, 0.84rem);
  --type-h1-balanced: clamp(3.25rem, 6.8vw, 7.2rem);
  --type-h2-balanced: clamp(2.55rem, 5.2vw, 5.3rem);
  --type-h3-balanced: clamp(1.55rem, 2.8vw, 2.55rem);
}

body {
  font-size: var(--type-body-balanced);
}

h1 {
  font-size: var(--type-h1-balanced);
  line-height: 0.94;
}

h2,
.world-story__copy h2,
.gallery-section__header h2,
.cuvees__header h2,
.shop-section__header h2,
.shop-catalog__header h2,
.checkout-band__copy h2,
.cart-page__header h1,
.cart-page__header h2,
.account-intro h1,
.legal-page__header h1 {
  font-size: var(--type-h2-balanced);
  line-height: 0.96;
}

.chaos-wall__copy h2,
.pdf-extracts__header h2,
.home-shop__sidebar h2,
.product-detail__intro h2,
.collections-compact__header h2,
.collection-motion__header h2,
.checkout-hero__content h1 {
  font-size: clamp(2.45rem, 4.8vw, 4.85rem);
  line-height: 0.97;
}

.pink-manifesto h2,
.ice-feature__copy h2,
.bandana-video__caption h2,
.clement-feature__copy h2,
.collections-hero__copy h1,
.shop-hero__copy h1 {
  font-size: clamp(2.9rem, 6.4vw, 6.4rem);
  line-height: 0.94;
}

.manifesto__lead,
.chaos-wall__signature {
  font-size: clamp(1.75rem, 3.2vw, 3.35rem) !important;
  line-height: 1.06;
}

.eyebrow,
.product-tag,
.shop-polaroid figcaption,
.collection-card__facts dt,
.product-attributes li,
.shop-sidebar__nav small {
  font-size: var(--type-eyebrow-balanced);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button {
  font-size: clamp(0.75rem, 0.82vw, 0.84rem);
}

.hero-video__lead,
.manifesto__copy p:not(.eyebrow),
.chaos-wall__copy p:not(.eyebrow),
.world-story__copy p:not(.eyebrow),
.pdf-extracts__header p:not(.eyebrow),
.home-shop__sidebar p:not(.eyebrow),
.shop-section__header p,
.shop-catalog__header p,
.shop-hero__copy p:not(.eyebrow):not(.brand-mark),
.collections-hero__copy p:not(.eyebrow),
.collections-compact__header p,
.collection-wine__lead,
.checkout-hero__content p,
.cart-page__header p,
.legal-page__header .manifesto__lead {
  font-size: var(--type-lead-balanced);
  line-height: 1.62;
}

.legal-page__header .manifesto__lead {
  font-size: var(--type-lead-balanced) !important;
  line-height: 1.62;
}

.home-wine p:not(.product-tag),
.archive-product p,
.product-buy-card__body p:not(.product-tag),
.collection-card__body > p:not(.eyebrow),
.collection-wine__copy p:not(.eyebrow):not(.collection-wine__lead),
.collections-world__copy p:not(.eyebrow),
.clement-feature__copy p:not(.eyebrow),
.ice-feature__copy p:not(.eyebrow),
.legal-card p,
.legal-card li {
  font-size: var(--type-copy-balanced);
  line-height: 1.64;
}

.home-wine h3,
.archive-product h3,
.purchase-panel h3,
.shop-prices h3,
.product-buy-card__body h3,
.collection-card__body h3,
.winemaker h3 {
  font-size: var(--type-h3-balanced);
  line-height: 1.03;
}

.hero-video--chaos .hero-video__content {
  max-width: 400px;
  padding: 12px 0 12px 16px;
}

.hero-video--chaos .hero-video__lead {
  max-width: 380px;
  margin: 10px 0 18px;
  font-size: clamp(0.9rem, 1.02vw, 0.98rem);
  line-height: 1.5;
}

.hero-video--chaos .button-row {
  gap: 9px;
}

.hero-video--chaos .button {
  min-height: 42px;
  padding: 12px 16px;
}

.home-wine h3,
.product-buy-card__body h3 {
  margin-bottom: 6px;
}

@media (max-width: 980px) {
  :root {
    --type-h1-balanced: clamp(3rem, 9vw, 5.6rem);
    --type-h2-balanced: clamp(2.45rem, 7.2vw, 4.5rem);
    --type-h3-balanced: clamp(1.48rem, 4vw, 2.25rem);
  }

  .hero-video--chaos .hero-video__content {
    width: min(500px, calc(100% - 44px));
    max-width: none;
    padding: 15px;
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 56px;
    --type-body-balanced: 0.95rem;
    --type-copy-balanced: 0.94rem;
    --type-lead-balanced: 0.98rem;
    --type-eyebrow-balanced: 0.74rem;
    --type-h1-balanced: clamp(2.6rem, 12vw, 3.8rem);
    --type-h2-balanced: clamp(2.15rem, 10vw, 3.25rem);
    --type-h3-balanced: clamp(1.42rem, 7vw, 2.05rem);
  }

  .pink-manifesto h2,
  .ice-feature__copy h2,
  .bandana-video__caption h2,
  .clement-feature__copy h2,
  .collections-hero__copy h1,
  .shop-hero__copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .manifesto__lead,
  .chaos-wall__signature {
    font-size: clamp(1.55rem, 8vw, 2.25rem) !important;
  }

  .hero-video--chaos .hero-video__content {
    width: calc(100% - 38px);
    padding: 10px;
  }

  .hero-video--chaos .hero-video__lead {
    margin-bottom: 9px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-video--chaos .button {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 0.7rem;
  }

  .button-row {
    gap: 9px;
  }
}

@media (max-width: 420px) {
  .hero-video--chaos .hero-video__content {
    width: calc(100% - 32px);
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.84rem;
  }
}

/* typography harmony refinements */
.woo-shop-products__header h2 {
  font-size: clamp(2.75rem, 5.1vw, 4.8rem);
}

body.rose-rose-shop-page .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.rose-rose-product-page .related .woocommerce-loop-product__title {
  min-height: 2.05em;
  font-size: clamp(1.45rem, 2.05vw, 1.95rem);
  line-height: 1.05;
}

body.rose-rose-shop-page .woocommerce ul.products li.product .price,
body.rose-rose-product-page .related ul.products li.product .price {
  font-size: 0.98rem;
}

@media (max-width: 680px) {
  .hero-video--chaos .hero-video__content {
    width: calc(100% - 48px);
    padding: 9px;
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .hero-video--chaos .button {
    min-height: 36px;
    padding: 9px 11px;
    font-size: 0.68rem;
  }

  .collections-hero__copy h1,
  .shop-hero__copy h1,
  .checkout-hero__content h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.2rem);
    line-height: 0.96;
  }
}

@media (max-width: 420px) {
  .hero-video--chaos .hero-video__content {
    width: calc(100% - 44px);
  }
}

/* typography compression 2506 */
:root {
  --type-body-balanced: clamp(0.98rem, 0.98vw, 1.04rem);
  --type-copy-balanced: clamp(0.98rem, 0.98vw, 1.04rem);
  --type-lead-balanced: clamp(1rem, 1.08vw, 1.1rem);
  --type-eyebrow-balanced: clamp(0.82rem, 0.84vw, 0.9rem);
  --type-h1-balanced: clamp(2.95rem, 5.6vw, 6.1rem);
  --type-h2-balanced: clamp(2.35rem, 4.5vw, 4.55rem);
  --type-h3-balanced: clamp(1.45rem, 2.35vw, 2.1rem);
}

h1,
.checkout-hero__content h1 {
  font-size: var(--type-h1-balanced);
}

h2,
.world-story__copy h2,
.gallery-section__header h2,
.cuvees__header h2,
.shop-section__header h2,
.shop-catalog__header h2,
.checkout-band__copy h2,
.cart-page__header h1,
.cart-page__header h2,
.account-intro h1,
.legal-page__header h1 {
  font-size: var(--type-h2-balanced);
}

.chaos-wall__copy h2,
.pdf-extracts__header h2,
.home-shop__sidebar h2,
.product-detail__intro h2,
.collections-compact__header h2,
.collection-motion__header h2 {
  font-size: clamp(2.25rem, 4vw, 4.05rem);
}

.pink-manifesto h2,
.ice-feature__copy h2,
.bandana-video__caption h2,
.clement-feature__copy h2,
.collections-hero__copy h1,
.shop-hero__copy h1 {
  font-size: clamp(2.55rem, 5.2vw, 5.25rem);
}

.manifesto__lead,
.chaos-wall__signature {
  font-size: clamp(1.65rem, 2.65vw, 2.8rem) !important;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button {
  font-size: clamp(0.8rem, 0.84vw, 0.9rem);
}

.hero-video--chaos .eyebrow {
  display: none !important;
}

.hero-video--chaos .hero-video__content {
  max-width: 320px;
  border-left-width: 3px;
  padding: 8px 0 8px 12px;
}

.hero-video--chaos .hero-video__lead {
  max-width: 300px;
  margin: 0 0 10px;
  font-size: clamp(0.78rem, 0.88vw, 0.88rem);
  line-height: 1.42;
}

.hero-video--chaos .button-row {
  gap: 7px;
}

.hero-video--chaos .button {
  min-height: 34px;
  padding: 9px 12px;
  font-size: clamp(0.72rem, 0.76vw, 0.8rem);
}

.woo-shop-products__header h2 {
  font-size: clamp(2.45rem, 4.35vw, 4rem);
}

body.rose-rose-shop-page .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.rose-rose-product-page .related .woocommerce-loop-product__title {
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
}

@media (max-width: 980px) {
  :root {
    --type-h1-balanced: clamp(2.65rem, 7.4vw, 4.7rem);
    --type-h2-balanced: clamp(2.2rem, 6vw, 3.75rem);
    --type-h3-balanced: clamp(1.38rem, 3.5vw, 2rem);
  }

  .hero-video--chaos .hero-video__content {
    width: min(420px, calc(100% - 56px));
    padding: 10px;
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 52px;
    --type-body-balanced: 0.96rem;
    --type-copy-balanced: 0.96rem;
    --type-lead-balanced: 0.98rem;
    --type-eyebrow-balanced: 0.78rem;
    --type-h1-balanced: clamp(2.25rem, 10vw, 3.1rem);
    --type-h2-balanced: clamp(2rem, 8.8vw, 2.85rem);
    --type-h3-balanced: clamp(1.34rem, 6vw, 1.85rem);
  }

  .pink-manifesto h2,
  .ice-feature__copy h2,
  .bandana-video__caption h2,
  .clement-feature__copy h2,
  .collections-hero__copy h1,
  .shop-hero__copy h1 {
    font-size: clamp(2rem, 9.4vw, 2.9rem);
  }

  .manifesto__lead,
  .chaos-wall__signature {
    font-size: clamp(1.42rem, 6.8vw, 2rem) !important;
  }

  .hero-video--chaos .hero-video__content {
    width: calc(100% - 72px);
    padding: 7px;
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .hero-video--chaos .button {
    min-height: 32px;
    padding: 8px 10px;
    font-size: 0.66rem;
  }
}

@media (max-width: 420px) {
  .hero-video--chaos .hero-video__content {
    width: calc(100% - 68px);
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.72rem;
  }
}

/* compact density 2506 */
:root {
  --header-height: 68px;
  --section-space: 68px;
  --type-body-balanced: clamp(0.9rem, 0.9vw, 0.98rem);
  --type-copy-balanced: clamp(0.9rem, 0.9vw, 0.98rem);
  --type-lead-balanced: clamp(0.94rem, 0.98vw, 1.04rem);
  --type-eyebrow-balanced: clamp(0.72rem, 0.75vw, 0.8rem);
  --type-h1-balanced: clamp(2.45rem, 4.6vw, 4.95rem);
  --type-h2-balanced: clamp(1.95rem, 3.65vw, 3.65rem);
  --type-h3-balanced: clamp(1.22rem, 1.9vw, 1.72rem);
}

body.rose-rose-maquette,
body.rose-rose-maquette .woocommerce {
  font-size: 15px;
  line-height: 1.5;
}

.site-header {
  padding: 8px 0;
}

.header-bar {
  min-height: 46px;
  gap: 18px;
}

.site-logo--image {
  width: clamp(92px, 8vw, 124px);
}

.site-logo--image img {
  max-height: 46px;
}

.site-nav {
  gap: 22px;
  font-size: 0.7rem;
}

.cart-button,
.menu-toggle {
  width: 38px;
  height: 38px;
}

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

.section {
  padding: var(--section-space) 0;
}

.eyebrow,
.product-tag,
.collection-label,
.checkout-progress,
.site-footer nav,
.footer-contact-line {
  font-size: var(--type-eyebrow-balanced);
}

h1,
.checkout-hero__content h1,
.collections-hero__copy h1,
.shop-hero__copy h1,
.woo-shop-hero__copy h1 {
  font-size: var(--type-h1-balanced);
}

h2,
.world-story__copy h2,
.gallery-section__header h2,
.cuvees__header h2,
.shop-section__header h2,
.shop-catalog__header h2,
.checkout-band__copy h2,
.cart-page__header h1,
.cart-page__header h2,
.cart-page__compact-title h1,
.account-intro h1,
.legal-page__header h1,
.woo-shop-products__header h2 {
  font-size: var(--type-h2-balanced);
  line-height: 0.96;
}

h3,
.home-shop__sidebar h2,
.product-detail__intro h2,
.collections-compact__header h2,
.collection-motion__header h2,
.rr-order-card h2 {
  font-size: clamp(1.75rem, 3.25vw, 3.15rem);
}

.pink-manifesto h2,
.ice-feature__copy h2,
.bandana-video__caption h2,
.clement-feature__copy h2,
.chaos-wall__copy h2,
.pdf-extracts__header h2 {
  font-size: clamp(2rem, 4.45vw, 4.2rem);
}

.manifesto__lead,
.chaos-wall__signature,
.legal-page__header .manifesto__lead {
  font-size: clamp(1.28rem, 2.2vw, 2.25rem) !important;
}

.hero-video--chaos {
  min-height: clamp(560px, 78svh, 760px);
  padding: 92px 0 34px;
}

.hero-video--chaos .hero-video__content {
  max-width: 265px;
  border-left-width: 2px;
  padding: 5px 0 5px 9px;
  background: linear-gradient(90deg, rgba(31, 13, 25, 0.22), transparent);
}

.hero-video--chaos .hero-video__lead {
  max-width: 245px;
  margin: 0 0 7px;
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  line-height: 1.32;
}

.hero-video--chaos .button-row {
  gap: 5px;
}

.hero-video--chaos .button {
  min-height: 29px;
  padding: 7px 10px;
  font-size: clamp(0.62rem, 0.66vw, 0.7rem);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button {
  min-height: 40px;
  padding: 11px 18px;
  font-size: clamp(0.72rem, 0.76vw, 0.82rem);
}

.manifesto__copy p:not(.eyebrow),
.chaos-wall__copy p:not(.eyebrow),
.world-story__copy p:not(.eyebrow),
.shop-section__header p,
.home-shop__sidebar p:not(.eyebrow),
.product-card__copy,
.shop-hero__copy p:not(.eyebrow):not(.brand-mark),
.collections-hero__copy p:not(.eyebrow),
.woo-shop-hero__copy p:not(.eyebrow),
.checkout-hero__content p,
.cart-page__header p,
.legal-page__header .manifesto__lead,
.contact-section__content > p:not(.eyebrow) {
  font-size: var(--type-lead-balanced);
  line-height: 1.48;
}

.product-card h3,
.collection-card h3,
.woocommerce-loop-product__title,
body.rose-rose-shop-page .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.rose-rose-product-page .related .woocommerce-loop-product__title {
  font-size: clamp(1.16rem, 1.48vw, 1.45rem);
  line-height: 1.08;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.05rem, 4vw, 3.8rem);
}

.shop-hero,
.collections-hero,
.checkout-hero,
.legal-page__header,
.cart-page--pro,
.checkout-page--pro {
  padding-top: clamp(92px, 8vw, 118px);
  padding-bottom: clamp(46px, 5.5vw, 70px);
}

.home-shop,
.manifesto,
.chaos-wall,
.world-story,
.pink-manifesto,
.contact-section {
  padding-top: clamp(52px, 6vw, 72px);
  padding-bottom: clamp(52px, 6vw, 72px);
}

@media (max-width: 980px) {
  :root {
    --header-height: 64px;
    --section-space: 54px;
    --type-h1-balanced: clamp(2.15rem, 6.8vw, 3.9rem);
    --type-h2-balanced: clamp(1.82rem, 5.35vw, 3.1rem);
    --type-h3-balanced: clamp(1.14rem, 3vw, 1.65rem);
  }

  .hero-video--chaos {
    min-height: clamp(520px, 72svh, 700px);
    padding: 78px 0 26px;
  }

  .hero-video--chaos .hero-video__content {
    width: min(310px, calc(100% - 58px));
    padding: 5px 0 5px 8px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 58px;
    --section-space: 44px;
    --type-body-balanced: 0.88rem;
    --type-copy-balanced: 0.88rem;
    --type-lead-balanced: 0.9rem;
    --type-eyebrow-balanced: 0.68rem;
    --type-h1-balanced: clamp(1.9rem, 8.6vw, 2.6rem);
    --type-h2-balanced: clamp(1.62rem, 7.2vw, 2.35rem);
    --type-h3-balanced: clamp(1.08rem, 5.2vw, 1.5rem);
  }

  body.rose-rose-maquette,
  body.rose-rose-maquette .woocommerce {
    font-size: 14px;
    line-height: 1.46;
  }

  .site-header {
    padding: 6px 0;
  }

  .header-bar {
    min-height: 42px;
  }

  .site-logo--image {
    width: min(88px, 28vw);
  }

  .site-logo--image img {
    max-height: 40px;
  }

  .cart-button,
  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .hero-video--chaos {
    min-height: 68svh;
    padding: 64px 0 18px;
  }

  .hero-video--chaos .hero-video__content {
    width: min(270px, calc(100% - 70px));
    padding: 4px 0 4px 7px;
  }

  .hero-video--chaos .hero-video__lead {
    max-width: 235px;
    margin-bottom: 6px;
    font-size: 0.66rem;
    line-height: 1.26;
  }

  .hero-video--chaos .button {
    min-height: 27px;
    padding: 6px 8px;
    font-size: 0.58rem;
  }

  .pink-manifesto h2,
  .ice-feature__copy h2,
  .bandana-video__caption h2,
  .clement-feature__copy h2,
  .chaos-wall__copy h2,
  .pdf-extracts__header h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.55rem);
  }

  .manifesto__lead,
  .chaos-wall__signature,
  .legal-page__header .manifesto__lead {
    font-size: clamp(1.12rem, 5.4vw, 1.62rem) !important;
  }

  .shop-hero,
  .collections-hero,
  .checkout-hero,
  .legal-page__header,
  .cart-page--pro,
  .checkout-page--pro {
    padding-top: 78px;
    padding-bottom: 42px;
  }
}

@media (max-width: 420px) {
  .hero-video--chaos {
    min-height: 64svh;
  }

  .hero-video--chaos .hero-video__content {
    width: min(250px, calc(100% - 62px));
  }

  .hero-video--chaos .button-row {
    gap: 4px;
  }
}

/* entry tightening 2506 */
.hero-video--chaos {
  min-height: clamp(520px, 66svh, 680px);
  padding-top: 76px;
  padding-bottom: 26px;
}

.woo-shop-products--direct {
  padding-top: clamp(74px, 7vw, 96px);
}

.woo-shop-products__header {
  gap: 8px;
  margin-bottom: 24px;
}

.woo-shop-products__header h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.5rem);
}

.woo-shop-products__header p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.42;
}

@media (max-width: 680px) {
  .hero-video--chaos {
    min-height: clamp(310px, 42svh, 360px);
    padding-top: 58px;
    padding-bottom: 12px;
  }

  .hero-video--chaos .hero-video__content {
    width: min(245px, calc(100% - 64px));
    padding-left: 6px;
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.62rem;
  }

  .woo-shop-products--direct {
    padding-top: 58px;
  }

  .woo-shop-products__header {
    margin-bottom: 18px;
  }
}

@media (max-width: 420px) {
  .hero-video--chaos {
    min-height: clamp(292px, 39svh, 330px);
  }

  .woo-shop-products--direct {
    padding-top: 48px;
  }
}

/* compact WooCommerce mobile cards 2506 */
.woo-shop-products__catalog,
.woo-shop-products__catalog .woocommerce,
.woo-shop-products__catalog .woocommerce ul.products {
  max-width: 100%;
  overflow-x: clip;
}

.woo-shop-products__catalog.reveal {
  opacity: 1;
  transform: none;
}

.woo-shop-products__catalog .woocommerce ul.products {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 680px) {
  .woo-shop-products__catalog .woocommerce ul.products {
    width: 100% !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }

  body.rose-rose-shop-page .woocommerce ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px;
  }

  body.rose-rose-shop-page .woocommerce ul.products li.product a img {
    height: clamp(190px, 58vw, 245px);
    margin-bottom: 12px;
  }

  body.rose-rose-shop-page .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
  }
}

/* 2706 client hero feedback */
.hero-video--chaos .hero-video__media,
.hero-video--chaos .hero-video__fallback {
  object-position: center center;
}

.hero-video--chaos .hero-video__content {
  align-self: end;
  justify-self: start;
  margin-right: auto;
  margin-left: clamp(18px, 5vw, 72px);
}

@media (max-width: 680px) {
  .hero-video--chaos .hero-video__content {
    margin-left: 16px;
  }
}

/* hard hero anchor 0407 */
.hero-video--chaos .hero-video__content.container {
  position: absolute;
  right: auto;
  bottom: clamp(18px, 5svh, 48px);
  left: clamp(14px, 4vw, 52px);
  width: min(300px, calc(100vw - 32px));
  max-width: min(300px, calc(100vw - 32px));
  margin: 0 !important;
  padding: 8px 0 8px 12px;
  transform: none;
}

.hero-video--chaos .hero-video__content.container .button-row {
  justify-content: flex-start;
}

@media (max-width: 680px) {
  .hero-video--chaos .hero-video__content.container {
    bottom: 14px;
    left: 12px;
    width: min(260px, calc(100vw - 24px));
    max-width: min(260px, calc(100vw - 24px));
    padding: 6px 0 6px 8px;
  }
}

/* 0407: keep the hero video above the salmon background on every browser */
.hero-video--chaos .hero-video__backdrop {
  z-index: 0;
}

.hero-video--chaos .hero-video__fallback {
  z-index: 1;
}

.hero-video--chaos .hero-video__media {
  z-index: 2;
  opacity: 1;
}

.hero-video--chaos .hero-video__overlay {
  z-index: 3;
  pointer-events: none;
}

.hero-video--chaos .hero-video__content,
.hero-video--chaos .scroll-cue {
  z-index: 4;
}

.hero-video--chaos .hero-video__media.is-unavailable {
  opacity: 0;
}

@media (max-width: 680px) {
  .hero-video__media--desktop {
    display: none;
  }

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

/* Restored winemaker block */
.clement-feature {
  padding-block: clamp(48px, 7vw, 86px);
}

.clement-feature .clement-feature__grid {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.8fr);
  max-width: 1120px;
}

.clement-feature .clement-feature__image {
  justify-self: center;
  width: min(100%, 380px);
  transform: rotate(-1deg);
}

.clement-feature .clement-feature__image img {
  aspect-ratio: 1;
  padding: 10px;
}

.clement-feature .clement-feature__copy {
  gap: 12px;
}

.clement-feature .clement-feature__copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 0.98;
}

.clement-feature .clement-feature__copy p:not(.eyebrow) {
  max-width: 700px;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 650;
  line-height: 1.62;
}

@media (max-width: 760px) {
  .clement-feature .clement-feature__grid {
    grid-template-columns: 1fr;
  }

  .clement-feature .clement-feature__image {
    width: min(100%, 300px);
    justify-self: start;
  }

  .clement-feature .clement-feature__copy h2 {
    font-size: clamp(1.78rem, 8vw, 2.5rem);
  }
}

.clement-feature--profile .clement-feature__grid {
  grid-template-columns: minmax(360px, 0.74fr) minmax(280px, 0.42fr);
  max-width: 1240px;
  align-items: center;
}

.clement-feature--profile .clement-feature__image {
  width: 100%;
  max-width: 760px;
  transform: rotate(-0.5deg);
}

.clement-feature--profile .clement-feature__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  padding: 0;
  object-fit: contain;
  background: #f4a49a;
}

.clement-feature--profile .clement-feature__copy {
  align-self: center;
  padding-block: clamp(12px, 3vw, 32px);
}

.clement-feature--profile .clement-feature__copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

@media (max-width: 860px) {
  .clement-feature--profile .clement-feature__grid {
    grid-template-columns: 1fr;
  }

  .clement-feature--profile .clement-feature__image {
    max-width: 100%;
    transform: none;
  }
}

/* final mobile fluidity pass */
@media (min-width: 681px) {
  .hero-video--chaos .hero-video__media--desktop {
    display: block;
    object-fit: cover;
    object-position: center center;
  }

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

@media (max-width: 760px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    font-size: 15px;
    line-height: 1.56;
  }

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

  .section,
  .home-shop,
  .hit-ribbon,
  .pdf-extracts,
  .chaos-wall,
  .brand-world,
  .contact-section,
  .manifesto,
  .clement-feature {
    padding-block: clamp(34px, 11vw, 56px) !important;
  }

  .hero-video--chaos {
    min-height: 88svh !important;
    height: 88svh;
    padding: 78px 0 16px !important;
  }

  .hero-video--chaos .hero-video__media--mobile,
  .hero-video--chaos .hero-video__fallback {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-video--chaos .hero-video__content.container {
    bottom: 14px !important;
    left: 14px !important;
    width: min(226px, calc(100vw - 28px)) !important;
    max-width: min(226px, calc(100vw - 28px)) !important;
    border-left-width: 2px;
    padding: 6px 0 6px 8px !important;
    background: linear-gradient(90deg, rgba(31, 13, 25, 0.28), transparent);
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.72rem !important;
    line-height: 1.34;
  }

  .hero-video--chaos .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-video--chaos .button {
    min-height: 34px;
    padding: 8px 9px;
    font-size: 0.58rem;
  }

  .hit-ribbon__inner,
  .home-shop__grid,
  .chaos-wall__grid,
  .manifesto__grid,
  .world-story,
  .contact-section__grid,
  .clement-feature--profile .clement-feature__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .hit-ribbon__inner {
    align-items: center;
  }

  .hit-ribbon__side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .hit-ribbon__side span {
    font-size: clamp(1.7rem, 12vw, 2.8rem);
  }

  .hit-ribbon__banner,
  .hit-ribbon__poster,
  .hit-ribbon__shoe {
    width: 100%;
    transform: none;
  }

  .hit-ribbon__poster,
  .hit-ribbon__shoe {
    max-width: 150px;
  }

  .hit-ribbon__banner img,
  .hit-ribbon__shoe img,
  .hit-ribbon__poster img {
    max-height: 220px;
    object-fit: contain;
  }

  .hit-ribbon__cta {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 0.66rem;
  }

  .home-shop__sidebar,
  .contact-section__content,
  .contact-form {
    padding: 20px;
  }

  .home-shop__sidebar h2,
  .shop-catalog__header h2,
  .cart-page__compact-title h1,
  .checkout-page__compact-title h1,
  .chaos-wall__copy h2,
  .pdf-extracts__header h2,
  .manifesto__copy h2,
  .world-story__copy h2,
  .contact-section h2,
  .clement-feature--profile .clement-feature__copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem) !important;
    line-height: 0.98;
  }

  .home-shop__sidebar p:not(.eyebrow),
  .shop-catalog__header p,
  .chaos-wall__copy p:not(.eyebrow),
  .pdf-extracts__header p:not(.eyebrow),
  .manifesto__copy p:not(.eyebrow),
  .world-story__copy p,
  .contact-section__content > p:not(.eyebrow),
  .clement-feature--profile .clement-feature__copy p:not(.eyebrow) {
    font-size: 0.92rem !important;
    line-height: 1.56;
  }

  .home-wine {
    grid-template-columns: minmax(72px, 92px) 1fr;
    gap: 12px;
    padding: 14px;
  }

  .home-wine img {
    max-height: 118px;
    object-fit: contain;
  }

  .home-wine h3,
  .product-buy-card__body h3,
  .woocommerce-loop-product__title {
    font-size: clamp(1.1rem, 5vw, 1.45rem) !important;
    line-height: 1.08;
  }

  .clement-feature--profile .clement-feature__image {
    justify-self: center;
    max-width: min(100%, 440px);
  }

  .clement-feature--profile .clement-feature__copy {
    padding-block: 0;
  }

  .ice-feature {
    min-height: 380px !important;
  }

  .ice-feature__copy {
    padding-bottom: 28px;
  }

  .ice-feature__copy h2 {
    font-size: clamp(2rem, 11vw, 3.2rem) !important;
  }

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

  .pdf-extract,
  .pdf-extract--wide {
    grid-column: span 1;
    clip-path: none;
    transform: none;
  }

  .pdf-extract img {
    min-height: 0;
    height: clamp(145px, 42vw, 220px);
    object-fit: cover;
  }

  .manifesto__copy {
    border-left-width: 4px;
    padding-left: 14px;
  }

  .manifesto__lead {
    font-size: clamp(1.35rem, 7vw, 1.85rem) !important;
  }

  .manifesto__visual--video,
  .manifesto-video {
    min-height: 320px !important;
  }

  .manifesto__visual--video {
    border-width: 4px;
    transform: none;
  }

  .world-story__image img {
    max-height: 560px;
    aspect-ratio: 0.75;
    object-fit: cover;
  }

  .woocommerce ul.products li.product a img,
  body.rose-rose-shop-page .woocommerce ul.products li.product a img {
    height: clamp(150px, 48vw, 220px) !important;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 14.5px;
  }

  .container {
    width: min(100% - 22px, var(--container));
  }

  .hero-video--chaos {
    min-height: 84svh !important;
    height: 84svh;
  }

  .hero-video--chaos .hero-video__content.container {
    left: 11px !important;
    bottom: 12px !important;
    width: min(206px, calc(100vw - 22px)) !important;
    max-width: min(206px, calc(100vw - 22px)) !important;
  }

  .hero-video--chaos .hero-video__lead {
    font-size: 0.68rem !important;
  }

  .hero-video--chaos .button {
    min-height: 32px;
    padding: 7px 8px;
    font-size: 0.54rem;
  }

  .pdf-extracts__grid {
    grid-template-columns: 1fr;
  }

  .pdf-extract img {
    height: auto;
    max-height: 260px;
  }

  .home-wine {
    grid-template-columns: 72px 1fr;
  }

  .home-wine img {
    max-height: 96px;
  }
}

@media (max-width: 760px) {
  .age-gate__panel h2 {
    font-size: clamp(2rem, 10vw, 2.55rem) !important;
  }

  .ice-feature__copy h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
  }

  .pdf-extracts__header h2,
  .chaos-wall__copy h2,
  .manifesto__copy h2,
  .world-story__copy h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.7rem) !important;
  }
}

@media (max-width: 420px) {
  .age-gate__panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.25rem) !important;
  }

  .ice-feature__copy h2,
  .pdf-extracts__header h2,
  .chaos-wall__copy h2,
  .manifesto__copy h2,
  .world-story__copy h2 {
    font-size: clamp(1.65rem, 8.2vw, 2.15rem) !important;
  }
}

/* 0507 client refinements */
@media (min-width: 761px) {
  .hero-video--chaos .hero-video__media--desktop {
    object-position: center 34% !important;
  }
}

@media (max-width: 760px) {
  .ice-feature__media {
    min-height: auto !important;
    aspect-ratio: 4 / 5;
  }

  .ice-feature__media img {
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #f7b4cf;
  }

  .hero-video--chaos .hero-video__media--mobile {
    object-position: 68% center !important;
  }

  .carton-offer {
    grid-template-columns: 1fr;
  }

  .rr-carton-form .button {
    width: 100%;
  }

  .rr-shipping-delay {
    grid-column: 1 / -1;
    padding-left: 28px;
  }
}

/* 0607 final media framing */
.hero-video--chaos .hero-video__media,
.hero-video--chaos .hero-video__fallback {
  object-fit: contain !important;
  object-position: center center !important;
  background: var(--color-logo-salmon);
}

.hero-video--chaos .hero-video__fallback img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}

.hero-video--chaos .hero-video__media {
  opacity: 0 !important;
  transition: opacity 420ms ease;
}

.hero-video--chaos .hero-video__media.is-ready {
  opacity: 1 !important;
}

.hero-video--chaos .hero-video__media.is-unavailable {
  opacity: 0 !important;
}

/* 0607: keep the opening screen as the real Vid Site video, never the Pink banner fallback */
.hero-video--chaos .hero-video__fallback {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero-video--chaos.has-video-error .hero-video__fallback {
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-video--chaos.has-video-ready .hero-video__backdrop {
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (min-width: 761px) {
  .home .hero-video--chaos {
    min-height: 100svh !important;
    height: 100svh !important;
  }

  .home .hero-video--chaos .hero-video__media--desktop {
    display: block !important;
    opacity: 1 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .home .hero-video--chaos .hero-video__media--mobile {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .ice-feature {
    min-height: auto !important;
    padding-block: 0 34px !important;
  }

  .ice-feature__media {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 3 / 4;
    background: #f7b4cf;
    padding: 12px;
  }

  .ice-feature__media img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .ice-feature::after {
    inset: auto 0 0;
    height: 58%;
  }

  .ice-feature__copy {
    position: relative;
    padding-top: 22px;
    padding-bottom: 0;
  }
}

/* 0607 final mouth/glass framing */
.ice-feature__media {
  background: var(--color-logo-salmon);
}

.ice-feature__media img {
  object-fit: contain !important;
  object-position: center center !important;
}

/* 0607 Vid Site reset: first screen must be the real desktop video, never cropped by the fixed header */
body.home {
  --rr-home-header-height: 58px;
}

body.home .site-header {
  min-height: var(--rr-home-header-height);
  padding: 4px 0 !important;
}

body.home .header-bar {
  min-height: 46px !important;
}

body.home .site-logo--image {
  width: clamp(86px, 7vw, 112px) !important;
}

body.home .site-logo--image img {
  max-height: 42px !important;
}

body.home .site-nav {
  gap: clamp(16px, 1.8vw, 22px) !important;
  font-size: 0.66rem !important;
}

body.home .cart-button,
body.home .menu-toggle {
  width: 34px !important;
  height: 34px !important;
}

body.home .hero-video--chaos {
  display: block !important;
  min-height: calc(100vh - var(--rr-home-header-height)) !important;
  height: calc(100vh - var(--rr-home-header-height)) !important;
  margin-top: var(--rr-home-header-height) !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.home .hero-video--chaos .hero-video__backdrop {
  display: none !important;
}

body.home .hero-video--chaos .hero-video__media {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: var(--color-logo-salmon) !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.home .hero-video--chaos .hero-video__overlay {
  background:
    linear-gradient(90deg, rgba(31, 13, 25, 0.46), rgba(31, 13, 25, 0.1) 46%, rgba(31, 13, 25, 0.26)),
    linear-gradient(0deg, rgba(31, 13, 25, 0.52), transparent 48%, rgba(31, 13, 25, 0.16)) !important;
}

body.home .hero-video--chaos .hero-video__content.container {
  bottom: clamp(14px, 3svh, 28px) !important;
  left: clamp(14px, 3vw, 42px) !important;
  width: min(292px, calc(100vw - 28px)) !important;
  max-width: min(292px, calc(100vw - 28px)) !important;
}

@media (min-width: 761px) {
  body.home .hero-video--chaos .hero-video__media--desktop {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.home .hero-video--chaos .hero-video__media--mobile {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body.home {
    --rr-home-header-height: 54px;
  }

  body.home .site-header {
    min-height: var(--rr-home-header-height);
    padding: 4px 0 !important;
  }

  body.home .header-bar {
    min-height: 42px !important;
  }

  body.home .site-logo--image {
    width: clamp(78px, 24vw, 98px) !important;
  }

  body.home .site-logo--image img {
    max-height: 38px !important;
  }

  body.home .hero-video--chaos {
    min-height: calc(100vh - var(--rr-home-header-height)) !important;
    height: calc(100vh - var(--rr-home-header-height)) !important;
    margin-top: var(--rr-home-header-height) !important;
  }

  body.home .hero-video--chaos .hero-video__media--desktop {
    display: none !important;
  }

  body.home .hero-video--chaos .hero-video__media--mobile {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  body.home .hero-video--chaos .hero-video__content.container {
    bottom: 12px !important;
    left: 11px !important;
    width: min(212px, calc(100vw - 22px)) !important;
    max-width: min(212px, calc(100vw - 22px)) !important;
  }
}

@supports (height: 100dvh) {
  body.home .hero-video--chaos {
    min-height: calc(100dvh - var(--rr-home-header-height)) !important;
    height: calc(100dvh - var(--rr-home-header-height)) !important;
  }
}

/* 0707 clean related products */
body.rose-rose-product-page .related.products,
body.rose-rose-product-page section.related {
  clear: both;
  margin-top: clamp(34px, 5vw, 62px) !important;
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 228, 236, 0.78)),
    var(--color-paper);
  padding: clamp(18px, 3vw, 30px) !important;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(67, 24, 43, 0.08);
}

body.rose-rose-product-page .related.products > h2,
body.rose-rose-product-page section.related > h2 {
  max-width: 980px;
  margin: 0 0 clamp(16px, 2.4vw, 24px) !important;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2.05rem, 3.3vw, 3.2rem) !important;
  font-weight: 500;
  line-height: 0.96;
}

body.rose-rose-product-page .related ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px) !important;
  align-items: stretch;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

body.rose-rose-product-page .related ul.products::before,
body.rose-rose-product-page .related ul.products::after {
  content: none !important;
}

body.rose-rose-product-page .related ul.products li.product {
  position: relative;
  display: flex !important;
  float: none !important;
  flex-direction: column;
  width: auto !important;
  min-width: 0;
  height: auto !important;
  min-height: 100%;
  margin: 0 !important;
  border: 1px solid rgba(61, 24, 43, 0.12) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  padding: 13px !important;
  text-align: left !important;
  box-shadow: 0 12px 30px rgba(67, 24, 43, 0.08) !important;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body.rose-rose-product-page .related ul.products li.product:hover {
  border-color: rgba(205, 67, 105, 0.22) !important;
  box-shadow: 0 18px 42px rgba(67, 24, 43, 0.12) !important;
  transform: translateY(-2px);
}

body.rose-rose-product-page .related ul.products li.product .woocommerce-loop-product__link {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

body.rose-rose-product-page .related ul.products li.product a img {
  display: block;
  width: 100% !important;
  height: clamp(172px, 19vw, 236px) !important;
  margin: 0 0 12px !important;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(160deg, #fff8ef, #ffe0e9);
  object-fit: contain !important;
  object-position: center center !important;
}

body.rose-rose-product-page .related .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 0;
  margin: 0 0 8px !important;
  overflow: hidden;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem) !important;
  font-weight: 560;
  line-height: 0.98 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.rose-rose-product-page .related .price {
  display: block;
  margin: 2px 0 8px !important;
  color: var(--color-rose-deep) !important;
  font-size: 0.95rem !important;
  font-weight: 950 !important;
  line-height: 1.25;
}

body.rose-rose-product-page .related .price del {
  color: rgba(61, 24, 43, 0.48);
  font-weight: 800;
}

body.rose-rose-product-page .related .price ins {
  color: var(--color-rose-deep);
  text-decoration: none;
}

body.rose-rose-product-page .related .rr-loop-product-description {
  display: -webkit-box;
  min-height: 0 !important;
  margin: 0 0 12px !important;
  overflow: hidden;
  color: rgba(61, 24, 43, 0.74);
  font-size: 0.82rem !important;
  font-weight: 760;
  line-height: 1.42 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.rose-rose-product-page .related .button,
body.rose-rose-product-page .related a.button,
body.rose-rose-product-page .related .added_to_cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: auto !important;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  white-space: normal;
  text-align: center;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px) !important;
  align-items: stretch;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template > li.wc-block-product {
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wc-block-components-product-image {
  min-height: 0 !important;
  aspect-ratio: 1 / 1.02;
  border-radius: 14px;
  overflow: hidden;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wc-block-components-product-image img {
  width: 100% !important;
  height: 100% !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-template .wp-block-post-title a {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(1.35rem, 2.1vw, 1.95rem) !important;
  line-height: 0.98 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 980px) {
  body.rose-rose-product-page .related ul.products,
  body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.rose-rose-product-page .related.products,
  body.rose-rose-product-page section.related {
    border-radius: 18px;
    padding: 15px !important;
  }

  body.rose-rose-product-page .related ul.products,
  body.rose-rose-product-page .wp-block-woocommerce-product-template.wc-block-product-template {
    grid-template-columns: 1fr !important;
  }

  body.rose-rose-product-page .related ul.products li.product {
    border-radius: 16px !important;
    padding: 12px !important;
  }

  body.rose-rose-product-page .related ul.products li.product a img {
    height: clamp(190px, 62vw, 260px) !important;
  }
}

/* 0707 Gutenberg related product collection */
body.rose-rose-product-page .wp-block-woocommerce-product-collection {
  clear: both;
  width: min(1180px, calc(100vw - 32px));
  max-width: 1180px;
  margin: clamp(36px, 5vw, 66px) auto 0 !important;
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 228, 236, 0.76)),
    var(--color-paper);
  padding: clamp(16px, 2.8vw, 30px) !important;
  box-shadow: 0 18px 52px rgba(67, 24, 43, 0.08);
  overflow: hidden;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection > h2.wp-block-heading {
  margin: 0 0 clamp(16px, 2.4vw, 24px) !important;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2.05rem, 3.15vw, 3.15rem) !important;
  font-weight: 500;
  line-height: 0.96;
  text-align: left;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px) !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template > li.wc-block-product,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container > li.wc-block-product {
  display: flex !important;
  flex-direction: column;
  width: auto !important;
  min-width: 0;
  max-width: none !important;
  min-height: 100%;
  margin: 0 !important;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 13px;
  box-shadow: 0 12px 30px rgba(67, 24, 43, 0.08);
  overflow: hidden;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product > * {
  width: 100%;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-image {
  display: grid !important;
  aspect-ratio: 1 / 1.03;
  min-height: 0 !important;
  margin: 0 0 12px !important;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(160deg, #fff8ef, #ffe0e9);
  place-items: center;
  overflow: hidden;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-image a {
  display: grid !important;
  width: 100%;
  height: 100%;
  place-items: center;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-post-title,
body.rose-rose-product-page .wp-block-woocommerce-product-collection h3.wp-block-post-title {
  margin: 0 0 8px !important;
  text-align: left !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-post-title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(1.34rem, 2vw, 1.9rem) !important;
  font-weight: 560;
  line-height: 0.98 !important;
  text-align: left !important;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .rr-loop-product-description {
  display: -webkit-box;
  min-height: 0 !important;
  margin: 0 0 10px !important;
  overflow: hidden;
  color: rgba(61, 24, 43, 0.74);
  font-size: 0.82rem !important;
  font-weight: 760;
  line-height: 1.42 !important;
  text-align: left !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-price,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-price {
  margin: 0 0 12px !important;
  color: var(--color-rose-deep) !important;
  font-size: 0.95rem !important;
  font-weight: 950 !important;
  line-height: 1.25;
  text-align: left !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-price del {
  color: rgba(61, 24, 43, 0.48);
  font-weight: 800;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-price ins {
  color: var(--color-rose-deep);
  text-decoration: none;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-button,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-button {
  display: flex !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-button__button,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-button__link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 42px;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  white-space: normal;
  text-align: center !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

@media (max-width: 980px) {
  body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template,
  body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.rose-rose-product-page .wp-block-woocommerce-product-collection {
    width: min(100%, calc(100vw - 20px));
    border-radius: 18px;
    padding: 14px !important;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template,
  body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container {
    grid-template-columns: 1fr !important;
  }
}

/* 0707 related product cards compact pass */
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container {
  align-items: start !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template > li.wc-block-product,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container > li.wc-block-product {
  min-height: 0 !important;
  height: auto !important;
  gap: 0 !important;
  row-gap: 0 !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-image {
  height: clamp(214px, 18vw, 260px) !important;
  aspect-ratio: auto !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-post-title,
body.rose-rose-product-page .wp-block-woocommerce-product-collection h3.wp-block-post-title {
  display: block !important;
  min-height: 2.25em;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-post-title a {
  display: -webkit-box !important;
}

body.rose-rose-product-page .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-button,
body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-button {
  margin-top: 12px !important;
}

@media (max-width: 640px) {
  body.rose-rose-product-page .wp-block-woocommerce-product-collection .wc-block-components-product-image {
    height: clamp(230px, 68vw, 310px) !important;
  }
}

/* 0707 custom WooCommerce related products */
.rr-related-products {
  clear: both;
  width: min(1180px, calc(100vw - 32px));
  margin: clamp(38px, 5vw, 68px) auto 0;
  border: 1px solid rgba(61, 24, 43, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.98), rgba(255, 229, 237, 0.78)),
    var(--color-paper);
  padding: clamp(18px, 2.8vw, 32px);
  box-shadow: 0 18px 52px rgba(67, 24, 43, 0.08);
}

.rr-related-products__header {
  display: grid;
  gap: 6px;
  margin-bottom: clamp(16px, 2.3vw, 24px);
}

.rr-related-products__header h2 {
  margin: 0;
  color: var(--color-prune);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 500;
  line-height: 0.96;
}

.rr-related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.9vw, 20px);
  align-items: stretch;
}

.rr-related-card {
  display: flex;
  min-width: 0;
  border: 1px solid rgba(61, 24, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(67, 24, 43, 0.08);
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.rr-related-card:hover {
  border-color: rgba(205, 67, 105, 0.24);
  box-shadow: 0 18px 42px rgba(67, 24, 43, 0.12);
  transform: translateY(-2px);
}

.rr-related-card__media {
  position: relative;
  display: grid;
  height: clamp(186px, 15.5vw, 230px);
  margin: 12px 12px 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.86), transparent 44%),
    linear-gradient(160deg, #fff8ef, #ffe0e9);
  overflow: hidden;
  place-items: center;
}

.rr-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.rr-related-card__badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(61, 24, 43, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-prune);
  padding: 5px 9px;
  font-size: 0.65rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.rr-related-card__body {
  display: grid;
  gap: 9px;
  padding: 14px 14px 15px;
}

.rr-related-card__body h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(1.42rem, 1.75vw, 1.9rem);
  font-weight: 560;
  line-height: 0.98;
}

.rr-related-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.rr-related-card__body p {
  display: -webkit-box;
  min-height: 2.75em;
  margin: 0;
  overflow: hidden;
  color: rgba(61, 24, 43, 0.74);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rr-related-card__price {
  color: var(--color-rose-deep);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.25;
}

.rr-related-card__price del {
  color: rgba(61, 24, 43, 0.46);
  font-weight: 800;
}

.rr-related-card__price ins {
  color: var(--color-rose-deep);
  text-decoration: none;
}

.rr-related-card__button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 3px;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  text-align: center;
  white-space: normal;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

.rr-related-card__button--outline {
  border: 1px solid rgba(61, 24, 43, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-prune);
}

.rose-rose-shop-page .product-buy-card__deal,
.rose-rose-shop-page .product-buy-card .carton-offer {
  display: none !important;
}

.rr-single-carton-offer {
  margin: 14px 0 8px;
}

@media (max-width: 1100px) {
  .rr-related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .rr-related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .rr-related-products {
    width: min(100%, calc(100vw - 20px));
    border-radius: 18px;
    padding: 14px;
  }

  .rr-related-products__grid {
    grid-template-columns: 1fr;
  }

  .rr-related-card__media {
    height: clamp(228px, 68vw, 310px);
  }

  .rr-related-card__body {
    padding: 13px;
  }
}

/* 0709 mobile product gallery spacing */
@media (max-width: 782px) {
  body.rose-rose-product-page .wp-block-woocommerce-product-image-gallery {
    display: block;
    margin-bottom: clamp(16px, 5vw, 26px) !important;
    overflow: visible;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__wrapper,
  body.rose-rose-product-page .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image {
    width: 100% !important;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image {
    display: grid;
    min-height: 0;
    padding: clamp(14px, 4vw, 20px) !important;
    place-items: center;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: min(58svh, 500px);
    object-fit: contain !important;
  }

  body.rose-rose-product-page .wp-block-woocommerce-product-price {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
  }
}
