:root {
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #1f1f1f;
  --muted: #656565;
  --line: #ece4d9;
  --orange: #f47f3c;
  --yellow: #f1c53f;
  --lime: #a9e65b;
  --teal: #31c7d0;
  --blue: #5f86df;
  --violet: #705db8;
  --shadow: 0 20px 60px rgba(76, 49, 22, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf3 0%, #fff4e5 100%);
}

body.cart-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.announcement-bar {
  display: none;
}

.announcement-inner,
.social-inner,
.page-shell,
.site-footer {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  font-size: 0.92rem;
}

.announcement-inner p,
.social-inner span {
  margin: 0;
}

.announcement-links,
.social-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-strip {
  display: none;
}

.social-inner {
  min-height: 42px;
  justify-content: flex-end;
  font-size: 0.88rem;
  color: var(--muted);
}

.page-shell {
  width: min(100%, 1900px);
  padding-bottom: 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.header-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 108px;
  padding: 4px 104px 1px;
}

.header-spacer {
  min-height: 1px;
}

.header-icons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7b3fd0;
}

.header-icon.is-signed-in {
  color: var(--ink);
}

.header-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart {
  gap: 4px;
  font-weight: 700;
}

.header-cart-count {
  min-width: 12px;
  font-size: 1.08rem;
}

.account-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.account-menu-label,
.account-menu-email {
  margin: 0;
}

.account-menu-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-menu-email {
  font-size: 0.95rem;
}

.account-menu-action {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf5;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 50px;
  padding: 0 18px 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.site-nav a,
.site-nav summary,
.social-inner a,
.announcement-links a {
  color: #7b3fd0;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  min-width: 300px;
  padding: 12px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}

.nav-dropdown[open] .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fffaf5;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-caret {
  position: relative;
  top: -1px;
  margin-left: 4px;
  font-size: 0.95em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.social-inner a:hover,
.social-inner a:focus-visible,
.announcement-links a:hover,
.announcement-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.product-meta a:hover,
.product-meta a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  border-color: #eadfce;
  background: #fff;
}

.brand img {
  width: 220px;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.header-action {
  display: none;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero,
.split-section,
.retailer-band,
.products,
.text-adverts,
.blog-section,
.newsletter {
  margin-top: 24px;
}

.hero,
.split-section,
.newsletter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.hero {
  min-height: 660px;
  padding: 40px 16px 20px;
}

.kicker,
.retailer-band .kicker,
.blog-grid span {
  margin: 0 0 12px;
  color: #7e7e7e;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.split-copy h2,
.section-heading h2,
.newsletter h2,
.text-adverts h3,
.blog-grid h3,
.site-footer h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.hero h1 {
  max-width: 7ch;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-copy p:not(.kicker),
.split-copy p:not(.kicker),
.section-heading,
.product-card p,
.text-adverts p,
.blog-grid p,
.newsletter-copy p:not(.kicker),
.site-footer p,
.site-footer small {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.hero-media,
.split-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  border-radius: 40px;
  overflow: hidden;
}

.hero-media {
  background: linear-gradient(135deg, #7de6eb 0%, #44c9d3 100%);
}

.split-media {
  background: linear-gradient(135deg, #d7ff92 0%, #9ee16c 100%);
}

.hero-media img,
.split-media img {
  position: relative;
  z-index: 2;
  width: min(480px, 82%);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.16));
}

.hero-burst {
  position: absolute;
  border-radius: 32px;
  transform: rotate(-18deg);
}

.burst-yellow {
  width: 220px;
  height: 220px;
  background: rgba(255, 227, 78, 0.92);
  left: 30px;
  top: 34px;
}

.burst-teal {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.4);
  right: 36px;
  bottom: 42px;
}

.split-copy {
  padding-right: 24px;
}

.split-copy h2,
.section-heading h2,
.newsletter h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
}

.retailer-band {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.retailer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border-radius: 24px;
  background: #fff8ef;
  font-weight: 700;
}

.retailer-card img {
  width: 72px;
}

.retailer-card-amazon {
  background: #f5f8ff;
}

.retailer-logo-amazon {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.retailer-badge {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading.centered {
  text-align: center;
}

.products {
  padding-top: 12px;
}

.product-grid,
.text-adverts,
.blog-grid,
.site-footer {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.text-adverts article,
.blog-grid article,
.newsletter,
.site-footer {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
}

.shape {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 36px;
  transform: rotate(-20deg);
}

.star-lime { background: #b8f267; }
.star-orange { background: #ff9548; }
.star-blue { background: #7fd2ff; }
.star-mint { background: #87f3bf; }

.card-teal .product-frame { background: #4ccfd7; }
.card-violet .product-frame { background: #7a69c2; }
.card-lime .product-frame { background: #9fe86f; }
.card-coral .product-frame { background: #ff8d66; }

.product-frame img {
  position: relative;
  z-index: 1;
  width: min(240px, 82%);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
}

.product-card h3,
.product-card p,
.product-meta {
  padding-left: 20px;
  padding-right: 20px;
}

.product-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 20px;
}

.product-meta a,
.add-to-cart {
  font-weight: 800;
  color: var(--muted);
}

.add-to-cart {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.add-to-cart:hover,
.add-to-cart:focus-visible {
  color: var(--ink);
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  padding: 34px 22px;
  border-radius: 0;
  background: #7b3fd0;
  color: #fff;
}

.benefit-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 24px;
  min-height: 236px;
  padding: 22px 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item-last {
  border-right: 0;
}

.benefit-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 14, 9, 0.32);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-drawer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  height: 100%;
  padding: 22px;
  background: #fffdf9;
  box-shadow: -18px 0 40px rgba(41, 22, 8, 0.12);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-summary,
.cart-item,
.cart-qty {
  display: flex;
  align-items: center;
}

.cart-header,
.cart-item,
.cart-footer {
  border-color: var(--line);
}

.cart-header {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2,
.cart-item-name {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.cart-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-body {
  padding: 18px 0;
  overflow: auto;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: #fff4e7;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: grid;
  gap: 8px;
}

.cart-item-badge,
.cart-page-badge,
.checkout-summary-item p,
.confirmation-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.cart-item-price {
  font-weight: 800;
  color: var(--ink);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-qty {
  gap: 8px;
}

.cart-qty button,
.cart-remove,
.cart-checkout {
  cursor: pointer;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.cart-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary {
  justify-content: space-between;
}

.cart-checkout {
  width: 100%;
  border: 0;
}

.cart-view-cart {
  width: 100%;
}

.utility-page {
  padding: 24px 0 48px;
}

.utility-shell {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
}

.utility-hero {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.utility-hero h1,
.summary-card h2,
.checkout-card h2,
.confirmation-card h1,
.empty-state h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.utility-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

.account-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.cart-page-list,
.summary-card,
.checkout-card,
.confirmation-card,
.account-card,
.account-side,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cart-page-list,
.checkout-card,
.summary-card,
.confirmation-card,
.account-card,
.account-side,
.empty-state {
  padding: 28px;
}

.account-card,
.account-side,
.account-form,
.account-benefits,
.account-benefits article,
.account-tabs,
.account-session {
  display: grid;
}

.account-card,
.account-side {
  gap: 22px;
}

.account-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-tab {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf5;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.account-tab.is-active {
  border-color: #7b3fd0;
  background: #f4ecff;
  color: #6a31bc;
}

.account-form,
.account-session {
  gap: 18px;
}

.account-submit {
  width: 100%;
}

.account-inline-note,
.account-session-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-inline-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.account-inline-note a {
  color: #7b3fd0;
  font-weight: 700;
}

.account-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.account-checkbox input {
  margin-top: 3px;
}

.account-feedback {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.account-feedback[data-tone="success"] {
  color: #217a43;
}

.account-feedback[data-tone="error"] {
  color: #bf3d28;
}

.journal-page {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.journal-hero,
.journal-feature,
.journal-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.journal-hero {
  align-items: stretch;
  margin-top: 24px;
}

.journal-hero-copy,
.journal-hero-panel,
.journal-feature-copy,
.journal-feature-media,
.journal-grid-shell,
.journal-cta {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.journal-hero-copy,
.journal-hero-panel,
.journal-feature-copy,
.journal-grid-shell,
.journal-cta {
  padding: 32px;
}

.journal-hero-copy,
.journal-feature-copy,
.journal-hero-panel,
.journal-grid-shell,
.journal-cta,
.journal-card {
  display: grid;
  gap: 16px;
}

.journal-hero-copy h1,
.journal-feature-copy h2,
.journal-hero-panel h2,
.journal-grid-shell h2,
.journal-cta h2,
.journal-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.journal-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.journal-hero-panel {
  align-content: center;
  background: linear-gradient(180deg, #fff8ef, #f3edff);
}

.journal-eyebrow,
.journal-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-meta-row,
.journal-pagination,
.journal-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.journal-meta-row span,
.journal-page-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff4df;
  color: #7e5b20;
  font-weight: 700;
}

.journal-feature-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(180deg, #faf3e7, #efe6ff);
}

.journal-feature-media img {
  position: relative;
  z-index: 1;
  width: min(340px, 72%);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.18));
}

.journal-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 42px;
  transform: rotate(-16deg);
}

.orb-orange {
  top: 44px;
  left: 46px;
  background: #ff9a56;
}

.orb-teal {
  right: 54px;
  bottom: 52px;
  background: #4ed3da;
}

.journal-grid-shell {
  gap: 24px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.journal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #fffefb, #fff7ec);
}

.journal-card-featured {
  background: linear-gradient(180deg, #f3ecff, #fff6ea);
}

.journal-category,
.journal-article-category {
  margin: 0;
  color: #7b3fd0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-hero-panel,
.journal-feature-copy {
  align-content: center;
}

.journal-feature-copy h2 {
  max-width: 14ch;
}

.journal-page .section-heading.centered {
  margin-bottom: 6px;
}

.journal-article-page {
  width: min(980px, calc(100% - 28px));
  margin: 24px auto 0;
  display: grid;
  gap: 24px;
}

.journal-article-shell,
.journal-related {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px;
}

.journal-article-shell,
.journal-article-content,
.journal-article-section,
.journal-related {
  display: grid;
  gap: 18px;
}

.journal-article-title,
.journal-article-section h2,
.journal-related h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.journal-article-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.journal-article-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-page {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.about-hero,
.about-split,
.about-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-hero {
  margin-top: 24px;
  align-items: stretch;
}

.about-hero-copy,
.about-hero-media,
.about-section,
.about-panel,
.about-cta,
.about-tech-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-hero-copy,
.about-section,
.about-panel,
.about-cta,
.about-tech-card {
  padding: 32px;
}

.about-hero-copy,
.about-section,
.about-panel,
.about-cta,
.about-tech-card,
.about-section-head,
.about-copy-grid,
.about-tech-grid {
  display: grid;
  gap: 18px;
}

.about-hero-copy h1,
.about-section-head h2,
.about-panel h2,
.about-cta h2,
.about-tech-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.about-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

.about-hero-quote,
.about-copy-grid p,
.about-panel p,
.about-tech-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #faf3e7, #efe6ff);
}

.about-hero-media img {
  position: relative;
  z-index: 1;
  width: min(360px, 74%);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.18));
}

.about-copy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-panel-violet {
  background: linear-gradient(180deg, #f2ebff, #fff7ec);
}

.about-panel-cream {
  background: linear-gradient(180deg, #fffdf7, #fff6e8);
}

.about-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 12px;
  line-height: 1.7;
}

.about-tech-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-cta {
  align-items: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #fff8ef, #f1ebff);
}

.product-page {
  width: min(100% - 28px, 1240px);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.product-hero,
.product-info-grid,
.product-highlight-grid,
.product-usage-grid,
.product-related-grid {
  display: grid;
  gap: 24px;
}

.product-hero,
.product-info-grid,
.product-usage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-media-stack {
  display: grid;
  gap: 24px;
  align-content: start;
}

.product-highlight-grid,
.product-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-hero {
  margin-top: 24px;
  align-items: start;
}

.product-gallery,
.product-purchase,
.product-section,
.product-highlight-card,
.product-usage-card,
.product-faq-item {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-gallery,
.product-purchase,
.product-section,
.product-highlight-card,
.product-usage-card,
.product-faq-item {
  padding: 32px;
}

.product-gallery {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #63dce2 0%, #83eff1 45%, #f9ffbb 100%);
}

.product-gallery .shape {
  width: 160px;
  height: 160px;
  top: 72px;
  right: 68px;
}

.product-gallery img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 48px auto 0;
  filter: drop-shadow(0 34px 40px rgba(23, 42, 60, 0.2));
}

.product-gallery-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-purchase,
.product-section,
.product-highlight-card,
.product-usage-card {
  display: grid;
  gap: 18px;
}

.product-purchase {
  align-self: stretch;
}

.product-title,
.product-section h2,
.product-highlight-card h3,
.product-usage-card h3,
.product-related-head h2,
.product-faq-head h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.product-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.product-price {
  font-family: "Outfit", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.product-price-note,
.product-summary,
.product-section p,
.product-highlight-card p,
.product-usage-card p,
.product-faq-item p,
.product-add-status,
.product-subcopy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-pill-list,
.product-bullet-list,
.product-ingredient-list,
.product-usage-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-pill-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f4ecff;
  color: #6a31bc;
  font-weight: 700;
}

.product-bullet-list,
.product-ingredient-list,
.product-usage-list {
  display: grid;
  gap: 12px;
}

.product-bullet-list li,
.product-ingredient-list li,
.product-usage-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.7;
}

.product-bullet-list li::before,
.product-ingredient-list li::before,
.product-usage-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.product-ingredient-image {
  display: block;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #231f20;
}

.product-purchase-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8ef, #f7efff);
  border: 1px solid var(--line);
}

.product-purchase-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-purchase-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.product-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.product-qty-control button,
.product-qty-control span {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-qty-control button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-qty-control span {
  font-weight: 700;
}

.product-add-status {
  min-height: 1.5em;
  font-size: 0.92rem;
}

.product-section-head,
.product-related-head,
.product-faq-head {
  display: grid;
  gap: 12px;
}

.product-highlight-card {
  background: linear-gradient(180deg, #fffdf7, #fff6e8);
}

.product-usage-card {
  background: linear-gradient(180deg, #eefcff, #fff);
}

.product-faq-list {
  display: grid;
  gap: 16px;
}

.product-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.product-faq-item summary::-webkit-details-marker {
  display: none;
}

.product-faq-item[open] summary {
  margin-bottom: 14px;
}

.product-card-link {
  margin-top: 4px;
}

.journal-tag-list,
.journal-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.journal-tag-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f3edff;
  color: #6a31bc;
  font-weight: 700;
}

.journal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-article-content p,
.journal-article-section p {
  margin: 0;
  color: var(--ink);
  line-height: 1.85;
}

.journal-page-pill {
  background: #fffaf5;
  color: var(--ink);
  border: 1px solid var(--line);
}

.journal-page-pill.is-active {
  background: #7b3fd0;
  color: #fff;
  border-color: #7b3fd0;
}

.journal-cta {
  align-items: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #fff8ef, #f1ebff);
}

.account-session {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8ef, #f7efff);
}

.account-session h2,
.account-side h2,
.account-benefits strong {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.account-session-email,
.account-benefits p {
  margin: 0;
  color: var(--muted);
}

.account-benefits {
  gap: 14px;
}

.account-benefits article {
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefb, #fff5e8);
  border: 1px solid var(--line);
}

.cart-page-items,
.checkout-summary-items,
.confirmation-items {
  display: grid;
  gap: 16px;
}

.cart-page-item,
.checkout-summary-item,
.confirmation-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-page-item:last-child,
.checkout-summary-item:last-child,
.confirmation-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-page-item-image,
.checkout-summary-item img,
.confirmation-item img {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  object-fit: cover;
  background: #fff4e7;
}

.cart-page-item-copy,
.checkout-summary-item > div,
.confirmation-item > div {
  flex: 1;
  display: grid;
  gap: 8px;
}

.cart-page-item-head,
.summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-page-item-head h3,
.checkout-summary-item h3,
.confirmation-item h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.cart-page-item-note,
.checkout-note,
.summary-help,
.confirmation-card p,
.empty-state p {
  margin: 0;
  color: var(--muted);
}

.cart-page-item-actions,
.cart-page-qty,
.utility-actions,
.summary-actions,
.confirmation-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-page-item-actions {
  justify-content: space-between;
}

.cart-page-qty button,
.cart-page-remove {
  cursor: pointer;
}

.cart-page-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.cart-page-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.summary-card {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 110px;
}

.summary-row {
  color: var(--muted);
}

.summary-row strong,
.summary-total {
  color: var(--ink);
}

.summary-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
}

.summary-actions,
.confirmation-actions {
  flex-direction: column;
}

.summary-actions .button,
.confirmation-actions .button {
  width: 100%;
}

.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.checkout-card {
  display: grid;
  gap: 20px;
}

.checkout-progress,
.checkout-express,
.checkout-section,
.summary-card-head,
.checkout-trust {
  display: grid;
}

.checkout-progress {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-step,
.checkout-express,
.checkout-section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefb, #fff7eb);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.checkout-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #7b3fd0;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.checkout-step strong,
.checkout-section-head h2,
.summary-card-head h2 {
  display: block;
}

.checkout-step small {
  color: var(--muted);
}

.checkout-express,
.checkout-section {
  gap: 18px;
  padding: 22px;
}

.checkout-express-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-chip {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.checkout-section-head {
  display: grid;
  gap: 8px;
}

.checkout-form {
  display: grid;
  gap: 20px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-field {
  display: grid;
  gap: 8px;
}

.checkout-field label {
  font-weight: 700;
}

.checkout-field input,
.checkout-field select {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf5;
}

.checkout-field input:focus,
.checkout-field select:focus {
  outline: 2px solid rgba(123, 63, 208, 0.18);
  border-color: #7b3fd0;
}

.checkout-field-full {
  grid-column: 1 / -1;
}

.checkout-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-trust span,
.summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff4df;
  color: #7e5b20;
  font-size: 0.9rem;
  font-weight: 700;
}

.checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-submit {
  min-width: 220px;
}

.summary-card-head {
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.confirmation-card {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 24px auto 0;
}

.confirmation-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.confirmation-meta article {
  padding: 16px;
  border-radius: 20px;
  background: #fff8ef;
}

.confirmation-meta p,
.confirmation-meta strong {
  margin: 0;
}

.empty-state {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
}

.text-adverts,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-adverts article,
.blog-grid article {
  padding: 24px;
}

.blog-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.newsletter {
  padding: 34px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.newsletter-form input {
  width: min(360px, 100%);
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf5;
}

.newsletter-form button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.site-footer {
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  width: min(1240px, calc(100% - 28px));
  margin-bottom: 30px;
  padding: 30px;
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand img {
  width: 140px;
}

.footer-brand p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #7b3fd0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 92px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .header-spacer {
    display: none;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retailer-band,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .announcement-inner,
  .social-inner,
  .newsletter-form,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 66px;
    gap: 12px;
    padding: 4px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 144px;
  }

  .header-icons {
    gap: 7px;
  }

  .header-icon svg {
    width: 20px;
    height: 20px;
  }

  .site-nav {
    display: none;
    gap: 14px;
    min-height: auto;
    padding: 0 0 18px;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    font-size: 0.88rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 10px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 0 10px 14px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    display: grid;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .hero,
  .split-section,
  .newsletter,
  .retailer-band,
  .benefit-band,
  .journal-hero,
  .journal-feature,
  .journal-cta,
  .about-hero,
  .about-split,
  .about-cta,
  .product-hero,
  .product-info-grid,
  .product-highlight-grid,
  .product-usage-grid,
  .product-related-grid,
  .text-adverts,
  .blog-grid,
  .journal-grid,
  .about-copy-grid,
  .about-tech-grid,
  .journal-related-grid,
  .site-footer,
  .account-layout,
  .utility-layout,
  .checkout-layout,
  .checkout-grid,
  .confirmation-meta,
  .checkout-progress,
  .checkout-trust,
  .summary-card-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .journal-feature-media {
    min-height: 320px;
  }

  .about-hero-media {
    min-height: 320px;
  }

  .hero-media,
  .split-media {
    min-height: 380px;
  }

  .split-copy {
    padding-right: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .journal-page {
    width: min(100% - 18px, 1240px);
  }

  .about-page {
    width: min(100% - 18px, 1240px);
  }

  .product-page {
    width: min(100% - 18px, 1240px);
  }

  .journal-article-page {
    width: min(100% - 18px, 980px);
  }

  .product-gallery {
    min-height: 420px;
  }

  .product-gallery img {
    margin-top: 48px;
    width: min(360px, 82%);
  }

  .product-purchase-row {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-item {
    min-height: 0;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .benefit-item-last {
    border-bottom: 0;
  }

  .checkout-actions,
  .cart-page-item-actions,
  .account-inline-note,
  .account-session-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .page-shell,
  .site-footer,
  .announcement-inner,
  .social-inner {
    width: min(100% - 18px, 1240px);
  }

  .hero h1,
  .split-copy h2,
  .section-heading h2,
  .newsletter h2,
  .journal-hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .brand img {
    width: 136px;
  }
}