:root {
  --ivory: #f7ecfb;
  --beige: #f2e2f4;
  --charcoal: #2e2a28;
  --gold: #b850a0;
  --espresso: #3a2438;
  --white: #ffffff;
  --sage: #8f6f92;
  --clay: #a8579b;
  --blush: #f9eff8;
  --rosewood: #b850a0;
  --lilac-deep: #7b3f84;
  --lilac-soft: #e8d2ee;
  --line: rgba(46, 42, 40, 0.12);
  --shadow: 0 24px 70px rgba(46, 42, 40, 0.12);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --font-size-md: 1.125rem;
  --font-size-lg: 1.375rem;
  --font-size-xl: clamp(1.55rem, 1.2rem + 1vw, 1.95rem);
  --font-size-2xl: clamp(1.85rem, 1.45rem + 1.6vw, 2.55rem);
  --font-size-3xl: clamp(2.25rem, 1.65rem + 2.4vw, 3.45rem);
  --font-size-display: clamp(2.75rem, 1.7rem + 4.4vw, 4.9rem);
  --font-size-hero: clamp(2.7rem, 1.45rem + 4.2vw, 4.5rem);
  --line-height-tight: 1.08;
  --line-height-heading: 1.18;
  --line-height-body: 1.62;
  --line-height-ui: 1.3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  background:
    radial-gradient(ellipse at 8% 4%, rgba(216, 182, 220, 0.6), transparent 32rem),
    linear-gradient(180deg, var(--ivory), var(--blush));
  color: var(--charcoal);
  font-size: var(--font-size-base);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: var(--line-height-body);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(247, 236, 251, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.logo-brand {
  line-height: 0;
}

.brand-logo-img {
  width: clamp(138px, 13vw, 210px);
  height: auto;
  object-fit: contain;
}

.footer-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.about-nav {
  display: flex;
  gap: 20px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(46, 42, 40, 0.78);
  transition: color 180ms var(--ease-soft);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 190ms var(--ease-soft);
  content: "";
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--espresso);
}

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

.mobile-nav-only,
.mobile-drawer-header,
.mobile-nav-backdrop {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.cart-button,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--charcoal);
}

.icon-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
  transition: transform 180ms var(--ease-soft), border-color 180ms var(--ease-soft), background-color 180ms var(--ease-soft), box-shadow 200ms var(--ease-soft);
}

.icon-button:hover,
.cart-button:hover,
.menu-toggle:hover {
  border-color: rgba(184, 80, 160, 0.24);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(58, 36, 56, 0.1);
  transform: translateY(-1px);
}

.icon-button:active,
.cart-button:active,
.menu-toggle:active {
  transform: scale(0.98);
}

.cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 0;
  padding: 0 7px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--white);
  line-height: 1;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform 180ms var(--ease-soft), border-color 180ms var(--ease-soft), background-color 180ms var(--ease-soft), box-shadow 200ms var(--ease-soft);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--charcoal);
  transition: transform 200ms var(--ease-soft), opacity 160ms var(--ease-soft);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.section-block::before,
.page-hero::before {
  position: absolute;
  width: min(28vw, 340px);
  height: min(18vw, 230px);
  border-radius: 62% 38% 47% 53% / 46% 51% 49% 54%;
  background: rgba(184, 80, 160, 0.11);
  transform: rotate(-9deg);
  content: "";
  pointer-events: none;
}

.hero::before {
  right: 8%;
  top: 16%;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(46, 42, 40, 0.62), rgba(46, 42, 40, 0.15) 52%, rgba(46, 42, 40, 0.03));
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  transform-origin: center;
}

.hero-content {
  width: min(660px, 100%);
  color: var(--white);
  padding-bottom: clamp(36px, 8vh, 92px);
}

.hero-content h1,
.hero-content p,
.hero-content .button {
  animation: heroFadeUp 560ms var(--ease-soft) both;
}

.hero-content p {
  animation-delay: 90ms;
}

.hero-content .button {
  animation-delay: 170ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-phrase,
.newsletter-line {
  color: var(--rosewood);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-heading);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: var(--line-height-tight);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: var(--font-size-3xl);
  max-width: 930px;
}

.hero h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-heading);
}

p {
  margin: 0;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.split-copy p,
.about-copy p,
.contact-layout p {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(58, 36, 56, 0);
  transition:
    transform 190ms var(--ease-soft),
    background-color 190ms var(--ease-soft),
    color 190ms var(--ease-soft),
    border-color 190ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft);
}

.button:hover {
  box-shadow: 0 12px 30px rgba(58, 36, 56, 0.16);
  transform: translateY(-2px) scale(1.01);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:focus-visible,
.small-button:focus-visible,
.icon-button:focus-visible,
.cart-button:focus-visible,
.menu-toggle:focus-visible,
.floating-social:focus-visible,
.wishlist-button:focus-visible,
.primary-nav a:focus-visible {
  outline: 2px solid rgba(184, 80, 160, 0.62);
  outline-offset: 3px;
}

.button.primary {
  margin-top: 30px;
  background: var(--espresso);
  color: var(--white);
}

.button.secondary {
  margin-top: 28px;
  border-color: var(--gold);
  color: var(--espresso);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgePop {
  0% {
    transform: scale(0.82);
  }

  58% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes navLinkIn {
  from {
    opacity: 0;
    transform: translateX(8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-block {
  position: relative;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 64px);
}

.section-block::before {
  left: -7vw;
  top: 14%;
}

.section-block > * {
  position: relative;
}

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

.section-heading h2 {
  max-width: 760px;
}

.luxe-heading-band {
  display: grid;
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(58, 36, 56, 0.98), rgba(123, 63, 132, 0.94)),
    var(--espresso);
  color: var(--white);
}

.luxe-heading-band .section-subtext {
  color: rgba(255, 255, 255, 0.76);
}

.section-subtext {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(46, 42, 40, 0.68);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.collection-grid,
.product-grid,
.review-grid,
.policy-grid {
  display: grid;
  gap: 20px;
}

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

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

.collection-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--beige);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(58, 36, 56, 0.08);
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.collection-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(46, 42, 40, 0.55));
  content: "";
}

.collection-tile img {
  transition: transform 520ms var(--ease-soft);
}

.coastal-collection-tile::after {
  background: linear-gradient(180deg, transparent 38%, rgba(46, 42, 40, 0.68));
}

.coastal-collection-tile img {
  object-fit: cover;
  object-position: center 45%;
}

.collection-tile span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
}

.catalogue-tile span {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(184, 80, 160, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(58, 36, 56, 0.08);
  transition: transform 230ms var(--ease-soft), box-shadow 230ms var(--ease-soft), border-color 230ms var(--ease-soft);
}

.product-image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige);
  border: 0;
  padding: 0;
}

.product-image img {
  transition: transform 460ms var(--ease-soft);
}

@media (hover: hover) and (pointer: fine) {
  .collection-tile:hover {
    box-shadow: 0 24px 64px rgba(58, 36, 56, 0.14);
    transform: translateY(-4px);
  }

  .collection-tile:hover img {
    transform: scale(1.035);
  }

  .product-card:hover {
    border-color: rgba(184, 80, 160, 0.24);
    box-shadow: 0 24px 68px rgba(58, 36, 56, 0.13);
    transform: translateY(-4px);
  }

  .product-card:hover .product-image img {
    transform: scale(1.028);
  }
}

.wishlist-button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 80, 160, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(58, 36, 56, 0.12);
  transition: background-color 180ms var(--ease-soft), color 180ms var(--ease-soft), transform 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft);
}

.wishlist-button:hover {
  box-shadow: 0 16px 34px rgba(58, 36, 56, 0.16);
  transform: translateY(-1px) scale(1.02);
}

.wishlist-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wishlist-button.active {
  background: var(--gold);
  color: var(--white);
}

.wishlist-button.active svg {
  fill: currentColor;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.9);
  color: var(--espresso);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-info h3 {
  min-height: 3.1em;
  font-size: var(--font-size-xl);
}

.product-options {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.option-label {
  display: grid;
  gap: 7px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.option-label select,
.fixed-option {
  min-height: 42px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-transform: none;
}

.fixed-option,
.cart-option {
  color: rgba(46, 42, 40, 0.7);
  font-size: var(--font-size-sm);
}

.fixed-option {
  display: grid;
  gap: 6px;
  margin: 0;
}

.fixed-option strong {
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
}

.fixed-option span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-top: 8px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-body);
}

.product-meta > span {
  min-width: 0;
}

.price,
.selling-price {
  color: var(--espresso);
  font-weight: 700;
}

.price-block {
  display: grid;
  gap: 4px;
  min-width: 0;
  text-align: right;
}

.mrp {
  color: rgba(46, 42, 40, 0.52);
  font-size: var(--font-size-xs);
}

.selling-price {
  font-size: var(--font-size-md);
  overflow-wrap: anywhere;
}

.discount-note {
  color: var(--gold);
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.card-actions.single-action {
  grid-template-columns: 1fr;
}

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
  transition: transform 180ms var(--ease-soft), background-color 180ms var(--ease-soft), color 180ms var(--ease-soft), border-color 180ms var(--ease-soft), box-shadow 200ms var(--ease-soft);
}

.small-button:hover {
  box-shadow: 0 10px 24px rgba(58, 36, 56, 0.12);
  transform: translateY(-2px);
}

.small-button:active,
.small-button.is-added {
  transform: translateY(0) scale(0.98);
}

.small-button.dark {
  background: var(--espresso);
  color: var(--white);
}

.button:disabled,
.small-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 8vw, 110px);
  align-items: center;
  padding: clamp(64px, 10vw, 120px) clamp(18px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(58, 36, 56, 0.96), rgba(123, 63, 132, 0.92)),
    var(--espresso);
  color: var(--white);
}

.story-band-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.story-band-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
}

.story-band-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.founder-note {
  background: var(--ivory);
}

.note-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(200, 169, 126, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(243, 236, 226, 0.72));
  box-shadow: 0 20px 60px rgba(46, 42, 40, 0.08);
}

.note-card p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
}

.brand-pillar-grid,
.fragrance-grid,
.packaging-list,
.moment-list {
  display: grid;
  gap: 18px;
}

.brand-pillar-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-pillar-grid article,
.fragrance-grid article,
.packaging-list article,
.moment-list article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(200, 169, 126, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}

.brand-pillar-grid p,
.fragrance-grid p,
.packaging-list p,
.moment-list p {
  margin-top: 12px;
  color: rgba(46, 42, 40, 0.7);
}

.brand-icon {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand-icon::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 10px;
  height: 16px;
  border-radius: 10px 10px 10px 2px;
  background: var(--gold);
  transform: translateX(-50%) rotate(18deg);
  content: "";
}

.fragrance-experience {
  background: linear-gradient(180deg, var(--beige), var(--blush));
}

.fragrance-experience .section-heading > p {
  max-width: 360px;
  color: rgba(46, 42, 40, 0.7);
}

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

.fragrance-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rosewood);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.packaging-experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  background: linear-gradient(180deg, var(--ivory), rgba(232, 210, 238, 0.58));
}

.packaging-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(46, 42, 40, 0.72);
}

.packaging-list {
  grid-template-columns: 1fr;
}

.split-feature,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-width: 0;
}

.split-image {
  min-height: 640px;
  background: var(--beige);
}

.split-copy p,
.about-copy p,
.contact-layout p {
  color: rgba(46, 42, 40, 0.72);
}

.contact-layout > * {
  min-width: 0;
}

.contact-layout h1 {
  overflow-wrap: break-word;
}

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

.review-grid article,
.policy-grid article {
  padding: 30px;
  background: var(--beige);
}

.stars {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 700;
}

.review-grid strong {
  display: block;
  margin-top: 18px;
}

.instagram-gallery {
  background: linear-gradient(180deg, var(--ivory), var(--beige));
}

.instagram-shell {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 22px 70px rgba(46, 42, 40, 0.08);
}

.instagram-heading {
  align-items: start;
}

.instagram-heading p:last-child {
  max-width: 540px;
  color: rgba(46, 42, 40, 0.7);
}

.instagram-widget {
  min-height: 380px;
}

.instagram-widget > div {
  overflow: hidden;
  border-radius: 8px;
}

.instagram-loading,
.instagram-placeholder,
.instagram-fallback {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px dashed rgba(200, 169, 126, 0.55);
  border-radius: 8px;
  background: rgba(250, 247, 242, 0.72);
}

.instagram-fallback {
  display: block;
  text-align: center;
}

.instagram-fallback .button {
  margin-top: 18px;
}

.instagram-loading {
  position: relative;
}

.instagram-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: instagram-shimmer 1.6s ease-in-out infinite;
}

.instagram-placeholder h3,
.instagram-loading h3,
.instagram-fallback h3 {
  margin-bottom: 12px;
}

.instagram-placeholder p,
.instagram-loading p,
.instagram-fallback p,
.instagram-fallback li {
  color: rgba(46, 42, 40, 0.72);
}

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

  100% {
    transform: translateX(100%);
  }
}

.instagram-setup-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

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

.instagram-skeleton-grid span {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 169, 126, 0.28), rgba(255, 255, 255, 0.48)),
    var(--beige);
  border: 1px solid rgba(200, 169, 126, 0.18);
}

.instagram-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 32px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 64px) clamp(74px, 9vw, 120px);
  padding: clamp(34px, 6vw, 64px);
  background: var(--beige);
}

.newsletter-line {
  margin-top: 12px;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
  padding: 12px 14px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-ui);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--sage);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-body);
  grid-column: 1 / -1;
}

.field-error,
.cart-errors p {
  margin-top: 6px;
  color: #9a2d4b;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.cart-errors {
  display: grid;
  gap: 6px;
}

.availability-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(202, 218, 190, 0.38);
  color: var(--sage);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-height-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability-status.low_stock {
  background: rgba(255, 246, 214, 0.78);
  color: #8a6424;
}

.availability-status.sold_out {
  background: rgba(154, 45, 75, 0.1);
  color: #9a2d4b;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 12vw, 150px) clamp(18px, 5vw, 64px) clamp(44px, 8vw, 90px);
}

.page-hero.compact p:not(.eyebrow) {
  color: rgba(46, 42, 40, 0.72);
}

.page-hero.image-led {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.page-hero.image-led img {
  min-height: 540px;
  background: var(--beige);
}

.page-hero.image-led p:not(.eyebrow) {
  color: rgba(46, 42, 40, 0.72);
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(80px, 10vw, 130px);
}

.shop-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  min-width: 0;
  padding: 22px;
  background: var(--beige);
}

.search-panel label,
.filter-group legend,
.contact-form label,
.checkout-modal label {
  display: block;
  margin-bottom: 8px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.filter-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
}

.filter-chip.active {
  background: var(--espresso);
  color: var(--white);
}

.price-filter {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.price-filter label,
.filter-title {
  color: var(--charcoal);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.price-range-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.price-chip {
  width: 100%;
  justify-content: center;
}

.scent-quiz-section {
  padding-top: clamp(34px, 6vw, 76px);
  padding-bottom: clamp(34px, 6vw, 76px);
}

.scent-quiz-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(184, 80, 160, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 80, 160, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 52px rgba(58, 36, 56, 0.08);
}

.scent-quiz-shell p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(46, 42, 40, 0.7);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.scent-quiz-shell.result {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.scent-quiz-shell.result h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
}

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

.scent-answer-grid button {
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(184, 80, 160, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--espresso);
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-align: left;
}

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

.scent-result-products article {
  display: grid;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.scent-result-products img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 150px;
  border-radius: 6px;
  object-fit: cover;
}

.scent-result-products strong {
  font-size: var(--font-size-base);
  line-height: var(--line-height-ui);
}

.scent-result-products span {
  color: var(--gold);
  font-size: var(--font-size-md);
  font-weight: 800;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.shop-toolbar select {
  width: min(250px, 100%);
}

.about-layout,
.contact-layout {
  padding: clamp(72px, 12vw, 142px) clamp(18px, 5vw, 64px);
}

.about-layout img {
  min-height: 650px;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.values-strip div {
  display: grid;
  gap: 8px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--beige);
}

.values-strip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-heading);
}

.values-strip span {
  color: rgba(46, 42, 40, 0.72);
}

.founder-story {
  width: min(980px, calc(100% - 36px));
  margin: clamp(64px, 10vw, 118px) auto;
  text-align: center;
}

.founder-story p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
}

.founder-story .button {
  margin-top: 28px;
}

.brand-story-hero {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 64px);
}

.collection-page-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(62px, 9vw, 122px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, var(--ivory), var(--beige));
}

.collection-page-hero img {
  min-height: 560px;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(58, 36, 56, 0.12);
}

.collection-page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(46, 42, 40, 0.72);
}

.brand-story-hero img {
  min-height: 620px;
  border-radius: 8px;
}

.brand-story-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
}

.brand-origin {
  width: min(1030px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 10vw, 120px);
  padding: clamp(34px, 6vw, 72px);
  border-radius: 8px;
  background: var(--espresso);
  color: var(--white);
}

.brand-origin p:not(.eyebrow) {
  max-width: 860px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
}

.brand-moments {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 64px);
  background: var(--beige);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  color: var(--espresso);
  font-weight: 700;
}

.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 44px rgba(58, 36, 56, 0.08);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--magenta);
  font-size: var(--font-size-xs);
  font-weight: 800;
}

.contact-card h2 {
  font-size: var(--font-size-xl);
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-card a,
.accordion a,
.shipping-card-grid a {
  color: var(--espresso);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-card-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(249, 239, 248, 0.74);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.contact-form,
.checkout-modal form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 5vw, 44px);
  background: var(--beige);
}

.accordion,
.policy-grid,
.shipping-overview {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto clamp(78px, 10vw, 130px);
}

.accordion details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-heading);
}

.accordion p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(46, 42, 40, 0.72);
}

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

.policy-grid h2 {
  margin-bottom: 12px;
  font-size: var(--font-size-2xl);
}

.shipping-overview {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.shipping-feature,
.shipping-card-grid article {
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 52px rgba(58, 36, 56, 0.08);
}

.shipping-feature {
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(140deg, rgba(58, 36, 56, 0.94), rgba(123, 63, 132, 0.84)),
    var(--espresso);
  color: var(--white);
}

.shipping-feature p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.shipping-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shipping-card-grid article {
  padding: 24px;
}

.shipping-card-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold);
  font-weight: 800;
}

.shipping-card-grid h3 {
  font-size: var(--font-size-lg);
}

.shipping-card-grid p {
  margin-top: 10px;
  color: rgba(46, 42, 40, 0.7);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.shipping-policy-panel {
  display: grid;
  gap: 18px;
}

.shipping-rate-card,
.shipping-disclaimer-card,
.shipping-summary-note,
.cart-shipping-note {
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.shipping-rate-card,
.shipping-disclaimer-card {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 52px rgba(58, 36, 56, 0.08);
}

.shipping-rate-card h2,
.shipping-disclaimer-card h2 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-heading);
}

.shipping-rate-card > p,
.shipping-disclaimer-card p,
.shipping-support-copy {
  margin-top: 12px;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.shipping-rate-table {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.shipping-rate-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(184, 80, 160, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 236, 251, 0.82));
}

.shipping-rate-table span {
  color: rgba(46, 42, 40, 0.76);
}

.shipping-rate-table strong {
  color: var(--espresso);
  text-align: right;
}

.shipping-summary-note,
.cart-shipping-note {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: clamp(12px, 1.2vw, 16px) clamp(14px, 1.4vw, 18px);
  color: rgba(46, 42, 40, 0.66);
  font-size: clamp(0.875rem, 0.84rem + 0.15vw, 0.95rem);
  line-height: 1.5;
}

.cart-shipping-note:empty {
  display: none;
}

.shipping-summary-note p,
.cart-shipping-note p {
  margin: 0;
}

.gift-builder-section {
  padding-top: clamp(42px, 7vw, 82px);
  padding-bottom: clamp(36px, 7vw, 76px);
  background: linear-gradient(180deg, var(--ivory), var(--beige));
}

.gift-builder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: start;
}

.gift-builder-copy {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(184, 80, 160, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 52px rgba(58, 36, 56, 0.08);
}

.gift-builder-copy h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
}

.gift-builder-copy p:not(.eyebrow):not(.form-note),
.gift-builder-status span {
  color: rgba(46, 42, 40, 0.7);
}

.gift-builder-copy p:not(.eyebrow):not(.form-note) {
  margin-top: 16px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.gift-builder-status {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  background: var(--blush);
}

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

.transparent-note {
  padding: 14px 16px;
  border: 1px solid rgba(184, 80, 160, 0.18);
  border-radius: 8px;
  background: rgba(249, 239, 248, 0.84);
  font-weight: 700;
}

.hamper-workspace {
  display: grid;
  gap: 18px;
}

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

.hamper-mood-card,
.hamper-rules article,
.hamper-inclusions article {
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.hamper-mood-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: var(--charcoal);
  text-align: left;
}

.hamper-mood-card.active {
  border-color: var(--gold);
  background: var(--blush);
  box-shadow: 0 16px 42px rgba(58, 36, 56, 0.1);
}

.hamper-mood-card > span:first-child {
  color: var(--espresso);
  font-size: var(--font-size-md);
  font-weight: 800;
  line-height: var(--line-height-heading);
}

.hamper-mood-card small {
  color: rgba(46, 42, 40, 0.66);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-body);
}

.hamper-price-pair {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.hamper-price-pair strong {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--espresso);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-ui);
  box-shadow: inset 0 0 0 1px rgba(184, 80, 160, 0.12);
}

.hamper-price-pair strong:last-child {
  background: linear-gradient(135deg, rgba(184, 80, 160, 0.15), rgba(242, 226, 244, 0.92));
}

.hamper-price-pair em {
  color: rgba(46, 42, 40, 0.62);
  font-style: normal;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
}

.hamper-tier-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hamper-rules article {
  padding: 20px;
}

.hamper-rules h3 {
  font-size: var(--font-size-lg);
}

.hamper-rules p {
  margin-top: 8px;
  color: rgba(46, 42, 40, 0.68);
}

.hamper-inclusions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hamper-inclusions article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 152px;
  padding: 18px 12px 20px;
  color: var(--espresso);
  font-weight: 800;
  text-align: center;
}

.gift-box-icon {
  width: clamp(68px, 5vw, 84px);
  height: clamp(68px, 5vw, 84px);
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: rgba(249, 239, 248, 0.58);
  padding: 6px;
  box-shadow: 0 10px 26px rgba(123, 63, 132, 0.08);
}

.hamper-inclusions strong {
  display: block;
  max-width: 15ch;
  font-size: var(--font-size-base);
  line-height: var(--line-height-ui);
}

.hamper-note-label {
  margin-top: 18px;
}

.gift-choice {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--charcoal);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gift-choice:hover,
.gift-choice.active {
  border-color: var(--gold);
  box-shadow: 0 16px 42px rgba(58, 36, 56, 0.12);
  transform: translateY(-2px);
}

.gift-choice.active {
  background: rgba(249, 239, 248, 0.9);
}

.gift-choice img {
  aspect-ratio: 1;
  border-radius: 6px;
}

.gift-choice span {
  font-weight: 800;
  line-height: var(--line-height-ui);
}

.gift-choice small {
  color: rgba(46, 42, 40, 0.62);
}

.hamper-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hamper-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 52px rgba(58, 36, 56, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hamper-card:hover {
  border-color: rgba(200, 169, 126, 0.68);
  box-shadow: 0 24px 68px rgba(58, 36, 56, 0.12);
  transform: translateY(-3px);
}

.hamper-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hamper-badge,
.hamper-gift-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-height-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hamper-badge {
  background: var(--espresso);
  color: var(--white);
}

.hamper-gift-label {
  background: rgba(249, 239, 248, 0.92);
  color: var(--rosewood);
}

.hamper-card h3 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
}

.hamper-card p {
  color: rgba(46, 42, 40, 0.7);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.hamper-price {
  color: var(--gold) !important;
  font-size: var(--font-size-lg);
  font-weight: 900;
}

.hamper-includes {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(250, 247, 242, 0.72);
}

.hamper-includes ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: rgba(46, 42, 40, 0.72);
}

.hamper-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: auto;
}

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

.hamper-disclaimers article {
  padding: 18px;
  border: 1px solid rgba(184, 80, 160, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.hamper-disclaimers h3 {
  font-size: var(--font-size-md);
}

.hamper-disclaimers p {
  margin-top: 8px;
  color: rgba(46, 42, 40, 0.66);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-body);
}

.hamper-modal {
  grid-template-columns: 0.95fr 1.05fr;
}

.hamper-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.hamper-modal-gallery img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.hamper-qty-row {
  justify-content: space-between;
  margin-top: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 64px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  overflow-wrap: anywhere;
}

.footer-brand {
  color: var(--white);
}

.footer-collection-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-contact-list p {
  margin: 0;
}

.footer-contact-list strong {
  display: block;
  color: var(--white);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.footer-contact-list a {
  margin-top: 4px;
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms var(--ease-soft), box-shadow 200ms var(--ease-soft);
}

.floating-social:hover {
  box-shadow: 0 26px 74px rgba(46, 42, 40, 0.18);
  transform: scale(1.045);
}

.floating-social:active {
  transform: scale(0.96);
}

.floating-social svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-button {
  background: #1f7a58;
}

.instagram-button {
  background: linear-gradient(135deg, #b850a0, #7b3f84);
}

.floating-cart-button {
  position: relative;
  display: none;
  border: 0;
  background: var(--espresso);
}

.generated-floating-actions {
  display: none;
}

.floating-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 2px solid var(--ivory);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: 1;
}

.floating-cart-count[hidden] {
  display: none;
}

.floating-cart-button.cart-pulse {
  animation: cartPulse 280ms var(--ease-soft);
}

.cart-button span.count-pop,
.floating-cart-count.count-pop {
  animation: badgePop 260ms var(--ease-soft);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100vh;
  padding: 26px;
  background: var(--ivory);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 240ms var(--ease-soft);
}

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

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

.cart-header h2 {
  font-size: var(--font-size-2xl);
}

.cart-items {
  overflow: auto;
  padding: 22px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  aspect-ratio: 1;
}

.cart-line h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-ui);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-row button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.cart-summary {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary > div:not(.cart-shipping-note):not(.cart-errors) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.cart-summary span {
  min-width: 0;
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-base);
  line-height: var(--line-height-ui);
}

.cart-summary strong {
  color: var(--espresso);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  font-weight: 600;
  line-height: var(--line-height-ui);
  text-align: right;
  white-space: nowrap;
}

.cart-summary .cart-shipping-note {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  margin-top: 8px;
  margin-bottom: 14px;
}

.cart-shipping-note > .shipping-summary-note {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.cart-total-row {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--espresso);
}

.cart-total-row span {
  color: var(--espresso);
  font-weight: 700;
}

.cart-total-row strong {
  font-size: clamp(1.15rem, 1.05rem + 0.35vw, 1.3rem);
  font-weight: 700;
}

.cart-empty {
  align-self: start;
  padding-top: 24px;
  color: rgba(46, 42, 40, 0.62);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(46, 42, 40, 0.44);
}

.product-modal,
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 130;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  background: var(--ivory);
  box-shadow: var(--shadow);
  transform: translate(-50%, -45%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-modal.open,
.checkout-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
}

.modal-product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.modal-product img {
  min-height: 620px;
}

.modal-copy {
  padding: clamp(34px, 6vw, 72px);
}

.modal-copy h2 {
  margin-bottom: 16px;
}

.modal-notes {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: rgba(46, 42, 40, 0.72);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-detail-body {
  min-height: 100vh;
}

.product-page-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
}

.product-gallery-main {
  aspect-ratio: 4 / 5;
  background: var(--beige);
}

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

.product-gallery-thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--beige);
  aspect-ratio: 1;
}

.product-page-copy {
  padding-top: clamp(12px, 4vw, 48px);
}

.product-page-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(46, 42, 40, 0.72);
}

.product-page-price {
  margin-top: 18px;
  text-align: left;
}

.product-page-price .selling-price {
  font-size: var(--font-size-2xl);
}

.product-specs {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  background: var(--ivory);
}

.product-specs dt {
  color: rgba(46, 42, 40, 0.62);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
}

.commerce-note {
  margin: 22px 0;
  padding: 14px 16px;
  border: 1px solid rgba(184, 80, 160, 0.24);
  background: rgba(242, 226, 244, 0.58);
  color: rgba(46, 42, 40, 0.72);
}

.review-placeholders {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto clamp(74px, 9vw, 120px);
  padding: clamp(28px, 5vw, 52px);
  background: var(--beige);
  text-align: center;
}

.review-placeholders p:last-child {
  margin-top: 14px;
  color: rgba(46, 42, 40, 0.72);
}

.checkout-modal {
  width: min(1060px, calc(100% - 28px));
  padding: clamp(26px, 4vw, 46px);
}

.checkout-shell {
  display: grid;
  gap: 22px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(46, 42, 40, 0.62);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-height-ui);
  text-align: center;
  text-transform: uppercase;
}

.checkout-steps li.active {
  background: var(--espresso);
  color: var(--white);
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: grid;
  gap: 12px;
}

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

.checkout-summary-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.checkout-summary-panel h3,
.recently-viewed h2,
.empty-state h2 {
  font-size: var(--font-size-2xl);
}

.checkout-summary-lines {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.checkout-summary-line {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
}

.checkout-summary-line img {
  aspect-ratio: 1;
}

.checkout-summary-line strong,
.checkout-summary-line span,
.checkout-summary-line small {
  display: block;
}

.checkout-summary-line span,
.checkout-summary-line small {
  color: rgba(46, 42, 40, 0.62);
  font-size: var(--font-size-sm);
}

.checkout-summary-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
}

.order-form {
  display: grid;
  gap: 18px;
}

.order-form-card,
.order-info-card {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(58, 36, 56, 0.08);
}

.order-form-card h3,
.order-info-card h3 {
  font-size: var(--font-size-xl);
}

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

.order-review-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(46, 42, 40, 0.76);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  font-weight: 700;
}

.checkbox-label input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.gift-order-fields {
  display: none;
  gap: 12px;
  margin-top: 12px;
}

.gift-order-fields.active {
  display: grid;
}

.consent-label {
  padding: 16px;
  border: 1px solid rgba(184, 80, 160, 0.16);
  border-radius: 8px;
  background: rgba(249, 239, 248, 0.74);
}

.sticky-review-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(247, 236, 251, 0), var(--blush) 34%);
}

.copyable-order-message {
  margin-top: 16px;
}

.copyable-order-message textarea {
  min-height: 180px;
}

.review-details {
  display: grid;
  gap: 12px;
}

.review-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.review-details dt {
  color: rgba(46, 42, 40, 0.62);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-height-ui);
  text-transform: uppercase;
}

.review-details dd {
  margin: 0;
}

.checkout-confirm-copy {
  color: rgba(46, 42, 40, 0.72);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

.recently-viewed,
.wishlist-section {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.compact-card .product-info {
  padding-right: 8px;
  padding-left: 8px;
}

.empty-state {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.empty-state p {
  margin: 12px auto 24px;
  color: rgba(46, 42, 40, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms var(--ease-soft), transform 560ms var(--ease-soft);
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
    gap: 14px;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 92;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: min(84vw, 360px);
    height: 100vh;
    height: 100dvh;
    gap: 16px;
    padding: 22px;
    background:
      radial-gradient(circle at 12% 8%, rgba(184, 80, 160, 0.16), transparent 38%),
      var(--ivory);
    border-left: 1px solid rgba(184, 80, 160, 0.18);
    box-shadow: -28px 0 80px rgba(46, 42, 40, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 260ms var(--ease-soft), opacity 240ms var(--ease-soft), visibility 240ms var(--ease-soft);
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .primary-nav[hidden] {
    display: none;
  }

  .primary-nav a {
    display: block;
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--charcoal);
    font-size: var(--font-size-base);
    font-weight: 800;
    line-height: var(--line-height-ui);
    letter-spacing: 0.03em;
    opacity: 1;
  }

  .primary-nav.open a {
    animation: navLinkIn 260ms var(--ease-soft) both;
  }

  .primary-nav.open a:nth-of-type(2) {
    animation-delay: 35ms;
  }

  .primary-nav.open a:nth-of-type(3) {
    animation-delay: 70ms;
  }

  .primary-nav.open a:nth-of-type(4) {
    animation-delay: 105ms;
  }

  .primary-nav.open a:nth-of-type(5) {
    animation-delay: 140ms;
  }

  .primary-nav.open a:nth-of-type(6) {
    animation-delay: 175ms;
  }

  .primary-nav.open a:nth-of-type(7) {
    animation-delay: 210ms;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a.active {
    border-color: rgba(184, 80, 160, 0.2);
    background: rgba(249, 239, 248, 0.78);
    outline: 0;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(184, 80, 160, 0.16);
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    line-height: var(--line-height-heading);
    text-transform: none;
  }

  .mobile-nav-close {
    position: relative;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(184, 80, 160, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
  }

  .mobile-nav-close span {
    position: absolute;
    top: 22px;
    left: 13px;
    width: 18px;
    height: 1.5px;
    background: var(--espresso);
  }

  .mobile-nav-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 91;
    display: block;
    border: 0;
    background: rgba(46, 42, 40, 0.42);
    opacity: 1;
    backdrop-filter: blur(2px);
    transition: opacity 240ms var(--ease-soft);
  }

  .mobile-nav-backdrop[hidden] {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 93;
  }

  .menu-toggle {
    display: block;
  }

  .search-toggle {
    display: none;
  }

  .header-actions > .cart-button[data-cart-open],
  .header-actions > .wishlist-header-link,
  .header-actions > .button.secondary {
    display: none;
  }

  .about-nav {
    display: none;
  }

  .floating-cart-button,
  .generated-floating-actions {
    display: flex;
  }

  .collection-grid,
  .product-grid,
  .instagram-skeleton-grid,
  .brand-pillar-grid,
  .fragrance-grid,
  .catalogue-collection-grid,
  .gift-builder-grid,
  .hamper-card-grid,
  .hamper-mood-grid,
  .hamper-inclusions,
  .hamper-disclaimers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .checkout-summary-panel {
    position: static;
  }

  .shop-layout,
  .shipping-overview,
  .gift-builder-section {
    grid-template-columns: 1fr;
  }

  .hamper-modal {
    grid-template-columns: 1fr;
  }

  .scent-quiz-shell {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    max-width: 720px;
    overflow: hidden;
  }

  .scent-quiz-shell > * {
    min-width: 0;
  }

  .scent-quiz-shell.result {
    grid-template-columns: 1fr;
  }

  .scent-quiz-shell.result h2 {
    font-size: var(--font-size-3xl);
  }

  .scent-quiz-shell .button {
    width: 100%;
  }

  .shop-sidebar {
    position: static;
  }

  .gift-builder-copy {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content .button,
  .primary-nav.open a,
  .floating-cart-button.cart-pulse,
  .cart-button span.count-pop,
  .floating-cart-count.count-pop {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 12px 28px 12px 16px;
    gap: 10px;
  }

  .brand {
    font-size: var(--font-size-lg);
    min-width: 0;
  }

  .brand-logo-img {
    width: clamp(108px, 34vw, 136px);
  }

  .header-actions {
    gap: 6px;
    justify-self: end;
    transform: translateX(-44px);
  }

  .cart-button {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0;
  }

  .cart-button span {
    margin-left: 0;
    font-size: var(--font-size-xs);
  }

  .wishlist-header-link {
    display: none;
  }

  .hero {
    min-height: 86vh;
    width: 100%;
    max-width: 100%;
    padding: 22px max(18px, env(safe-area-inset-left)) 22px max(18px, env(safe-area-inset-right));
    overflow: hidden;
  }

  .page-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-hero h1,
  .hero h1 {
    max-width: calc(100vw - 48px);
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
  }

  .page-hero.compact h1 {
    max-width: 10.5ch;
  }

  .page-hero.compact p:not(.eyebrow) {
    max-width: 31ch;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(46, 42, 40, 0.16), rgba(46, 42, 40, 0.72));
  }

  .hero-content {
    width: min(100%, 35rem);
    padding-bottom: clamp(34px, 9vh, 58px);
  }

  .hero-content p:not(.eyebrow) {
    max-width: min(31ch, calc(100vw - 42px));
    margin-top: 16px;
    font-size: var(--font-size-base);
    line-height: var(--line-height-body);
  }

  .hero-content .button {
    margin-top: 22px;
  }

  h1 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

  .section-heading,
  .story-band,
  .split-feature,
  .about-layout,
  .contact-layout,
  .page-hero.image-led,
  .newsletter,
  .modal-product,
  .product-page-layout,
  .collection-page-hero,
  .packaging-experience,
  .brand-story-hero,
  .brand-moments,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .review-grid,
  .instagram-skeleton-grid,
  .brand-pillar-grid,
  .fragrance-grid,
  .catalogue-collection-grid,
  .gift-builder-grid,
  .hamper-card-grid,
  .hamper-mood-grid,
  .hamper-rules,
  .hamper-inclusions,
  .hamper-disclaimers,
  .shipping-card-grid,
  .policy-grid,
  .values-strip,
  .scent-answer-grid,
  .scent-result-products {
    grid-template-columns: 1fr;
  }

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

  .scent-result-products img {
    max-height: 118px;
  }

  .gift-box-icon {
    width: clamp(56px, 17vw, 68px);
    height: clamp(56px, 17vw, 68px);
  }

  .instagram-loading,
  .instagram-placeholder,
  .instagram-fallback {
    grid-template-columns: 1fr;
  }

  .collection-tile {
    min-height: 320px;
  }

  .split-image,
  .about-layout img,
  .page-hero.image-led img,
  .modal-product img {
    min-height: 360px;
  }

  .newsletter form,
  .checkout-steps,
  .order-address-grid,
  .order-review-grid {
    grid-template-columns: 1fr;
  }

  .shipping-rate-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .shipping-rate-table strong {
    text-align: left;
  }

  .price-block {
    text-align: left;
  }

  .footer-collection-links {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    width: calc(100% - 36px);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
  }

  .contact-layout h1 {
    max-width: 100%;
    font-size: var(--font-size-2xl);
    overflow-wrap: break-word;
  }

  .contact-card-list,
  .contact-card,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
    min-width: 0;
  }

  .shop-sidebar,
  .search-panel,
  .filter-group,
  .price-filter {
    max-width: 100%;
    min-width: 0;
  }

  .shop-sidebar {
    width: min(100%, 330px);
    padding-right: 34px;
  }

  .filter-chip {
    max-width: 100%;
    white-space: normal;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-group legend {
    grid-column: 1 / -1;
  }

  .about-nav {
    display: none;
  }

  .brand-story-hero img {
    min-height: 360px;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .floating-socials {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

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

  .floating-social {
    width: 54px;
    height: 54px;
  }

  .floating-social svg {
    width: 30px;
    height: 30px;
  }
}
