:root {
  --paper: #f3eee7;
  --panel: #ebe5dc;
  --ink: #161512;
  --muted: #706b63;
  --line: rgba(31, 28, 23, 0.13);
  --dark: #0f120d;
  --sage: #66705a;
  --moss: #283521;
  --rose: #9e6672;
  --amber: #8a4f2d;
  --focus: #425b3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0 26px;
  color: #fffaf1;
  font-size: 11px;
}

.brand {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
}

.primary-nav,
.utility-nav,
.social-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.utility-nav,
.social-links {
  justify-content: flex-end;
}

.site-header a,
.text-link {
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(3px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.78, 0.24, 1),
    filter 760ms ease;
  transition-delay: var(--copy-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

.site-header a:hover,
.text-link:hover,
.section-heading a:hover,
.footer-columns a:hover {
  opacity: 0.68;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 34px 94px;
  color: #fffaf1;
}

.placeholder-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #d8d0c4, #f2eee7);
}

.lifestyle-hero {
  background-image: url("assets/generated/micu/fashion-editorial-landscape/fashion_meadow_sofa_hijab_01_1.png");
  background-position: center center;
  background-size: cover;
}

.garden-band::before,
.interior-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 32%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 70%, rgba(0, 0, 0, 0.12) 0 1px, transparent 2px);
  background-size: 90px 80px, 120px 95px, 140px 120px;
  opacity: 0.9;
}

.hero-content {
  position: absolute;
  left: 34px;
  bottom: 94px;
  z-index: 3;
  max-width: 520px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  color: currentColor;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.text-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  font-size: 11px;
  border-bottom: 1px solid currentColor;
}

.text-link.light {
  color: #fffaf1;
}

.text-link.dark {
  color: var(--ink);
}

.section {
  padding: 86px 34px;
}

.section-prologue {
  max-width: 620px;
  margin: 0 0 58px;
}

.section-prologue p,
.editorial-note p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.section-prologue small,
.editorial-note small {
  display: block;
  max-width: 390px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

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

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

.section-heading a {
  font-size: 11px;
}

.product-row,
.product-grid {
  display: grid;
  gap: 10px;
}

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

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

.product-card {
  position: relative;
  display: grid;
  min-width: 0;
  background: var(--panel);
  transition:
    opacity 240ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.24, 1),
    filter 300ms ease;
}

.product-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1.2;
  place-items: center;
  background: linear-gradient(135deg, #d5c4b6 0%, #eadfd5 100%);
  isolation: isolate;
  transition:
    box-shadow 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.product-card:hover .product-visual {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 28, 23, 0.08);
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.product-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter: drop-shadow(0 18px 22px rgba(31, 28, 23, 0.13));
}

.product-card:hover .product-image-base {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
}

.product-card:focus-visible .product-image-base {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
}

.product-card:hover .product-image-hover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card:focus-visible .product-image-hover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-visual span {
  display: block;
  transition: transform 180ms ease;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 12px 12px 14px;
  font-size: 10px;
  color: #201d18;
}

.bottle span {
  width: 44px;
  height: 122px;
  border-radius: 14px 14px 8px 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #1c1c17 0 16%, var(--amber) 17% 100%);
}

.tube span {
  width: 58px;
  height: 132px;
  border-radius: 8px 8px 22px 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(180deg, #f5ead8, #b48a63);
}

.jar span {
  width: 72px;
  height: 86px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #111 0 18%, transparent 19%),
    linear-gradient(90deg, #ece7df, #c7b8aa);
}

.slim span {
  width: 26px;
  height: 124px;
  background: linear-gradient(90deg, #3b332f, #9b8d80, #2b2723);
}

.box span {
  width: 112px;
  height: 86px;
  border-radius: 5px;
  background: #281a21;
}

.sample-set span {
  width: 145px;
  height: 96px;
  background:
    linear-gradient(90deg, transparent 0 8%, #1e1b18 9% 13%, #c8a64f 14% 21%, transparent 22% 28%, #1e1b18 29% 33%, #d0b15d 34% 41%, transparent 42% 48%, #1e1b18 49% 53%, #a8794d 54% 61%, transparent 62% 68%, #1e1b18 69% 73%, #dbcf9b 74% 81%, transparent 82%);
}

.moss span {
  --amber: #556133;
}

.citrus span {
  --amber: #c8752d;
}

.ivory span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 42%), linear-gradient(180deg, #fff9eb, #d9caaa);
}

.earth span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 42%), linear-gradient(180deg, #a67b63, #5b3a2f);
}

.pollen span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 42%), linear-gradient(180deg, #f0df9a, #b9914d);
}

.rose span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent 42%), linear-gradient(180deg, #9b5f73, #5d3344);
}

.plum span {
  background: #2d1d25;
}

.charcoal span {
  background: linear-gradient(90deg, #171513, #6b6258, #171513);
}

.editorial-links {
  padding-top: 62px;
}

.editorial-note {
  max-width: 560px;
  margin: -4px 0 54px auto;
}

.editorial-link-grid {
  display: grid;
  grid-template-columns: minmax(210px, 390px) 1fr;
  gap: clamp(60px, 14vw, 260px);
  align-items: end;
  min-height: 360px;
}

.square {
  aspect-ratio: 1 / 1;
  width: min(100%, 360px);
}

.story-moss {
  background: #203019;
}

.editorial-preview {
  isolation: isolate;
}

.editorial-preview-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(18px) scale(1.02);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.editorial-preview-image.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.link-list {
  border-top: 1px solid var(--line);
}

.link-list a {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 14px;
  align-items: center;
  min-height: 52px;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  transition:
    background 240ms ease,
    color 240ms ease,
    padding 240ms ease;
}

.link-list a.is-active {
  background: #2b3a20;
  color: #fffaf1;
  padding-right: 12px;
  padding-left: 12px;
}

.link-list span,
.link-list em {
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
  transition: color 240ms ease;
}

.link-list a.is-active span,
.link-list a.is-active em {
  color: rgba(255, 250, 241, 0.72);
}

.story-band {
  min-height: 100vh;
  min-height: 100svh;
  color: #fffaf1;
}

.garden-band {
  display: grid;
  place-items: center;
  background-image: url("assets/generated/micu/fashion-editorial-landscape/fashion_rose_garden_hijab_01_1.png");
  background-position: center center;
  background-size: cover;
}

.center-story,
.right-story,
.footer-story div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.center-story p,
.right-story p,
.footer-story p {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.14;
}

.brand-strip {
  overflow: hidden;
  align-items: center;
  min-height: 112px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3.2vw, 48px);
}

.brand-marquee {
  display: flex;
  width: 100%;
  min-height: 112px;
  align-items: center;
  color: var(--ink);
  white-space: nowrap;
}

.brand-marquee-track {
  display: flex;
  flex: 0 0 auto;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: clamp(72px, 10vw, 180px);
  padding: 0 clamp(36px, 5vw, 92px);
  animation: finn-marquee 38s linear infinite;
  will-change: transform;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

@keyframes finn-marquee {
  from {
    transform: translateX(0);
  }

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

.dual-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.editorial-panel {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  color: #fffaf1;
  text-align: center;
}

.editorial-panel span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 38px);
}

.editorial-panel small {
  position: relative;
  z-index: 1;
  font-size: 11px;
}

.sea-panel {
  background-image: url("assets/generated/micu/fashion-editorial-landscape/fashion_lake_mattress_white_hijab_01_1.png");
  background-position: center center;
  background-size: cover;
}

.meadow-panel {
  background-image: url("assets/generated/micu/fashion-editorial-landscape/fashion_green_hillside_white_hijab_01_1.png");
  background-position: center center;
  background-size: cover;
}

.product-family {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(72px, 10vh, 110px);
  padding-bottom: clamp(46px, 7vh, 76px);
  text-align: center;
}

.product-family h2 {
  margin-bottom: clamp(28px, 5vh, 52px);
}

.lineup {
  width: min(100%, 1280px, calc(58svh * 16 / 9));
  aspect-ratio: 16 / 9;
  margin: 0 auto clamp(18px, 3vh, 28px);
  background-color: var(--paper);
  background-image: url("assets/generated/micu/product-horizontal-lineup/finn_product_lineup_wide_whitespace_01_transparent.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.interior-band {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 48px 70px;
  background-image: url("assets/generated/micu/promo-single-product-redesign/finn_redesign_campaign_01_olive_mist.png");
  background-position: 34% center;
  background-size: cover;
}

.right-story {
  max-width: 560px;
  text-align: right;
}

.journal-space {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100svh;
}

.journal-open {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 300px);
  align-items: center;
  gap: 48px;
  min-height: 0;
}

.journal-word {
  justify-self: center;
  max-width: 600px;
  color: var(--ink);
}

.journal-word span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.journal-word small {
  display: block;
  max-width: 360px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.journal-image {
  aspect-ratio: 0.78 / 1;
  background-image: url("assets/generated/micu/promo-single-product-redesign/finn_redesign_campaign_01_olive_mist.png");
  background-position: 18% center;
  background-size: cover;
}

.campaign-rail {
  display: flex;
  gap: 8px;
  width: 100%;
  padding: 0 0 8px;
  overflow: hidden;
  background: var(--paper);
}

.campaign-track {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  min-width: max-content;
  animation: campaign-scroll 58s linear infinite;
}

.campaign-rail:hover .campaign-track {
  animation-play-state: paused;
}

.campaign-tile {
  display: block;
  flex: 0 0 clamp(230px, 16.4vw, 318px);
  height: clamp(126px, 8.9vw, 170px);
  overflow: hidden;
  background: #7d7a68;
}

.campaign-tile.wide {
  flex-basis: clamp(260px, 17.8vw, 344px);
}

.campaign-tile.narrow {
  flex-basis: clamp(210px, 15.2vw, 294px);
}

.campaign-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.01);
}

@keyframes campaign-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 8px));
  }
}

.footer-story {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 54px 78px;
  color: #fffaf1;
  background-image: url("assets/generated/micu/fashion-editorial-landscape/fashion_misty_hill_sisterhood_01_1.png");
  background-position: center center;
  background-size: cover;
}

.footer-story div {
  max-width: 520px;
  text-align: left;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 80px 40px;
  padding: 70px 34px 28px;
  background: var(--paper);
  min-height: 100vh;
  min-height: 100svh;
}

.footer-intro {
  max-width: 380px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-intro p {
  margin: 0 0 18px;
  max-width: 300px;
  color: var(--muted);
  font-size: 11px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 34px;
  padding: 0 14px;
  background: var(--ink);
  color: #fffaf1;
  font-size: 11px;
}

.social-links {
  gap: 18px;
  font-size: 11px;
}

.footer-columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 48px;
  max-width: 980px;
  margin-top: 24px;
}

.footer-columns h3 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.footer-columns a {
  display: block;
  margin: 5px 0;
  font-size: 11px;
}

.footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  color: var(--muted);
  font-size: 10px;
}

.payments {
  margin-left: auto;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
    padding: 18px;
  }

  .primary-nav,
  .utility-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 150px 20px 28px;
    align-items: flex-end;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 64px;
    max-width: 100%;
  }

  .section {
    padding: 64px 18px;
  }

  .section-prologue,
  .editorial-note {
    margin-right: 0;
    margin-left: 0;
  }

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

  .editorial-link-grid,
  .journal-open,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
    min-height: 160px;
    padding: 24px 18px;
  }

  .dual-editorial {
    grid-template-columns: 1fr;
  }

  .editorial-panel,
  .story-band,
  .interior-band,
  .footer-story {
    min-height: 100vh;
    min-height: 100svh;
  }

  .right-story,
  .footer-story div {
    text-align: left;
  }

  .journal-word {
    justify-self: start;
  }

  .interior-band,
  .footer-story {
    padding: 36px 20px;
    align-items: flex-end;
    justify-content: flex-start;
  }

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

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

  .product-row,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .lineup {
    width: 100%;
  }

  .campaign-tile {
    flex-basis: 220px;
    height: 124px;
  }

  .campaign-tile.wide {
    flex-basis: 246px;
  }

  .campaign-tile.narrow {
    flex-basis: 204px;
  }

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

  .payments {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
  }

  .campaign-track {
    animation: none;
  }

  .copy-reveal {
    opacity: 1;
    transform: translateY(0);
    filter: none;
    transition: none;
  }
}

.product-detail-page {
  background: var(--paper);
  color: var(--ink);
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 46px;
  padding: 0 28px;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(14px);
  font-size: 11px;
}

.home-header {
  position: fixed;
  left: 0;
  width: 100%;
  background: transparent;
  color: #fffaf1;
  backdrop-filter: none;
  mix-blend-mode: difference;
  overflow: visible;
  transition:
    background 220ms ease,
    color 220ms ease,
    mix-blend-mode 0ms linear 220ms;
}

.home-header:has(.mega-trigger:hover),
.home-header:has(.home-mega-menu:hover),
.home-header:has(.mega-trigger:focus),
.home-header:has(.home-mega-menu:focus-within),
.home-header.is-mega-open {
  background: rgba(246, 241, 234, 0.96);
  color: var(--ink);
  mix-blend-mode: normal;
  transition:
    background 220ms ease,
    color 220ms ease,
    mix-blend-mode 0ms linear;
}

.mega-header:has(.mega-trigger:hover),
.mega-header:has(.home-mega-menu:hover),
.mega-header:has(.mega-trigger:focus),
.mega-header:has(.home-mega-menu:focus-within),
.mega-header.is-mega-open {
  background: rgba(246, 241, 234, 0.96);
  color: var(--ink);
}

.home-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(180px, 0.82fr) minmax(460px, 1.9fr);
  gap: clamp(42px, 7vw, 110px);
  width: 100vw;
  min-height: min(410px, calc(100vh - 46px));
  padding: 52px 36px 20px;
  background: rgba(246, 241, 234, 0.96);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-14px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.78, 0.24, 1),
    visibility 0ms linear 260ms;
}

.mega-header .home-mega-menu {
  background: var(--paper);
}

.home-header:has(.mega-trigger:hover) .home-mega-menu,
.home-header:has(.home-mega-menu:hover) .home-mega-menu,
.home-header:has(.mega-trigger:focus) .home-mega-menu,
.home-header:has(.home-mega-menu:focus-within) .home-mega-menu,
.home-header.is-mega-open .home-mega-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.78, 0.24, 1),
    visibility 0ms linear;
}

.home-header:has(.mega-trigger:hover) .home-mega-menu {
  opacity: 1;
}

.home-header.is-mega-open .home-mega-menu {
  opacity: 1;
}

.mega-header:has(.mega-trigger:hover) .home-mega-menu,
.mega-header:has(.home-mega-menu:hover) .home-mega-menu,
.mega-header:has(.mega-trigger:focus) .home-mega-menu,
.mega-header:has(.home-mega-menu:focus-within) .home-mega-menu,
.mega-header.is-mega-open .home-mega-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.78, 0.24, 1),
    visibility 0ms linear;
}

.mega-brand-note {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(31, 28, 23, 0.4);
  font-size: 12px;
  line-height: 1.35;
}

.mega-brand-note p,
.mega-brand-note span,
.mega-category-list p,
.mega-category-list small {
  margin: 0;
}

.mega-category-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mega-category-list p,
.mega-category-list small {
  margin-bottom: 10px;
  color: rgba(31, 28, 23, 0.34);
  font-size: 10px;
  text-transform: uppercase;
}

.mega-category-list small {
  margin-top: 38px;
}

.mega-category-list a {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.22;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mega-category-list a:hover,
.mega-category-list a:focus-visible {
  color: var(--moss);
  transform: translateX(5px);
}

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

.mega-card {
  position: relative;
  display: block;
  min-height: 336px;
  overflow: hidden;
  background: #d7d0c4;
}

.mega-card-mist {
  background: #d8cec0;
}

.mega-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.01);
  transition: transform 420ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.mega-card:hover img,
.mega-card:focus-visible img {
  transform: scale(1.045);
}

.mega-card span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1;
}

.mega-card-mist img {
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.product-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.product-nav-right {
  justify-content: flex-end;
}

.product-detail {
  overflow: visible;
}

.pdp-product-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: start;
}

.pdp-visual-scroll {
  min-width: 0;
}

.pdp-hero {
  min-height: calc(100vh - 46px);
  min-height: calc(100svh - 46px);
}

.pdp-gallery,
.pdp-summary {
  min-height: calc(100vh - 46px);
  min-height: calc(100svh - 46px);
}

.pdp-gallery {
  display: block;
  min-height: calc(100vh - 46px);
  min-height: calc(100svh - 46px);
  height: calc(100vh - 46px);
  height: calc(100svh - 46px);
  padding: 0;
  background: #e4ded5;
  overflow: hidden;
}

.pdp-product-frame {
  width: 100%;
  height: 100%;
}

.pdp-product-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.pdp-product-silhouette {
  width: clamp(84px, 12vw, 156px);
  height: clamp(250px, 42vh, 430px);
  border-radius: 44% 44% 28% 28% / 18% 18% 10% 10%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 32%, rgba(255, 255, 255, 0.08) 68%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, #11110f 0 18%, #8d4b21 19% 100%);
  box-shadow: 0 26px 60px rgba(34, 29, 23, 0.22);
}

.pdp-summary {
  position: sticky;
  top: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  padding: clamp(72px, 10vh, 120px) clamp(44px, 7vw, 112px);
}

.pdp-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
}

.pdp-summary h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
}

.pdp-price {
  margin: 18px 0 44px;
  font-size: 12px;
}

.pdp-purchase-panel {
  display: grid;
  gap: 18px;
  max-width: 380px;
  margin-bottom: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pdp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.pdp-tabs button {
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
}

.pdp-tabs button.is-active {
  border-color: var(--ink);
  background: rgba(31, 28, 23, 0.04);
}

.pdp-quantity {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.pdp-quantity button,
.pdp-quantity span {
  display: inline-grid;
  min-width: 38px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.pdp-quantity button {
  cursor: pointer;
}

.pdp-trust-list {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}

.pdp-trust-list span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: #7f8c72;
  vertical-align: 1px;
}

.pdp-description {
  max-width: 520px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.pdp-accordions {
  border-top: 1px solid var(--line);
}

.pdp-accordions details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.pdp-accordions summary {
  cursor: pointer;
  font-size: 12px;
  list-style: none;
}

.pdp-accordions summary::-webkit-details-marker {
  display: none;
}

.pdp-accordions summary::after {
  content: "+";
  float: right;
}

.pdp-accordions details[open] summary::after {
  content: "-";
}

.pdp-accordions p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.pdp-add {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 320px);
  min-height: 46px;
  margin-top: 0;
  border: 0;
  background: var(--ink);
  color: #fffaf1;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}

.pdp-mobile-buy {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px;
  background: rgba(246, 241, 234, 0.96);
  box-shadow: 0 18px 46px rgba(31, 28, 23, 0.16);
  backdrop-filter: blur(14px);
}

.pdp-mobile-buy span,
.pdp-mobile-buy strong,
.pdp-mobile-buy small {
  display: block;
}

.pdp-mobile-buy strong {
  font-size: 12px;
  font-weight: 400;
}

.pdp-mobile-buy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.pdp-mobile-buy button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  background: var(--ink);
  color: #fffaf1;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22, 21, 18, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100vw, 500px);
  height: 100vh;
  height: 100svh;
  background: #f5efe8;
  color: var(--ink);
  box-shadow: -24px 0 70px rgba(22, 21, 18, 0.15);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(31, 28, 23, 0.08);
}

.cart-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.cart-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.cart-close,
.cart-remove,
.cart-quantity button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.cart-close {
  font-size: 36px;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 24px 20px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-empty-state {
  display: grid;
  gap: 18px;
  align-content: start;
}

.cart-line {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 30px;
}

.cart-line-image {
  display: grid;
  place-items: center;
  width: 130px;
  height: 162px;
  background: #ece6dd;
}

.cart-line-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line-copy {
  min-width: 0;
}

.cart-line-title,
.cart-line-price {
  margin: 0;
  font-size: 16px;
}

.cart-line-side {
  display: flex;
  min-height: 162px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-line-option {
  margin: 8px 0 84px;
  color: var(--muted);
  font-size: 14px;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(31, 28, 23, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.cart-quantity button,
.cart-quantity span {
  display: inline-grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  font-size: 16px;
}

.cart-remove {
  font-size: 28px;
  line-height: 1;
}

.cart-footer {
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(31, 28, 23, 0.08);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 18px;
}

.cart-subtotal strong {
  font-size: 24px;
}

.cart-checkout {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  background: #000;
  color: #fffaf1;
  font-size: 16px;
  text-decoration: none;
}

.cart-continue {
  display: grid;
  min-height: 42px;
  margin-top: 10px;
  place-items: center;
  border: 1px solid rgba(31, 28, 23, 0.16);
  color: var(--ink);
  font-size: 12px;
  text-decoration: none;
}

.cart-feedback {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  padding: 12px 16px;
  background: rgba(31, 28, 23, 0.92);
  color: #fffaf1;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

body.cart-added .cart-feedback {
  opacity: 1;
  transform: translateY(0);
}

body.cart-open .cart-feedback {
  right: calc(min(100vw, 500px) + 24px);
}

.pdp-scent-map {
  min-height: 100vh;
  min-height: 100svh;
}

.pdp-full-image {
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("assets/generated/micu/lifestyle/lifestyle_story_silk_grass_1.png");
  background-position: center center;
  background-size: cover;
}

.pdp-notes {
  padding: clamp(82px, 12vh, 130px) 34px;
  text-align: center;
}

.pdp-notes h2,
.pdp-editorial h2,
.pdp-ritual h2 {
  margin: 0 0 54px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
}

.pdp-note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(30px, 6vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
}

.pdp-note-grid article {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.note-art {
  display: block;
  width: clamp(210px, 18vw, 310px);
  height: clamp(142px, 12vw, 210px);
  object-fit: contain;
  object-position: center center;
}

.pdp-note-grid p {
  margin: 0;
  font-size: 11px;
}

.pdp-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 34px;
  gap: clamp(42px, 8vw, 140px);
}

.pdp-editorial-copy {
  max-width: 440px;
  justify-self: center;
}

.pdp-editorial-copy p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.pdp-editorial-image {
  min-height: min(72vh, 720px);
  background-image: url("assets/generated/micu/lifestyle/lifestyle_story_floral_shadow_room_1.png");
  background-position: center center;
  background-size: cover;
}

.pdp-home-editorial {
  min-height: 100vh;
  min-height: 100svh;
}

.pdp-ritual {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(54px, 10vw, 170px);
  align-items: center;
  min-height: 78vh;
  padding: 34px;
}

.pdp-ritual-image {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, #29351f 0 18%, transparent 19%),
    radial-gradient(circle at 68% 62%, #586544 0 20%, transparent 21%),
    linear-gradient(135deg, #142213, #89966f);
}

.pdp-ritual-copy {
  max-width: 780px;
}

.pdp-ritual ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pdp-ritual li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  min-height: 52px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.pdp-ritual span,
.pdp-ritual p {
  margin: 0;
  font-size: 11px;
}

.pdp-related {
  padding: 74px 34px 60px;
}

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

.pdp-subscribe {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 54px 88px;
  color: #fffaf1;
  background:
    linear-gradient(180deg, rgba(28, 29, 22, 0.08), rgba(28, 29, 22, 0.46)),
    url("assets/generated/micu/fashion-editorial-landscape/fashion_misty_hill_sisterhood_01_1.png");
  background-position: center center;
  background-size: cover;
}

.pdp-subscribe div {
  max-width: 520px;
}

.pdp-subscribe p {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.16;
}

.pdp-subscribe small {
  display: block;
  max-width: 360px;
  margin: -10px 0 28px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 11px;
  line-height: 1.6;
}

.pdp-subscribe form {
  display: flex;
  border-bottom: 1px solid rgba(255, 250, 241, 0.72);
}

.pdp-subscribe input,
.pdp-subscribe button {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
}

.pdp-subscribe input {
  flex: 1;
}

.pdp-subscribe input::placeholder {
  color: rgba(255, 250, 241, 0.76);
}

.pdp-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 44px;
  min-height: 420px;
  padding: 70px 34px 38px;
}

.pdp-footer p {
  max-width: 300px;
  color: var(--muted);
  font-size: 11px;
}

.pdp-footer nav {
  display: flex;
  gap: 24px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .product-header,
  .pdp-product-stack,
  .pdp-hero,
  .pdp-scent-map,
  .pdp-editorial,
  .pdp-ritual,
  .pdp-footer {
    grid-template-columns: 1fr;
  }

  .product-header {
    position: static;
    gap: 12px;
    padding: 18px;
  }

  .product-nav,
  .product-nav-right {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .pdp-gallery,
  .pdp-summary,
  .pdp-hero {
    min-height: auto;
  }

  .pdp-summary {
    position: static;
  }

  .pdp-summary,
  .pdp-editorial,
  .pdp-ritual,
  .pdp-related {
    padding: 54px 18px;
  }

  .pdp-scent-map {
    min-height: 70vh;
  }

  .pdp-full-image {
    grid-column: 1;
  }

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

  .pdp-subscribe {
    justify-content: flex-start;
    padding: 44px 18px;
  }

  .pdp-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .pdp-mobile-buy {
    display: grid;
  }
}

@media (max-width: 560px) {
  .pdp-note-grid,
  .pdp-related-grid {
    grid-template-columns: 1fr;
  }

  .pdp-tabs {
    flex-wrap: wrap;
  }
}

.shop-page {
  background: var(--paper);
  color: var(--ink);
}

.shop-main {
  overflow: hidden;
}

.shop-listing {
  padding: clamp(150px, 23vh, 250px) 34px 74px;
}

.shop-heading-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.22em;
  margin: 0 0 34px;
  color: rgba(31, 28, 23, 0.36);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 400;
  line-height: 1.1;
}

.shop-heading-filter {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.shop-heading-filter.is-active {
  color: rgba(31, 28, 23, 0.82);
}

.shop-heading-filter:hover,
.shop-heading-filter:focus-visible {
  color: rgba(31, 28, 23, 0.82);
}

.shop-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
}

.shop-sort-trigger {
  min-height: 30px;
  border: 1px solid rgba(31, 28, 23, 0.14);
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.shop-count {
  white-space: nowrap;
}

.shop-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.shop-sort-trigger {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-width: 150px;
  padding: 0 12px;
  cursor: pointer;
}

.shop-sort-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.shop-sort.is-open .shop-sort-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.shop-sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 5;
  display: grid;
  min-width: 190px;
  padding: 6px;
  border: 1px solid rgba(31, 28, 23, 0.16);
  background: rgba(246, 241, 234, 0.98);
  box-shadow: 0 18px 40px rgba(31, 28, 23, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.shop-sort.is-open .shop-sort-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.shop-sort-menu button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: rgba(31, 28, 23, 0.58);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.shop-sort-menu button:hover,
.shop-sort-menu button:focus-visible,
.shop-sort-menu button.is-active {
  background: rgba(31, 28, 23, 0.045);
  color: var(--ink);
}

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

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

.shop-product-card {
  opacity: 0;
  transform: translateY(12px);
}

.shop-product-card.is-revealing {
  opacity: 1;
  transform: translateY(0);
}

.shop-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.shop-card em {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-style: normal;
  font-size: 10px;
}

.shop-image {
  display: grid;
  aspect-ratio: 1 / 1.18;
  place-items: center;
  background: #e9e1d5;
  overflow: hidden;
}

.shop-image::before {
  content: "";
  display: block;
  filter: drop-shadow(0 18px 24px rgba(36, 30, 24, 0.14));
}

.shop-image.bottle::before {
  width: 54px;
  height: 174px;
  border-radius: 42% 42% 26% 26% / 16% 16% 10% 10%;
  background:
    linear-gradient(180deg, #161513 0 21%, transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 33%, rgba(0, 0, 0, 0.26)),
    linear-gradient(180deg, #9a5528, #3d1f15);
}

.shop-image.bottle.olive::before {
  background:
    linear-gradient(180deg, #161513 0 21%, transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 33%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, #5f6936, #1d2918);
}

.shop-image.bottle.resin::before {
  background:
    linear-gradient(180deg, #151411 0 21%, transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 33%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, #b86b31, #4c2415);
}

.shop-image.bottle.smoke::before {
  background:
    linear-gradient(180deg, #151411 0 21%, transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 33%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, #6d6758, #2e2a22);
}

.shop-image.atomizer.round::before {
  width: 72px;
  height: 116px;
  border-radius: 34px 34px 14px 14px;
  background:
    linear-gradient(180deg, #d7c4a5 0 15%, transparent 16%),
    linear-gradient(180deg, #3b322c 0 20%, #ede5d7 21% 72%, #1b1915 73% 100%);
}

.shop-image.atomizer.mini::before {
  width: 50px;
  height: 98px;
  background:
    linear-gradient(180deg, #bbb3a5 0 18%, transparent 19%),
    linear-gradient(180deg, #f4f0e7 0 70%, #cfc5b4);
}

.shop-image.slim::before {
  width: 30px;
  height: 150px;
  background: linear-gradient(90deg, #7c6d5d, #312b24);
}

.shop-image.tall::before {
  width: 68px;
  height: 210px;
  border-radius: 26px 26px 9px 9px;
  background:
    linear-gradient(180deg, #14130f 0 17%, transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, #5e6936, #24301a);
}

.shop-image.tall.amber::before {
  background:
    linear-gradient(180deg, #14130f 0 17%, transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, #bc6b26, #5a2d14);
}

.shop-image.tube::before {
  width: 84px;
  height: 190px;
  border-radius: 10px 10px 24px 24px;
  background: linear-gradient(180deg, #f3eadb, #d4c1a5 84%, #12110f 85% 100%);
}

.shop-image.tube.cocoa::before {
  background: linear-gradient(180deg, #8d5f4b, #4b3027 84%, #151310 85% 100%);
}

.shop-image.tube.pollen::before {
  background: linear-gradient(180deg, #d6b75b, #e4cf82 84%, #151310 85% 100%);
}

.shop-image.tube.rose::before {
  background: linear-gradient(180deg, #9b5c76, #5e3247 84%, #151310 85% 100%);
}

.shop-image.set::before {
  width: 160px;
  height: 100px;
  background:
    linear-gradient(90deg, transparent 0 6%, #13120f 7% 10%, #d6ba63 11% 18%, transparent 19% 25%, #13120f 26% 29%, #9f8235 30% 37%, transparent 38% 44%, #13120f 45% 48%, #c09143 49% 56%, transparent 57% 63%, #13120f 64% 67%, #e2ce88 68% 75%, transparent 76% 82%, #13120f 83% 86%, #b98f43 87% 94%, transparent 95%);
}

.shop-image.box::before {
  width: 150px;
  height: 105px;
  border-radius: 8px;
  background: #2d1f24;
}

.shop-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
}

.shop-meta strong,
.shop-meta small {
  font: inherit;
}

.shop-brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
  gap: 32px;
  min-height: 180px;
  padding: 0 34px;
  overflow: hidden;
  color: rgba(31, 28, 23, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 42px);
  text-transform: uppercase;
}

.shop-social {
  padding: 0 0 34px;
}

.shop-social p {
  margin: 0 34px 24px;
  color: var(--muted);
  font-size: 12px;
}

.shop-social-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 10px;
}

.social-tile {
  min-height: clamp(150px, 16vw, 260px);
  background: linear-gradient(135deg, #d8c59e, #5f6c38);
}

.social-tile.two {
  background: linear-gradient(135deg, #7a5833, #27241a);
}

.social-tile.three {
  background: linear-gradient(135deg, #b7b28d, #314524);
}

.social-tile.four {
  background: linear-gradient(135deg, #d7d0bf, #3b392c);
}

.social-tile.five {
  background: linear-gradient(135deg, #f2e8d8, #67765a);
}

.shop-subscribe {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 54px 90px;
  color: #fffaf1;
  background:
    linear-gradient(180deg, rgba(28, 29, 22, 0.18), rgba(28, 29, 22, 0.42)),
    linear-gradient(135deg, #b5afa2, #586642 44%, #1e291a);
}

.shop-subscribe div {
  max-width: 520px;
}

.shop-subscribe p {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.16;
}

.shop-subscribe form {
  display: flex;
  border-bottom: 1px solid rgba(255, 250, 241, 0.72);
}

.shop-subscribe input,
.shop-subscribe button {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
}

.shop-subscribe input {
  flex: 1;
}

.shop-subscribe input::placeholder {
  color: rgba(255, 250, 241, 0.76);
}

.shop-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  grid-template-rows: auto 1fr auto;
  gap: 78px 80px;
  min-height: 100vh;
  min-height: 100svh;
  padding: 70px 34px 34px;
  background: var(--paper);
}

.shop-footer-intro p {
  max-width: 320px;
  color: var(--muted);
  font-size: 11px;
}

.shop-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 42px;
  align-self: center;
}

.shop-footer-links h3 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.shop-footer-links a {
  display: block;
  margin: 5px 0;
  font-size: 11px;
}

.shop-footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 900px) {
  .shop-grid,
  .shop-footer,
  .shop-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-listing {
    padding: 74px 18px 54px;
  }

  .shop-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-count {
    margin-left: 0;
  }

  .shop-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 34px 18px;
  }

  .shop-social p {
    margin-right: 18px;
    margin-left: 18px;
  }

  .shop-social-rail {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .shop-subscribe,
  .shop-footer {
    padding: 44px 18px;
  }
}

@media (max-width: 560px) {
  .shop-grid,
  .shop-footer,
  .shop-footer-links {
    grid-template-columns: 1fr;
  }

  .shop-social-rail {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .shop-footer-bottom {
    flex-direction: column;
  }

  .cart-line {
    grid-template-columns: 118px 1fr;
    gap: 18px;
  }

  .cart-line-image {
    width: 118px;
    height: 150px;
  }

  .cart-line-side {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    min-height: auto;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .cart-line-title,
  .cart-line-price {
    font-size: 15px;
  }

  .cart-line-option {
    margin: 8px 0 28px;
    font-size: 13px;
  }

  body.cart-open .cart-feedback {
    opacity: 0;
  }
}
