:root {
  --ink: #241d2a;
  --muted: #766d78;
  --cream: #fff8e8;
  --pink: #ff6fae;
  --coral: #ff7d64;
  --yellow: #ffd33d;
  --mint: #83e7c6;
  --blue: #71c9ff;
  --lilac: #c9a7ff;
  --line: rgba(36, 29, 42, 0.14);
  --shadow: 0 24px 70px rgba(36, 29, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 232, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}


.nav-menu-item {
  position: static;
}

.collection-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.collection-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-menu-item:hover .collection-trigger,
.nav-menu-item:focus-within .collection-trigger {
  color: var(--ink);
}

.nav-menu-item:hover .collection-trigger::after,
.nav-menu-item:focus-within .collection-trigger::after {
  transform: scaleX(1);
}

.collection-mega {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% - 1px);
  z-index: 30;
  width: 900px;
  max-width: calc(100vw - 32px);
  visibility: hidden;
  opacity: 0;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(36, 29, 42, 0.12);
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-menu-item:hover .collection-mega,
.nav-menu-item:focus-within .collection-mega {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-title {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

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

.collection-menu-card {
  min-height: 156px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.collection-card-head,
.collection-product-link {
  display: flex;
  align-items: center;
  color: var(--ink);
}

.collection-card-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-product-link {
  gap: 12px;
  min-height: 34px;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.collection-product-link:hover,
.collection-product-link:focus-visible,
.collection-card-head:hover,
.collection-card-head:focus-visible {
  color: var(--coral);
}


.menu-product-image {
  flex: 0 0 auto;
  width: 28px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 8px rgba(36, 29, 42, 0.12));
}

.mobile-collection-panel .menu-product-image {
  width: 30px;
  height: 44px;
}

.concerns-mega {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% - 1px);
  z-index: 30;
  width: 750px;
  max-width: calc(100vw - 32px);
  visibility: hidden;
  opacity: 0;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(36, 29, 42, 0.12);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.concerns-menu-item:hover .concerns-mega,
.concerns-menu-item:focus-within .concerns-mega {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.concerns-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.concern-card {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 150px;
  padding: 20px 12px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.concern-card:hover,
.concern-card:focus-visible {
  color: var(--ink);
  border-color: rgba(36, 29, 42, 0.18);
  box-shadow: 0 14px 34px rgba(36, 29, 42, 0.1);
  transform: translateY(-3px);
}

.concern-frizz {
  background: #faf5ee;
}

.concern-damage {
  background: #faf1f1;
}

.concern-dryness {
  background: #f2f3ea;
}

.concern-dull {
  background: #fff4cf;
}

.concern-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.concern-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concern-icon circle {
  fill: currentColor;
  stroke: none;
}

.mobile-concerns-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 12px 12px;
}

.mobile-concerns-panel .concern-card {
  min-height: 118px;
  padding: 16px 8px;
  font-size: 0.82rem;
}

.mobile-concerns-panel .concern-icon {
  width: 36px;
  height: 36px;
}

.mobile-concerns-panel .concern-icon svg {
  width: 32px;
  height: 32px;
}

.offcanvas-nav .mobile-concerns .concern-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 118px;
  padding: 16px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-transform: none;
}

.mobile-collection {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-collection summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.mobile-collection summary::-webkit-details-marker {
  display: none;
}

.mobile-collection summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 900;
}

.mobile-collection[open] summary::after {
  content: "-";
}

.mobile-collection-panel {
  display: grid;
  gap: 12px;
  padding: 0 12px 12px;
}

.mobile-collection-panel .collection-menu-card {
  min-height: auto;
  padding: 14px;
  background: var(--cream);
}

.mobile-collection-panel .collection-product-link {
  font-size: 0.84rem;
}

.cart-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 58px;
  height: 42px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.cart-icon {
  position: relative;
  width: 18px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}


.mobile-menu {
  width: min(86vw, 360px) !important;
  color: var(--ink);
  background: var(--cream);
  border-right: 2px solid var(--ink);
}

.mobile-menu .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .offcanvas-body {
  padding: 18px 20px 26px;
}

.menu-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.offcanvas-nav {
  display: grid;
  gap: 10px;
}

.offcanvas-nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}


.offcanvas-nav .mobile-collection .collection-card-head,
.offcanvas-nav .mobile-collection .collection-product-link {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.offcanvas-nav .mobile-collection .collection-card-head {
  margin-bottom: 12px;
}

.offcanvas-nav .mobile-collection .collection-product-link {
  min-height: 32px;
}

.offcanvas-nav .mobile-concerns .concern-frizz {
  background: #faf5ee;
}

.offcanvas-nav .mobile-concerns .concern-damage {
  background: #faf1f1;
}

.offcanvas-nav .mobile-concerns .concern-dryness {
  background: #f2f3ea;
}

.offcanvas-nav .mobile-concerns .concern-dull {
  background: #fff4cf;
}

.offcanvas-backdrop.show {
  opacity: 0.42;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(1px, 5vw, 10px) clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
}

.hero-copy {
  max-width: 700px;
}

.hero-banner-link {
  display: block;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-banner-link:hover,
.hero-banner-link:focus-visible {
  outline: none;
}

.hero-banner-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.45rem, 7vw, 6.0rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 7vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.05;
}

.hero-copy>p:not(.kicker),
.finder-copy p,
.ingredient p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-copy>p:not(.kicker) {
  max-width: 540px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.add-button,
.signup button,
.goal {
  min-height: 44px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
}

.primary,
.signup button {
  color: #fff;
  background: var(--ink);
}

.ghost {
  background: #fff;
  border: 1px solid var(--line);
}

.ticker {
  display: flex;
  gap: 10px;
  padding: 13px clamp(18px, 5vw, 72px);
  overflow: auto;
  background: var(--ink);
  color: #fff;
  scrollbar-width: none;
  justify-content: center;
}

@media (max-width: 430px) {
  .ticker {
    justify-content: left;
  }
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 9px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

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

.finder {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  background: var(--mint);
  border-block: 2px solid var(--ink);
}

.goal-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.goal {
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.goal.active {
  color: #fff;
  background: var(--ink);
}

.portrait-video-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.portrait-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch;
}

.portrait-video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 0;
  background: #fffaf0;
  border: 1px solid rgba(36, 29, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(36, 29, 42, 0.1);
}

.portrait-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viraa-reel-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: end;
  gap: 10px;
  padding: 46px 14px 16px;
  background: linear-gradient(180deg, rgba(25, 18, 40, 0), rgba(25, 18, 40, 0.72));
  pointer-events: none;
}

.viraa-reel-control {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.viraa-reel-control:hover,
.viraa-reel-control:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
}

.viraa-reel-progress {
  align-self: end;
  height: 4px;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.viraa-reel-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transition: width 120ms linear;
}

.image-band {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: end start;
  overflow: hidden;
  padding: clamp(30px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, rgba(36, 29, 42, 0.86), rgba(36, 29, 42, 0.1));
}

.image-band div {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.image-band .kicker {
  color: var(--yellow);
}

/* .ingredients {
  background: #fff;
} */

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

.ingredient {
  padding: 26px;
  min-height: 210px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ingredient span {
  display: block;
  margin-bottom: 46px;
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}


.ingredients .ingredient-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.ingredients .ingredient-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.ingredients .ingredient-img {
  height: 250px;
  overflow: hidden;
  background: #fff8ee;
}

.ingredients .ingredient-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ingredients .ingredient-img::before,
.ingredients .ingredient-img::after {
  display: none;
}

.ingredients .ingredient-grid h3 {
  margin: 18px 20px 7px;
  font-size: 20px;
  font-weight: 900;
}

.ingredients .ingredient-grid article p {
  margin: 0 20px 22px;
  color: #344150;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .portrait-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .ingredients .ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ingredients .ingredient-img {
    height: 250px;
  }

  .ingredients .ingredient-grid h3 {
    margin: 14px 14px 5px;
  }

  .ingredients .ingredient-grid article p {
    margin: 0 14px 16px;
  }
}

@media (max-width: 430px) {
  .portrait-video-grid {
    grid-template-columns: 1fr;
  }

  .ingredients .ingredient-grid {
    grid-template-columns: 1fr;
  }
}

.reviews {
  background: var(--yellow);
}

.reviews .review-wrap {
  position: relative;
}

.reviews .review-grid {
  display: flex;
  grid-template-columns: none;
  gap: 24px;
  overflow-x: auto;
  padding: 0 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews .review-grid::-webkit-scrollbar {
  display: none;
}

.reviews .review-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  min-height: 255px;
  padding: 38px 46px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 18px;
  scroll-snap-align: start;
}

.reviews .review-card p {
  max-width: 300px;
  margin: 22px 0 30px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.6;
}

.reviews .review-card i {
  position: absolute;
  right: 42px;
  bottom: 84px;
  color: #ebd5f3;
  font-size: 82px;
  font-style: normal;
  font-weight: 900;
}

.reviews .stars {
  color: #ffbf2f;
  letter-spacing: 2px;
}

.reviews .buyer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews .avatar {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background: #f4d4c8;
}

.reviews .avatar::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #5a3425;
}

.reviews .avatar::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: -12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
}

.reviews .avatar.a2 {
  background: #d8f0eb;
}

.reviews .avatar.a2::before {
  background: #1d5c4f;
}

.reviews .avatar.a3 {
  background: #e7dcff;
}

.reviews .avatar.a3::before {
  background: #4c2d79;
}

.reviews .buyer b {
  display: block;
}

.reviews .buyer small {
  color: #6f6a78;
}

.reviews .buyer em {
  color: #ad75c9;
  font-style: normal;
}

.reviews .slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e6ded3;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(20, 18, 32, 0.06);
  cursor: pointer;
  font-size: 30px;
  line-height: 1px;
  transform: translateY(-50%);
}

.reviews .slider-btn.left {
  left: -18px;
}

.reviews .slider-btn.right {
  right: -18px;
}

@media (max-width: 991px) {
  .reviews .review-grid {
    gap: 16px;
  }

  .reviews .review-card {
    flex-basis: min(82vw, 420px);
    padding: 30px;
  }

  .reviews .review-card p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .reviews .review-card {
    flex-basis: calc(100% - 8px);
    min-height: auto;
    padding: 24px;
  }

  .reviews .review-card p {
    font-size: 17px;
  }

  .reviews .review-card i {
    right: 24px;
    bottom: 70px;
    font-size: 54px;
  }

  .reviews .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .reviews .slider-btn.left {
    left: -10px;
  }

  .reviews .slider-btn.right {
    right: -10px;
  }
}

@media (max-width: 430px) {
  .reviews .review-card p {
    font-size: 16px;
  }
}

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

figure {
  min-height: 250px;
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

blockquote {
  margin: 0 0 26px;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.08;
}

figcaption {
  color: var(--muted);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 28px;
  align-items: end;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--yellow);
}

.signup label {
  display: block;
  margin-bottom: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.signup div {
  display: flex;
  gap: 8px;
}

.signup input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.signup button {
  min-width: 86px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
}

@media (max-width: 980px) {

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Reversible mobile banner order:
     Remove this block to restore content/image order on all hero slides.
     The first banner is intentionally excluded. */
  .hero-slider .hero-slide:not(:first-child) .hero-media {
    order: -1;
  }

  .hero-banner-link {
    max-width: 760px;
    justify-self: center;
  }

  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 3.4rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 46px minmax(0, 1fr) 58px;
    gap: 8px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .site-header .brand {
    grid-column: 1 / -1;
    position: absolute;
    left: 50%;
    justify-self: auto;
    transform: translateX(-50%);
  }


  .cart-link {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 1;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-banner-link {
    border-radius: 7px;
  }

  .ingredient-grid,
  .review-grid,
  .finder,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .goal-panel {
    justify-content: flex-start;
  }

  .image-band {
    min-height: 440px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }


  .cart-link {
    min-width: 50px;
    height: 38px;
  }

  .hero-actions,
  .signup div {
    flex-direction: column;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  blockquote,
  .ingredient span {
    font-size: 1.45rem;
  }

  .button,
  .signup button {
    width: 100%;
  }

}

/* ===== Merged page styles ===== */
/* Shared variables used by the original home page and merged account/cart/contact pages. */
:root {
  --purple: #b987ff;
  --dark: #21192e;
  --paper: #fff9ec;
  --cream-2: #fffaf0;
  --footer: #20182b;
}

/* Cart page styles, scoped so they do not alter the home page. */
body.cart-template {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at 20% 10%, #fffdf6 0, #fff7e9 35%, #fff4df 100%);
  color: var(--ink);
  letter-spacing: -.02em
}

body.cart-template .page-container {
  width: min(100% - 36px, 1240px);
  margin-inline: auto
}

body.cart-template .site-header {
  height: 68px;
  border-bottom: 1px solid rgba(40, 31, 55, .18);
  background: rgba(255, 249, 236, .75);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20
}

body.cart-template .navbar {
  height: 68px;
  padding: 0
}

body.cart-template .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em
}

body.cart-template .brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 900
}

body.cart-template .nav-links {
  gap: 24px
}

body.cart-template .nav-link {
  font-size: 12px;
  font-weight: 800;
  color: #373041 !important;
  padding: 0 !important
}

body.cart-template .nav-link.active {
  color: var(--ink) !important
}

body.cart-template .cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 22px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12)
}

body.cart-template .cart-hero {
  padding: 60px 0 22px
}

body.cart-template .eyebrow {
  font-size: 12px;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: .04em
}

body.cart-template .cart-hero h1 {
  font-size: 92px;
  line-height: .9;
  margin: 18px 0 18px;
  font-weight: 900;
  letter-spacing: -.075em
}

body.cart-template .cart-hero p {
  font-size: 17px;
  line-height: 1.35;
  color: var(--muted);
  margin: 0
}

body.cart-template .cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 405px;
  gap: 26px;
  align-items: start
}

body.cart-template .cart-box,
body.cart-template .summary-card,
body.cart-template .trust-strip {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .42);
  box-shadow: var(--shadow)
}

body.cart-template .cart-box {
  padding: 0 22px
}

body.cart-template .cart-item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 155px;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  align-items: center
}

body.cart-template .cart-item:last-child {
  border-bottom: 0
}

body.cart-template .product-art {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center
}

body.cart-template .product-art img {
  width: 72%;
  height: 82%;
  object-fit: contain;
  display: block
}

body.cart-template .product-art a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%
}

body.cart-template .shot-coral {
  background: var(--coral)
}

body.cart-template .shot-mint {
  background: #74dfc2
}

body.cart-template .shot-lemon {
  background: var(--yellow)
}

body.cart-template .shot-lilac {
  background: #b98bf4
}

body.cart-template .item-tag,
body.cart-template .routine-copy span {
  font-size: 11px;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: .03em
}

body.cart-template .item-copy h3 {
  font-size: 25px;
  line-height: 1.03;
  margin: 17px 0 12px;
  font-weight: 900;
  letter-spacing: -.05em
}

body.cart-template .item-copy h3 a,
body.cart-template .routine-copy h3 a {
  color: inherit;
  text-decoration: none
}

body.cart-template .item-copy p {
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 320px
}

body.cart-template .price {
  font-size: 17px
}

body.cart-template .item-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center
}

body.cart-template .item-actions>.qty {
  width: 146px;
  height: 51px;
  border: 2px solid #8d8794;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff
}

body.cart-template .item-actions>.qty button {
  border: 0;
  background: transparent;
  font-size: 25px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1
}

body.cart-template .item-actions>.qty .quantity {
  margin: 0
}

body.cart-template .item-actions>.qty input.qty {
  width: 48px !important;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  appearance: textfield
}

body.cart-template .item-actions>.qty input.qty::-webkit-inner-spin-button,
body.cart-template .item-actions>.qty input.qty::-webkit-outer-spin-button {
  appearance: none;
  margin: 0
}

body.cart-template .remove {
  border: 0;
  background: transparent;
  color: #5f5869;
  font-size: 14px;
  text-decoration: none
}

body.cart-template .cart-native-actions {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap
}

body.cart-template .summary-card {
  overflow: hidden;
  position: sticky;
  top: 92px
}

body.cart-template .summary-head {
  background: linear-gradient(115deg, #21172d, #171020);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 20px 23px;
  letter-spacing: .02em
}

body.cart-template .summary-body {
  padding: 30px 25px
}

body.cart-template .summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  margin-bottom: 25px
}

body.cart-template .summary-row strong {
  font-size: 18px
}

body.cart-template .summary-body hr {
  border: 0;
  border-top: 1.5px dashed var(--line);
  opacity: 1;
  margin: 4px 0 27px
}

body.cart-template .summary-body label {
  display: block;
  font-size: 16px;
  margin-bottom: 12px
}

body.cart-template .promo {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  margin-bottom: 28px
}

body.cart-template .promo input,
body.cart-template .newsletter input {
  height: 53px;
  border: 1.6px solid #9d96a3;
  border-radius: 9px;
  background: #fff;
  padding: 0 16px;
  font-size: 14px
}

body.cart-template .promo button {
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 900
}

body.cart-template .total-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 28px
}

body.cart-template .total-row h4 {
  font-size: 26px;
  font-weight: 900;
  margin: 0
}

body.cart-template .total-row p {
  font-size: 13px;
  margin: 3px 0 0
}

body.cart-template .total-row strong {
  font-size: 29px;
  letter-spacing: -.04em
}

body.cart-template .checkout,
body.cart-template .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  height: 57px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase
}

body.cart-template .or {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin: 22px 0;
  font-weight: 800;
  color: #5e5866
}

body.cart-template .or span {
  width: 20px;
  height: 1px;
  background: #958d99
}

body.cart-template .continue {
  width: 100%;
  height: 53px;
  border: 2px solid #938c99;
  background: #fff;
  border-radius: 11px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

body.cart-template .summary-body small {
  display: block;
  text-align: center;
  margin-top: 31px;
  color: #4d4657
}

body.cart-template .routine-section {
  padding: 68px 0 62px
}

body.cart-template .routine-section h2 {
  font-size: 45px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
  margin: 18px 0 26px
}

body.cart-template .routine-carousel {
  position: relative
}

body.cart-template .routine-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

body.cart-template .routine-card {
  border: 1.4px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow)
}

body.cart-template .routine-card>img {
  width: 100%;
  aspect-ratio: 1.23/1;
  object-fit: cover;
  display: block
}

body.cart-template .routine-card>a {
  display: grid;
  place-items: center;
  aspect-ratio: 1.23/1;
  background: #fff7e9;
  overflow: hidden
}

body.cart-template .routine-card>a img {
  width: 70%;
  height: 84%;
  object-fit: contain;
  display: block
}

body.cart-template .routine-copy {
  padding: 13px
}

body.cart-template .routine-copy h3 {
  font-size: 15px;
  font-weight: 900;
  margin: 7px 0 7px
}

body.cart-template .routine-copy p {
  font-size: 13px;
  line-height: 1.35;
  color: #555061;
  min-height: 35px;
  margin: 0 0 12px
}

body.cart-template .routine-copy div {
  display: flex;
  align-items: center;
  justify-content: space-between
}

body.cart-template .routine-copy strong {
  font-size: 12px
}

body.cart-template .routine-copy button {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 19px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900
}

body.cart-template .routine-copy .added_to_cart {
  display: none !important
}

body.cart-template .cart-notices {
  padding-top: 18px
}

body.cart-template .woocommerce-message,
body.cart-template .woocommerce-error,
body.cart-template .woocommerce-info {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
  color: var(--ink);
  margin: 0 0 14px;
  padding: 14px 18px;
  list-style: none
}

body.cart-template .cart-empty-box {
  padding: 30px
}

body.cart-template .slide-next {
  position: absolute;
  right: -25px;
  top: 39%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #7d7685;
  font-size: 28px;
  display: grid;
  place-items: center;
  color: var(--ink)
}

body.cart-template .trust-strip {
  padding: 27px 36px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

body.cart-template .trust-item {
  display: flex;
  gap: 18px;
  align-items: center;
  border-right: 1.5px dashed var(--line)
}

body.cart-template .trust-item:last-child {
  border-right: 0
}

body.cart-template .trust-item i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1.5px solid #8c8494;
  border-radius: 50%;
  font-size: 25px;
  flex: 0 0 auto
}

body.cart-template .trust-item h4 {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 6px
}

body.cart-template .trust-item p {
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
  color: #4d4657
}

body.cart-template .footer {
  background: radial-gradient(circle at 70% 30%, #30213d, #171020 72%);
  color: #fff;
  padding: 54px 0 0
}

body.cart-template .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr 2fr;
  gap: 54px
}

body.cart-template .brand.light {
  color: #fff
}

body.cart-template .light-mark {
  background: #fff;
  color: var(--ink)
}

body.cart-template .footer p {
  color: #c7becb;
  font-size: 15px;
  line-height: 1.45
}

body.cart-template .social {
  display: flex;
  gap: 23px;
  font-size: 23px;
  margin-top: 24px
}

body.cart-template .footer h5 {
  font-size: 13px;
  font-weight: 900;
  color: var(--yellow);
  margin: 0 0 18px
}

body.cart-template .footer a {
  display: block;
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px
}

body.cart-template .newsletter>div {
  display: grid;
  grid-template-columns: 1fr 71px;
  gap: 9px
}

body.cart-template .newsletter input {
  height: 43px;
  border-radius: 24px;
  border: 0
}

body.cart-template .newsletter button {
  border: 0;
  border-radius: 23px;
  background: var(--yellow);
  font-weight: 900
}

body.cart-template .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: 54px;
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d7d1dc;
  font-size: 13px
}

body.cart-template .footer-bottom div {
  display: flex;
  gap: 14px;
  align-items: center
}

body.cart-template .footer-bottom b {
  background: #fff;
  color: #28305a;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 12px
}

body.cart-template .mobile-bottom-nav {
  display: none
}

@media (max-width:991.98px) {
  body.cart-template .site-header {
    height: auto
  }

  body.cart-template .navbar {
    height: auto;
    min-height: 64px
  }

  body.cart-template .navbar-collapse {
    padding: 20px 0
  }

  body.cart-template .nav-links {
    gap: 14px;
    align-items: flex-start !important
  }

  body.cart-template .cart-pill {
    margin-top: 14px;
    width: max-content
  }

  body.cart-template .cart-hero {
    padding: 38px 0 18px
  }

  body.cart-template .cart-hero h1 {
    font-size: 64px
  }

  body.cart-template .cart-layout {
    grid-template-columns: 1fr
  }

  body.cart-template .summary-card {
    position: static
  }

  body.cart-template .routine-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px
  }

  body.cart-template .routine-card {
    min-width: 260px;
    scroll-snap-align: start
  }

  body.cart-template .slide-next {
    display: none
  }

  body.cart-template .trust-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  body.cart-template .trust-item:nth-child(2) {
    border-right: 0
  }

  body.cart-template .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px
  }

  body.cart-template .newsletter {
    grid-column: 1/-1
  }

  body.cart-template .footer-bottom {
    margin-bottom: 68px
  }

  body.cart-template .mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 58px;
    background: rgba(31, 24, 45, .96);
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 40;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .26);
    backdrop-filter: blur(14px)
  }

  body.cart-template .mobile-bottom-nav a {
    color: #cfc7d8;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 800
  }

  body.cart-template .mobile-bottom-nav i {
    font-size: 18px
  }

  body.cart-template .mobile-bottom-nav .active {
    color: var(--yellow)
  }
}

@media (max-width:767.98px) {
  body.cart-template .page-container {
    width: min(100% - 24px, 1240px)
  }

  body.cart-template .cart-hero h1 {
    font-size: 50px
  }

  body.cart-template .cart-hero p {
    font-size: 15px
  }

  body.cart-template .cart-box {
    padding: 0 14px
  }

  body.cart-template .cart-item {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 18px 0;
    align-items: start
  }

  body.cart-template .product-art {
    width: 96px
  }

  body.cart-template .item-copy h3 {
    font-size: 20px;
    margin: 9px 0 8px
  }

  body.cart-template .item-copy p {
    font-size: 13px
  }

  body.cart-template .item-actions {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 110px
  }

  body.cart-template .item-actions>.qty {
    width: 126px;
    height: 43px
  }

  body.cart-template .routine-section {
    padding: 48px 0 42px
  }

  body.cart-template .routine-section h2 {
    font-size: 34px
  }

  body.cart-template .trust-strip {
    grid-template-columns: 1fr;
    padding: 22px
  }

  body.cart-template .trust-item {
    border-right: 0;
    border-bottom: 1.5px dashed var(--line);
    padding-bottom: 18px
  }

  body.cart-template .trust-item:last-child {
    border-bottom: 0;
    padding-bottom: 0
  }

  body.cart-template .footer-grid {
    grid-template-columns: 1fr
  }

  body.cart-template .footer-bottom {
    display: block
  }

  body.cart-template .footer-bottom div {
    margin-top: 16px;
    flex-wrap: wrap
  }

  body.cart-template .summary-body {
    padding: 24px 18px
  }

  body.cart-template .total-row strong {
    font-size: 24px
  }
}

@media (max-width:420px) {
  body.cart-template .cart-hero h1 {
    font-size: 43px
  }

  body.cart-template .cart-item {
    grid-template-columns: 86px 1fr
  }

  body.cart-template .product-art {
    width: 86px
  }

  body.cart-template .item-actions {
    margin-left: 0
  }

  body.cart-template .promo {
    grid-template-columns: 1fr
  }

  body.cart-template .promo button {
    height: 48px
  }

  body.cart-template .footer {
    padding-top: 40px
  }
}

/* Contact page styles, scoped so they do not alter the home page. */
body.contact-template {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 223, 113, .34), transparent 26%),
    radial-gradient(circle at 100% 32%, rgba(255, 217, 161, .32), transparent 30%),
    linear-gradient(180deg, #fff9ec 0%, #fff5df 54%, #fff9ec 100%);
}

body.contact-template a {
  text-decoration: none;
  color: inherit
}

body.contact-template .page-shell {
  max-width: 1370px;
  margin: 0 auto;
  padding-left: 62px;
  padding-right: 62px
}

body.contact-template .site-header {
  height: 73px;
  border-bottom: 1px solid rgba(39, 32, 54, .16);
  background: rgba(255, 249, 236, .84);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100
}

body.contact-template .site-header .navbar {
  height: 73px;
  padding: 0
}

body.contact-template .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .06em
}

body.contact-template .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 900
}

body.contact-template .nav-menu {
  gap: 36px;
  align-items: center
}

body.contact-template .nav-menu a {
  font-size: 13px;
  font-weight: 800;
  position: relative;
  padding: 28px 0;
  color: #1f1a2e
}

body.contact-template .nav-menu a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 9px
}

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

body.contact-template .cart-pill,
body.contact-template .round-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  font-weight: 800;
  box-shadow: 0 7px 16px rgba(29, 24, 48, .17)
}

body.contact-template .cart-pill {
  gap: 6px;
  min-width: 58px;
  padding: 0 14px
}

body.contact-template .cart-pill i {
  font-size: 18px
}

body.contact-template .cart-pill span {
  font-size: 13px
}

body.contact-template .menu-canvas {
  background: var(--cream)
}

body.contact-template .menu-canvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

body.contact-template .menu-canvas .offcanvas-body a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(29, 24, 48, .12);
  font-weight: 900
}

body.contact-template .card-shell {
  background: rgba(255, 253, 247, .76);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(53, 38, 20, .04)
}

body.contact-template .hero-block {
  padding-top: 68px;
  margin-bottom: 38px
}

body.contact-template .eyebrow {
  margin: 0 0 18px;
  color: #ff5f4f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em
}

body.contact-template .small-eye {
  font-size: 11px;
  margin-bottom: 10px
}

body.contact-template .hero-block h1 {
  font-size: 94px;
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 900;
  margin: 0 0 18px;
  color: var(--ink)
}

body.contact-template .subtitle {
  font-size: 19px;
  line-height: 1.45;
  color: #726a77;
  margin: 0;
  font-weight: 500
}

body.contact-template .contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px
}

body.contact-template .info-card {
  min-height: 130px;
  padding: 31px 34px;
  display: flex;
  align-items: center;
  gap: 19px
}

body.contact-template .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 29px
}

body.contact-template .yellow {
  background: var(--yellow)
}

body.contact-template .mint {
  background: var(--mint)
}

body.contact-template .purple {
  background: var(--purple)
}

body.contact-template .coral {
  background: var(--coral)
}

body.contact-template .info-card h3,
body.contact-template .topic-card h3 {
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 9px
}

body.contact-template .info-card p {
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 6px
}

body.contact-template .info-card small {
  color: #5f5967;
  font-size: 12px;
  font-weight: 600
}

body.contact-template .message-care-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 30px;
  margin-bottom: 34px
}

body.contact-template .contact-form-card {
  padding: 34px
}

body.contact-template .contact-form-card h2,
body.contact-template .care-card h2,
body.contact-template .topics h2,
body.contact-template .studio h2,
body.contact-template .newsletter-band h2 {
  font-size: 31px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 29px
}

body.contact-template .contact-form-card label {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 9px
}

body.contact-template .contact-form-card label span {
  color: #ff5f4f
}

body.contact-template .form-control,
body.contact-template .form-select {
  height: 57px;
  border: 2px solid #c9c5c0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: none !important
}

body.contact-template .form-control:focus,
body.contact-template .form-select:focus {
  border-color: #272036
}

body.contact-template .contact-form-card textarea.form-control {
  height: 128px;
  resize: none
}

body.contact-template .yellow-btn {
  margin-top: 29px;
  width: 100%;
  height: 57px;
  border: 0;
  border-radius: 9px;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  box-shadow: 0 8px 15px rgba(245, 179, 21, .22)
}

body.contact-template .safe-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  color: #77717e;
  font-size: 13px;
  font-weight: 600
}

body.contact-template .safe-note i {
  color: var(--ink)
}

body.contact-template .success-message {
  display: none;
  margin: 16px 0 0;
  font-weight: 800;
  color: #248160
}

body.contact-template .care-card {
  padding: 34px 34px 0;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 253, 247, .8), rgba(255, 226, 178, .42))
}

body.contact-template .care-intro {
  max-width: 365px;
  color: #6d6574;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 30px
}

body.contact-template .care-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 19px;
  position: relative;
  z-index: 2
}

body.contact-template .care-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 700
}

body.contact-template .care-card li i {
  width: 26px;
  height: 26px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #eaa900
}

body.contact-template .care-divider {
  width: 208px;
  height: 1px;
  background: rgba(29, 24, 48, .16);
  margin: 47px 0 28px
}

body.contact-template .response-box small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: #6c6671
}

body.contact-template .response-box strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em
}

body.contact-template .response-box p {
  font-size: 12px;
  font-weight: 700;
  color: #6c6671;
  max-width: 165px
}

body.contact-template .product-stage {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 54%;
}

body.contact-template .podium {
  position: absolute;
  bottom: 0
}

body.contact-template .mint-podium {
  width: 175px;
  height: 82px;
  background: #7ee4c8;
  right: 205px;
  bottom: 0
}

body.contact-template .yellow-podium {
  width: 170px;
  height: 165px;
  background: #ffd347;
  right: 24px;
  bottom: 0
}

body.contact-template .coral-podium {
  width: 225px;
  height: 42px;
  background: #ff705f;
  right: 250px;
  bottom: 0
}

body.contact-template .prod {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .12))
}

body.contact-template .prod-one {
  width: 98px;
  right: 308px;
  bottom: 83px
}

body.contact-template .prod-two {
  width: 105px;
  right: 205px;
  bottom: 82px
}

body.contact-template .prod-three {
  width: 105px;
  right: 54px;
  bottom: 165px
}

body.contact-template .prod-four {
  width: 230px;
  right: 225px;
  bottom: 15px
}

body.contact-template .leaf-stem {
  position: absolute;
  right: 36px;
  bottom: 128px;
  width: 4px;
  height: 225px;
  background: #a0ad51;
  border-radius: 5px;
  transform: rotate(16deg);
  opacity: .65
}

body.contact-template .leaf {
  position: absolute;
  width: 43px;
  height: 90px;
  background: #bdc76c;
  border-radius: 100% 0;
  opacity: .7
}

body.contact-template .leaf-one {
  right: 55px;
  bottom: 250px;
  transform: rotate(-25deg)
}

body.contact-template .leaf-two {
  right: 33px;
  bottom: 195px;
  transform: rotate(37deg)
}

body.contact-template .leaf-three {
  right: 72px;
  bottom: 154px;
  transform: rotate(-33deg)
}

body.contact-template .topics {
  padding: 31px;
  margin-bottom: 31px
}

body.contact-template .topics .section-head h2 {
  margin-bottom: 25px
}

body.contact-template .topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

body.contact-template .topic-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, .42)
}

body.contact-template .topic-card .info-icon {
  width: 67px;
  height: 67px
}

body.contact-template .topic-card p {
  font-size: 12px;
  line-height: 1.45;
  color: #5f5967;
  margin: 0;
  font-weight: 600
}

body.contact-template .topic-card>i {
  font-size: 24px
}

body.contact-template .faq-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  width: 292px;
  height: 39px;
  border: 2px solid #b9b4b6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900
}

body.contact-template .studio {
  display: grid;
  grid-template-columns: 39.5% 60.5%;
  overflow: hidden;
  margin-bottom: 26px
}

body.contact-template .studio-info {
  padding: 47px 34px
}

body.contact-template .studio-info p:not(.eyebrow) {
  color: #6e6673;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 395px
}

body.contact-template .studio-line {
  display: flex;
  gap: 21px;
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.43;
  font-weight: 600
}

body.contact-template .studio-line i {
  font-size: 22px;
  width: 24px
}

body.contact-template .map-art {
  position: relative;
  min-height: 330px;
  background: #f6ecd8;
  overflow: hidden
}

body.contact-template .map-lines:before,
body.contact-template .map-lines:after {
  content: "";
  position: absolute;
  inset: -40px;
  background: repeating-linear-gradient(38deg, transparent 0 52px, #fff 54px 61px, transparent 63px 122px), repeating-linear-gradient(-35deg, transparent 0 68px, #fff 70px 76px, transparent 78px 146px);
  opacity: .9
}

body.contact-template .park {
  position: absolute;
  background: #afe7cc;
  opacity: .9
}

body.contact-template .park-a {
  width: 190px;
  height: 380px;
  right: 52px;
  top: -140px;
  transform: rotate(13deg)
}

body.contact-template .park-b {
  width: 240px;
  height: 200px;
  left: 190px;
  bottom: -75px;
  transform: rotate(-23deg)
}

body.contact-template .pin {
  position: absolute;
  top: 112px;
  left: 47%;
  width: 56px;
  height: 71px;
  background: var(--ink);
  border-radius: 28px 28px 28px 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(29, 24, 48, .25)
}

body.contact-template .pin span {
  color: #fff;
  font-weight: 900;
  font-size: 25px;
  transform: rotate(45deg)
}

body.contact-template .map-label {
  position: absolute;
  top: 198px;
  left: 44%;
  background: #fff;
  border: 2px solid #c9c5c0;
  border-radius: 16px;
  padding: 7px 32px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08)
}

body.contact-template .newsletter-band {
  border-radius: 12px;
  min-height: 170px;
  margin-bottom: 28px;
  padding: 29px 46px;
  display: grid;
  grid-template-columns: 235px 1fr 520px;
  align-items: center;
  gap: 18px;
  background: linear-gradient(100deg, #c18dff 0%, #bf8cff 62%, #b786ff 100%);
  overflow: hidden
}

body.contact-template .mail-art {
  position: relative;
  height: 112px
}

body.contact-template .envelope {
  position: relative;
  width: 120px;
  height: 86px;
  background: #ffd6b8;
  margin-left: 48px;
  margin-top: 18px;
  border-radius: 4px;
  display: grid;
  place-items: start center;
  padding-top: 8px
}

body.contact-template .envelope:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 45px solid #ffbd93
}

body.contact-template .envelope:after {
  content: "";
  position: absolute;
  top: -34px;
  left: 30px;
  width: 61px;
  height: 56px;
  background: #fff;
  border-radius: 4px
}

body.contact-template .envelope .brand-mark {
  z-index: 2;
  width: 32px;
  height: 32px;
  font-size: 15px
}

body.contact-template .newsletter-copy .eyebrow {
  color: #ff6a54
}

body.contact-template .newsletter-copy h2 {
  font-size: 30px;
  margin-bottom: 12px
}

body.contact-template .newsletter-copy p {
  font-weight: 600;
  margin: 0
}

body.contact-template .join-row {
  display: flex;
  height: 57px
}

body.contact-template .join-row input {
  flex: 1;
  border: 0;
  border-radius: 9px 0 0 9px;
  padding: 0 20px;
  font-weight: 600
}

body.contact-template .join-row button {
  width: 128px;
  border: 0;
  border-radius: 0 9px 9px 0;
  background: var(--ink);
  color: #fff;
  font-weight: 900
}

body.contact-template .newsletter-form small {
  display: block;
  margin-top: 13px;
  font-size: 12px;
  font-weight: 600;
  color: #1d1830
}

body.contact-template .newsletter-form small i {
  margin-right: 8px
}

body.contact-template .site-footer {
  background: radial-gradient(circle at 18% 28%, rgba(78, 55, 99, .32), transparent 34%), #1f182b;
  color: #fff;
  padding: 49px 0 0
}

body.contact-template .footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr 2fr;
  gap: 42px;
  padding-bottom: 51px
}

body.contact-template .brand.light {
  color: #fff
}

body.contact-template .light-mark {
  background: #fff;
  color: var(--ink)
}

body.contact-template .footer-brand p,
body.contact-template .footer-news p {
  color: #d2cbd6;
  line-height: 1.55;
  margin: 24px 0;
  font-weight: 500
}

body.contact-template .socials {
  display: flex;
  gap: 22px;
  font-size: 24px
}

body.contact-template .site-footer h4 {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 20px
}

body.contact-template .site-footer a {
  display: block;
  color: #f1edf2;
  margin: 0 0 13px;
  font-size: 14px;
  font-weight: 500
}

body.contact-template .footer-input {
  display: flex;
  height: 43px;
  max-width: 360px
}

body.contact-template .footer-input input {
  flex: 1;
  border: 0;
  border-radius: 24px 0 0 24px;
  padding: 0 19px
}

body.contact-template .footer-input button {
  border: 0;
  background: var(--yellow);
  font-weight: 900;
  border-radius: 0 24px 24px 0;
  padding: 0 24px
}

body.contact-template .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .28);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d5cfd8;
  font-size: 13px
}

body.contact-template .footer-bottom div {
  display: flex;
  align-items: center;
  gap: 13px
}

body.contact-template .footer-bottom b {
  background: #fff;
  color: #1750a8;
  border-radius: 4px;
  min-width: 48px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 12px
}

body.contact-template .mobile-bottom-nav {
  display: none
}

@media (max-width:1199px) {
  body.contact-template .page-shell {
    padding-left: 30px;
    padding-right: 30px
  }

  body.contact-template .nav-menu {
    gap: 18px
  }

  body.contact-template .hero-block h1 {
    font-size: 78px
  }

  body.contact-template .contact-cards,
  body.contact-template .topic-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  body.contact-template .message-care-grid,
  body.contact-template .studio {
    grid-template-columns: 1fr
  }

  body.contact-template .care-card {
    min-height: 620px
  }

  body.contact-template .newsletter-band {
    grid-template-columns: 160px 1fr;
  }

  body.contact-template .newsletter-form {
    grid-column: 1/-1
  }

  body.contact-template .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:767px) {
  body.contact-template {
    padding-bottom: 74px
  }

  body.contact-template .page-shell {
    padding-left: 18px;
    padding-right: 18px
  }

  body.contact-template .site-header {
    height: 65px
  }

  body.contact-template .site-header .navbar {
    height: 65px
  }

  body.contact-template .header-actions {
    display: none
  }

  body.contact-template .brand {
    font-size: 18px
  }

  body.contact-template .brand-mark {
    width: 30px;
    height: 30px
  }

  body.contact-template .hero-block {
    padding-top: 38px;
    margin-bottom: 28px
  }

  body.contact-template .hero-block h1 {
    font-size: 54px;
    letter-spacing: -.05em
  }

  body.contact-template .subtitle {
    font-size: 15px
  }

  body.contact-template .contact-cards,
  body.contact-template .topic-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  body.contact-template .info-card {
    min-height: auto;
    padding: 20px
  }

  body.contact-template .info-icon {
    width: 55px;
    height: 55px;
    font-size: 24px
  }

  body.contact-template .message-care-grid {
    gap: 18px;
    margin-bottom: 22px
  }

  body.contact-template .contact-form-card,
  body.contact-template .care-card,
  body.contact-template .topics {
    padding: 22px
  }

  body.contact-template .contact-form-card h2,
  body.contact-template .care-card h2,
  body.contact-template .topics h2,
  body.contact-template .studio h2,
  body.contact-template .newsletter-band h2 {
    font-size: 24px
  }

  body.contact-template .care-card {
    min-height: 645px
  }

  body.contact-template .product-stage {
    width: 100%;
    height: 48%
  }

  body.contact-template .prod-one {
    right: 230px;
    width: 76px
  }

  body.contact-template .prod-two {
    right: 150px;
    width: 83px
  }

  body.contact-template .prod-three {
    right: 35px;
    width: 83px
  }

  body.contact-template .prod-four {
    right: 145px;
    width: 170px
  }

  body.contact-template .mint-podium {
    right: 138px;
    width: 135px
  }

  body.contact-template .yellow-podium {
    right: 14px;
    width: 128px
  }

  body.contact-template .coral-podium {
    right: 208px;
    width: 130px
  }

  body.contact-template .leaf-stem {
    right: 23px
  }

  body.contact-template .leaf {
    right: 38px
  }

  body.contact-template .studio-info {
    padding: 25px
  }

  body.contact-template .map-art {
    min-height: 285px
  }

  body.contact-template .pin {
    left: 44%
  }

  body.contact-template .map-label {
    left: 33%;
  }

  body.contact-template .newsletter-band {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: left
  }

  body.contact-template .mail-art {
    display: none
  }

  body.contact-template .join-row {
    height: 52px
  }

  body.contact-template .join-row button {
    width: 94px
  }

  body.contact-template .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 34px
  }

  body.contact-template .footer-bottom {
    height: auto;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start
  }

  body.contact-template .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 67px;
    background: #fffaf0;
    border-top: 1px solid rgba(29, 24, 48, .15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 200
  }

  body.contact-template .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 800
  }

  body.contact-template .mobile-bottom-nav i {
    font-size: 20px
  }
}

@media (max-width:420px) {
  body.contact-template .hero-block h1 {
    font-size: 46px
  }

  body.contact-template .contact-form-card,
  body.contact-template .care-card,
  body.contact-template .topics {
    padding: 18px
  }

  body.contact-template .info-card {
    gap: 14px
  }

  body.contact-template .info-card p {
    font-size: 14px
  }

  body.contact-template .topic-card {
    grid-template-columns: auto 1fr;
    padding: 16px 12px
  }

  body.contact-template .topic-card>i {
    display: none
  }

  body.contact-template .faq-btn {
    width: 100%
  }

  body.contact-template .care-card {
    min-height: 610px
  }

  body.contact-template .product-stage {
    transform: scale(.88);
    transform-origin: right bottom
  }

  body.contact-template .footer-bottom div {
    flex-wrap: wrap
  }
}

/* Shared header icons from the account UI, used on every page header. */
body .site-header.global-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 74px;
  height: auto;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 232, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  z-index: 100;
}

body .global-header .nav-toggle {
  display: none;
}

body .global-header .brand {
  color: var(--ink);
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

body .global-header .site-nav {
  justify-self: center;
}

body .global-header .brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

body .global-header .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

body .global-header .round-link,
body .global-header .cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(29, 24, 48, 0.17);
}

body .global-header .cart-pill {
  gap: 7px;
  min-width: 62px;
  padding: 0 14px;
}

body .global-header .cart-pill span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

body .global-header .round-link:hover,
body .global-header .round-link:focus-visible,
body .global-header .cart-pill:hover,
body .global-header .cart-pill:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

/* Shared contact footer, used on every page. */
body .site-footer.global-footer {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
  padding: 49px 0 0;
  color: #fff;
  background: radial-gradient(circle at 18% 28%, rgba(78, 55, 99, 0.32), transparent 34%), #1f182b;
}

body .global-footer .page-shell {
  max-width: 1370px;
  margin: 0 auto;
  padding-left: 62px;
  padding-right: 62px;
}

body .site-footer.global-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr 2fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 51px;
}

body .site-footer.global-footer .brand.light {
  color: #fff;
}

body .site-footer.global-footer .light-mark {
  color: var(--ink);
  background: #fff;
}

body .site-footer.global-footer .footer-brand p,
body .site-footer.global-footer .footer-news p {
  margin: 24px 0;
  color: #d2cbd6;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

body .site-footer.global-footer .socials {
  display: flex;
  gap: 22px;
  font-size: 24px;
}

body .site-footer.global-footer h4 {
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

body .site-footer.global-footer a {
  display: block;
  margin: 0 0 13px;
  color: #f1edf2;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

body .site-footer.global-footer .footer-input {
  display: flex;
  max-width: 360px;
  height: 43px;
}

body .site-footer.global-footer .footer-input input {
  flex: 1;
  min-width: 0;
  padding: 0 19px;
  border: 0;
  border-radius: 24px 0 0 24px;
}

body .site-footer.global-footer .footer-input button {
  padding: 0 24px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 0 24px 24px 0;
  font-weight: 900;
}

body .site-footer.global-footer .footer-news .wpcf7 {
  max-width: 260px;
  margin: 0 0 16px;
}

body .site-footer.global-footer .footer-news .wpcf7 form {
  position: relative;
  display: block;
  max-width: 260px;
  min-height: 43px;
  margin: 0;
  padding: 0;
}

body .site-footer.global-footer .footer-news .wpcf7 form>p {
  display: contents;
  margin: 0;
}

body .site-footer.global-footer .footer-news .wpcf7 label {
  display: contents;
}

body .site-footer.global-footer .footer-news .wpcf7 br {
  display: none;
}

body .site-footer.global-footer .footer-news .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

body .site-footer.global-footer .footer-news .wpcf7 input[type="email"] {
  width: 100%;
  height: 43px;
  min-height: 43px;
  padding: 0 98px 0 19px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  outline: none;
}

body .site-footer.global-footer .footer-news .wpcf7 input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  height: 43px;
  min-height: 43px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 0 24px 24px 0;
  cursor: pointer;
  font-weight: 900;
}

body .site-footer.global-footer .footer-news .wpcf7 input[type="submit"]:hover,
body .site-footer.global-footer .footer-news .wpcf7 input[type="submit"]:focus-visible {
  background: #ffdc58;
  outline: none;
}

body .site-footer.global-footer .footer-news .wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 47px;
  right: 0;
  margin: 0;
}

body .site-footer.global-footer .footer-news .wpcf7 .wpcf7-not-valid-tip,
body .site-footer.global-footer .footer-news .wpcf7 .wpcf7-response-output {
  flex-basis: 100%;
  margin: 8px 0 0;
  color: #f1edf2;
  font-size: 12px;
  line-height: 1.35;
}

body .site-footer.global-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #d5cfd8;
  font-size: 13px;
}

body .site-footer.global-footer .footer-bottom div {
  display: flex;
  align-items: center;
  gap: 13px;
}

body .site-footer.global-footer .footer-bottom b {
  display: grid;
  min-width: 48px;
  height: 27px;
  place-items: center;
  color: #1750a8;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
}

/* Shared bottom mobile navigation from the contact UI, used on every page. */
body .mobile-bottom-nav.global-mobile-bottom-nav {
  display: none;
}

@media (max-width: 980px) {
  body .site-footer.global-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1101px) {
  body .site-header.global-header {
    grid-template-columns: 46px minmax(0, 1fr) 58px;
    gap: 8px;
  }

  body .global-header .brand {
    grid-column: 1 / -1;
    position: absolute;
    left: 50%;
    justify-self: auto;
    transform: translateX(-50%);
  }

  body .global-header .site-nav {
    display: none;
  }

  body .global-header .nav-toggle {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
  }

  body .global-header .header-actions {
    grid-column: 3;
    position: relative;
    z-index: 1;
    gap: 0;
  }

  body .global-header .round-link {
    display: none;
  }

  body .global-header .cart-pill {
    display: inline-flex;
    min-width: 54px;
    height: 36px;
    padding: 0 11px;
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  body .site-header.global-header {
    grid-template-columns: 46px minmax(0, 1fr) 58px;
    gap: 8px;
  }

  body .global-header .brand {
    grid-column: 1 / -1;
    position: absolute;
    left: 50%;
    justify-self: auto;
    transform: translateX(-50%);
  }

  body .global-header .nav-toggle {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
  }

  body .global-header .header-actions {
    grid-column: 3;
    position: relative;
    z-index: 1;
    gap: 0;
  }

  body .global-header .round-link {
    display: none;
  }

  body .global-header .cart-pill {
    display: inline-flex;
    min-width: 36px;
    height: 36px;
    font-size: 18px;
  }

  body .global-header .cart-pill {
    min-width: 54px;
    padding: 0 11px;
  }

  body .site-footer.global-footer .page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  body .site-footer.global-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 34px;
  }

  body .site-footer.global-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  body .site-footer.global-footer .footer-bottom div {
    flex-wrap: wrap;
  }

  body .mobile-bottom-nav.global-mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 67px;
    background: #fffaf0;
    border-top: 1px solid rgba(29, 24, 48, 0.15);
    box-shadow: 0 -8px 22px rgba(29, 24, 48, 0.08);
  }

  body .mobile-bottom-nav.global-mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }

  body .mobile-bottom-nav.global-mobile-bottom-nav i {
    font-size: 20px;
    line-height: 1;
  }
}

@media (max-width: 430px) {
  body .global-header .brand {
    font-size: 1.05rem;
  }

  body .global-header .brand-mark {
    width: 34px;
    height: 34px;
  }
}

/* Brand image logo */
body .global-header .brand-logo,
.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 150px;
  object-fit: contain;
}

.brand.light .brand-logo,
.footer-brand-logo {
  height: 44px;
  max-width: 160px;
}

@media (max-width: 767px) {

  body .global-header .brand-logo,
  .brand-logo {
    height: 36px;
    max-width: 132px;
  }

  .brand.light .brand-logo,
  .footer-brand-logo {
    height: 38px;
  }
}

/* Veera homepage hero slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  touch-action: pan-y;
}

.hero-slider .hero-slide {
  display: none;
}

.hero-slider .hero-slide.is-active {
  display: grid;
}

.hero-slider .hero-slide.is-entering {
  animation: heroSlideFade .45s ease both;
}

@keyframes heroSlideFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.hero-slider .hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-slider .hero-media video,
.hero-slider .hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-slider-dots {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-dot {
  width: 11px;
  height: 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero-slider-dot.is-active {
  width: 32px;
  background: var(--ink);
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(36, 29, 42, 0.12);
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  color: #fff;
  background: var(--ink);
}

.hero-slider-prev {
  left: clamp(12px, 2.5vw, 34px);
}

.hero-slider-next {
  right: clamp(12px, 2.5vw, 34px);
}

@media (max-width: 720px) {
  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 23px;
  }

  .hero-slider-dots {
    position: static;
    padding: 0 clamp(18px, 5vw, 72px) 24px;
  }
}

@media (max-width: 520px) {
  .hero-slider .hero-media video,
  .hero-slider .hero-media img {
    max-height: none;
  }
}

/* Checkout block containment fallback */
body.checkout-template .wp-block-woocommerce-checkout,
body.checkout-template .wc-block-checkout,
body.cart-template .wp-block-woocommerce-checkout,
body.cart-template .wc-block-checkout {
  box-sizing: border-box;
  width: min(100% - 40px, 1280px);
  max-width: 1280px;
  margin: 48px auto 72px;
}

body.checkout-template .wc-block-components-sidebar-layout,
body.cart-template .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px) !important;
  align-items: start;
  max-width: 100%;
  gap: 32px;
}

body.checkout-template .wc-block-checkout__main,
body.checkout-template .wc-block-components-main,
body.cart-template .wc-block-checkout__main,
body.cart-template .wc-block-components-main {
  width: 100%;
  max-width: 100%;
}

body.checkout-template .wc-block-checkout__sidebar,
body.checkout-template .wc-block-components-sidebar,
body.cart-template .wc-block-checkout__sidebar,
body.cart-template .wc-block-components-sidebar {
  width: 100%;
  max-width: 420px !important;
}

@media (max-width: 980px) {

  body.checkout-template .wp-block-woocommerce-checkout,
  body.checkout-template .wc-block-checkout,
  body.cart-template .wp-block-woocommerce-checkout,
  body.cart-template .wc-block-checkout {
    width: min(100% - 28px, 1280px);
    margin-top: 34px;
    margin-bottom: 56px;
  }

  body.checkout-template .wc-block-components-sidebar-layout,
  body.cart-template .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  body.checkout-template .wc-block-checkout__sidebar,
  body.checkout-template .wc-block-components-sidebar,
  body.cart-template .wc-block-checkout__sidebar,
  body.cart-template .wc-block-components-sidebar {
    max-width: 100%;
  }
}

@media (max-width: 560px) {

  body.checkout-template .wp-block-woocommerce-checkout,
  body.checkout-template .wc-block-checkout,
  body.cart-template .wp-block-woocommerce-checkout,
  body.cart-template .wc-block-checkout {
    width: min(100% - 20px, 1280px);
    margin-top: 24px;
    margin-bottom: 42px;
  }
}

/* Minimal empty cart */
body.cart-template .cart-empty-layout {
  display: grid;
  place-items: center;
  min-height: 46vh;
  padding-top: 48px;
  padding-bottom: 72px;
}

body.cart-template .cart-empty-layout .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

body.cart-template .cart-empty-layout .button:hover {
  transform: translateY(-1px);
}

/* Cart routine card parity with product page */
body.cart-template .cart-routine-section .product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

body.cart-template .cart-routine-section .product-card h4 {
  font-size: 18px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
}

body.cart-template .cart-routine-section .product-summary {
  min-height: 50px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--muted);
}

body.cart-template .cart-routine-section .product-bottom .price,
body.cart-template .cart-routine-section .product-bottom .amount {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
}

body.cart-template .cart-routine-section .product-bottom .add-button,
body.cart-template .cart-routine-section .product-bottom .button.add-button,
body.cart-template .cart-routine-section .product-bottom .add-button.is-view-cart {
  min-width: 68px;
  min-height: 44px;
  padding: 0 14px;
}

/* Keep shared header consistent on product archives */
body.shop-all-products-template .site-header.global-header {
  min-height: 74px !important;
  height: auto !important;
  padding: 16px clamp(18px, 4vw, 54px) !important;
}

body.shop-all-products-template .global-header .brand {
  width: auto !important;
  max-width: none !important;
  overflow: visible !important;
  gap: 10px !important;
  font-size: 1.35rem !important;
}

body.shop-all-products-template .global-header .brand-logo {
  display: block !important;
  width: auto !important;
  height: 60px !important;
  max-width: 150px !important;
  object-fit: contain !important;
}

body.shop-all-products-template .global-header .site-nav {
  gap: 28px !important;
  color: var(--muted) !important;
  font-size: inherit !important;
  font-weight: 750 !important;
}

body.shop-all-products-template .global-header .site-nav a,
body.shop-all-products-template .global-header .collection-trigger {
  min-height: 42px !important;
  font-size: inherit !important;
}

body.shop-all-products-template .global-header .round-link,
body.shop-all-products-template .global-header .cart-pill {
  min-width: 38px !important;
  height: 38px !important;
  font-size: 20px !important;
}

body.shop-all-products-template .global-header .cart-pill {
  gap: 7px !important;
  min-width: 62px !important;
  padding: 0 14px !important;
}

body.shop-all-products-template .global-header .cart-pill span {
  font-size: 14px !important;
}

@media(max-width: 1101px) {
  body.shop-all-products-template .site-header.global-header {
    min-height: 68px !important;
    padding: 12px 16px !important;
  }

  body.shop-all-products-template .global-header .brand-logo {
    height: 60px !important;
    max-width: 150px !important;
  }

  body.shop-all-products-template .global-header .round-link {
    display: none !important;
  }

  body.shop-all-products-template .global-header .cart-pill {
    min-width: 54px !important;
    height: 36px !important;
    padding: 0 11px !important;
    font-size: 18px !important;
  }
}

@media(max-width: 767px) {
  body.shop-all-products-template .global-header .brand-logo {
    height: 55px !important;
    max-width: 132px !important;
  }
}


/* Align mega-menu wrapper with plain header nav links */
body.shop-all-products-template .global-header .site-nav .nav-menu-item {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  line-height: 1 !important;
}

body.shop-all-products-template .global-header .site-nav .nav-menu-item>.collection-trigger {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.safe-note p {
  display: flex;
}
