:root {
  --ink: #202624;
  --muted: #6f7772;
  --paper: #f8f3ed;
  --surface: #ffffff;
  --line: #e8ded2;
  --rose: #c85f6e;
  --rose-dark: #914452;
  --leaf: #4f6f62;
  --sage: #dce8df;
  --blush: #f5dce0;
  --cream: #fffaf3;
  --gold: #bd9148;
  --shadow: 0 18px 45px rgba(38, 44, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.announcement-bar {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 16px;
  color: #fff;
  background: #202624;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(248, 243, 237, 0.94);
  border-bottom: 1px solid rgba(232, 222, 210, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(79, 111, 98, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, #fffaf3 0%, #eadfd1 100%);
  box-shadow: 0 10px 24px rgba(38, 44, 41, 0.1);
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(79, 111, 98, 0.14);
  border-radius: 12px;
  content: "";
}

.bloom-symbol {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 30px;
  height: 24px;
}

.bloom-leaf {
  position: absolute;
  width: 17px;
  height: 24px;
  border-radius: 17px 17px 4px 17px;
  background: var(--leaf);
}

.bloom-leaf-left {
  left: 2px;
  top: 0;
  transform: rotate(-32deg);
}

.bloom-leaf-right {
  right: 2px;
  top: 0;
  background: var(--rose);
  transform: rotate(32deg) scaleX(-1);
}

.bloom-dot {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.brand-initials {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 1;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
}

.brand-lockup {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Retired petal logo classes kept harmless for cached markup during refresh. */
.petal,
.brand-seed {
  display: none;
}

/*
.brand-seed {
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-size: 0.68rem;
  font-weight: 950;
}
*/

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--rose-dark);
}

.cart-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(38, 44, 41, 0.08);
}

.cart-icon {
  font-weight: 800;
}

.hero {
  min-height: min(820px, calc(100vh - 106px));
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(26, 28, 26, 0.76) 0%, rgba(26, 28, 26, 0.38) 43%, rgba(26, 28, 26, 0.06) 100%),
    url("assets/products/little-astronaut-lounge-models.webp") center 34%/cover;
}

.hero-content {
  width: min(690px, 100%);
  color: #fff;
  padding-bottom: clamp(10px, 8vh, 80px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6df;
}

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

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.hero p {
  max-width: 610px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.product-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter,
.icon-button,
.thumb-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

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

.primary:hover {
  background: var(--leaf);
}

.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #fff;
}

.service-strip div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(16px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 52px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 28px;
}

.shop-heading {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.filter.active {
  color: #fff;
  background: var(--leaf);
  border-color: var(--leaf);
}

.category-menu {
  background: var(--cream);
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 34px rgba(38, 44, 41, 0.14);
}

.category-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(24, 30, 28, 0.04), rgba(24, 30, 28, 0.72));
  content: "";
}

.category-card span,
.category-card strong,
.category-card small {
  position: relative;
}

.category-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.category-card small {
  font-size: 0.95rem;
  line-height: 1.35;
}

.category-card-sets {
  background-image: url("assets/products/blush-bloom-set.webp");
}

.category-card-tops {
  background-image: url("assets/products/little-astronaut-lounge-top.webp");
}

.category-card-bottoms {
  background-image: url("assets/products/sage-triangle-lounge-bottom.webp");
}

.category-card-sale {
  background-image: url("assets/products/sage-triangle-lounge-set.webp");
}

.sale-filter {
  color: var(--rose-dark);
}

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

.collection-intro {
  background: #fff;
}

.age-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.age-strip span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--leaf);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(41, 52, 49, 0.07);
}

.category-stack {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.category-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(41, 52, 49, 0.08);
}

.category-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.category-copy h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 0.98;
}

.category-copy p:last-child {
  margin: 0;
  max-width: 320px;
  line-height: 1.55;
}

.category-copy .eyebrow {
  color: #ffe1e8;
}

.sets-section .category-copy {
  background-image: linear-gradient(rgba(30, 48, 45, 0.02), rgba(30, 48, 45, 0.78)), url("assets/products/sage-triangle-lounge-set.webp");
}

.tees-section .category-copy {
  background-image: linear-gradient(rgba(63, 75, 62, 0.08), rgba(63, 75, 62, 0.76)), url("assets/products/blush-bloom-top.webp");
}

.bottoms-section .category-copy {
  background-image: linear-gradient(rgba(47, 64, 57, 0.08), rgba(47, 64, 57, 0.76)), url("assets/products/little-astronaut-lounge-bottom.webp");
}

.sale-section {
  border-color: rgba(215, 95, 122, 0.34);
  background: linear-gradient(135deg, #fff 0%, #fff5f1 100%);
}

.category-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
}

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

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(41, 52, 49, 0.08);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(41, 52, 49, 0.14);
}

.product-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  background: var(--sage);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 8px 0;
  background: #fff;
}

.thumb-button {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.product-thumbs img,
.thumb-button img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.inspect-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(36, 48, 47, 0.16);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(36, 48, 47, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.sale-card .product-badge {
  background: var(--rose-dark);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-body h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.product-meta strong {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.product-note {
  margin: 9px 0 0;
  color: #667371;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-fabric {
  width: max-content;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(63, 123, 101, 0.22);
  border-radius: 999px;
  color: var(--leaf);
  background: #f2faf5;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.mini-fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  color: #5d6a67;
  font-size: 0.82rem;
  font-weight: 800;
}

.mini-fit span {
  position: relative;
  padding-left: 14px;
}

.mini-fit span::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.old-price {
  color: #9a9f9e;
  font-weight: 700;
  text-decoration: line-through;
}

.size-select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quick-shop-link {
  min-height: 38px;
  border: 1px solid rgba(63, 123, 101, 0.28);
  border-radius: 999px;
  background: #f5fbf7;
  color: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.quick-shop-link:hover {
  border-color: var(--leaf);
  background: #ebf7ef;
}

.add-button {
  width: 100%;
}

.story-band,
.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  background: var(--sky);
}

.story-band p:last-child,
.quality-band p:last-child {
  margin: 0;
  color: #40504e;
  font-size: 1.08rem;
  line-height: 1.7;
}

.quality-band {
  background: #e8eee9;
}

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

.quality-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(83, 111, 97, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.quality-grid strong {
  font-size: 1.05rem;
}

.quality-grid span {
  color: var(--muted);
  line-height: 1.45;
}

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

figure {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

blockquote {
  margin: 0 0 16px;
  line-height: 1.6;
  color: #3c4745;
}

figcaption {
  color: var(--rose-dark);
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: rgba(31, 42, 40, 0.44);
}

.cart-drawer.open {
  display: flex;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.quick-view.open {
  display: block;
}

.quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 40, 0.58);
}

.quick-view-panel {
  position: absolute;
  inset: clamp(14px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: 22px;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.quick-view-gallery,
.quick-view-details {
  min-width: 0;
}

.quick-view-image-frame {
  position: relative;
  display: grid;
  min-height: min(68vh, 720px);
  place-items: center;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(45deg, #f6f8f5 25%, transparent 25%),
    linear-gradient(-45deg, #f6f8f5 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f6f8f5 75%),
    linear-gradient(-45deg, transparent 75%, #f6f8f5 75%);
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.quick-view-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transform-origin: center;
  transition: transform 140ms ease;
}

.zoom-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.zoom-toolbar button {
  min-height: 36px;
  min-width: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.zoom-toolbar span {
  min-width: 58px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.quick-view-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(54px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.quick-view-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.quick-view-thumbs button.active {
  border-color: var(--leaf);
}

.quick-view-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.quick-view-details {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(8px, 2vw, 16px);
}

.quick-view-close {
  justify-self: end;
}

.quick-view-details h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.quick-view-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 1.05rem;
}

.quick-view-price strong {
  color: var(--ink);
  font-size: 1.55rem;
}

.stock-line {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 8px 11px;
  border-radius: 999px;
  color: #245845;
  background: #eaf8ef;
  font-size: 0.86rem;
  font-weight: 900;
}

.purchase-box {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 14px 28px rgba(41, 52, 49, 0.08);
}

.size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.size-header button {
  border: 0;
  background: transparent;
  color: var(--rose-dark);
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
}

.size-pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.size-pills button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.size-pills button.selected {
  border-color: var(--leaf);
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 10px 22px rgba(63, 123, 101, 0.22);
}

.size-guide {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 0.84rem;
}

.size-guide[hidden] {
  display: none;
}

.size-guide div {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
}

.size-guide div + div {
  border-top: 1px solid var(--line);
}

.size-guide span,
.size-guide strong {
  padding: 9px 8px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.size-guide span:last-child,
.size-guide strong:last-child {
  border-right: 0;
}

.modal-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.quantity-stepper button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.quantity-stepper span {
  min-width: 22px;
  text-align: center;
  font-weight: 900;
}

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

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.product-accordions summary::after {
  content: "+";
}

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

.product-accordions p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #475653;
  font-weight: 800;
}

.cart-panel {
  width: min(460px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-header h2 {
  font-size: 2.1rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
}

.empty-cart {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

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

.cart-item img {
  width: 76px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h3 {
  font-size: 1rem;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-controls button,
.remove-button {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.remove-button {
  color: var(--rose-dark);
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

label {
  display: grid;
  gap: 7px;
  color: #41504e;
  font-weight: 800;
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.cart-summary {
  display: grid;
  gap: 9px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.cart-summary .total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.2rem;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  transform: translateY(18px);
  opacity: 0;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--leaf);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .product-grid,
  .category-products,
  .collection-grid,
  .category-card-grid,
  .review-grid,
  .story-band,
  .quality-band,
  .quality-grid,
  .shop-heading {
    grid-template-columns: 1fr 1fr;
  }

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

  .category-section {
    grid-template-columns: 1fr;
  }

  .category-copy {
    min-height: 280px;
  }

  .quick-view-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 78vh;
    background-position: 62% center;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-strip,
  .age-strip,
  .product-grid,
  .category-products,
  .collection-grid,
  .category-card-grid,
  .review-grid,
  .story-band,
  .quality-band,
  .quality-grid,
  .shop-heading {
    grid-template-columns: 1fr;
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip div:last-child {
    border-bottom: 0;
  }

  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter {
    flex: 0 0 auto;
  }

  .quick-view-panel {
    inset: 0;
    border-radius: 0;
    padding: 14px;
  }

  .quick-view-image-frame {
    min-height: 52vh;
  }

  .quick-view-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Premium boutique refresh */
:root {
  --ink: #17231f;
  --muted: #5f6b64;
  --paper: #faf6ef;
  --surface: #fffdf9;
  --line: #e7d8c8;
  --rose: #d99a8d;
  --rose-dark: #9b5b52;
  --leaf: #6f897b;
  --sage: #8fa79a;
  --sage-soft: #e8efea;
  --blush: #f4dfd9;
  --cream: #fffdf9;
  --gold: #b98c4a;
  --shadow: 0 18px 42px rgba(23, 35, 31, 0.1);
}

body {
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
select {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.announcement-bar {
  min-height: 36px;
  background: var(--ink);
  color: #fffdf9;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.site-header {
  grid-template-columns: auto 1fr auto;
  gap: clamp(12px, 2vw, 28px);
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(250, 246, 239, 0.96);
  border-bottom: 1px solid rgba(231, 216, 200, 0.86);
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(145deg, #fffdf9 0%, #f2e8dd 100%);
}

.brand-name {
  font-size: 1.42rem;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.62rem;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.nav-links {
  gap: clamp(12px, 2vw, 22px);
  font-size: 0.88rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.cart-button {
  min-height: 42px;
  border-color: rgba(23, 35, 31, 0.14);
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.hero {
  min-height: min(720px, calc(100vh - 96px));
  align-items: flex-end;
  padding: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(23, 35, 31, 0.68) 0%, rgba(23, 35, 31, 0.36) 42%, rgba(23, 35, 31, 0.08) 100%),
    url("assets/products/little-astronaut-lounge-models.webp") center 30%/cover;
}

.hero-content {
  width: min(610px, 100%);
  padding-bottom: clamp(8px, 6vh, 58px);
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.85rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.45rem);
  line-height: 1.04;
}

.hero p {
  max-width: 560px;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.62;
}

.hero .eyebrow {
  color: #f3d4cd;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.primary:hover {
  background: #25342f;
}

.secondary {
  border: 1px solid rgba(255, 253, 249, 0.7);
  background: rgba(255, 253, 249, 0.14);
  color: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 22px clamp(16px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--ink);
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.4;
}

.section {
  padding: clamp(52px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.category-menu,
.collection-intro {
  background: var(--cream);
}

.category-card {
  min-height: 250px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(23, 35, 31, 0.12);
}

.category-card::before {
  background: linear-gradient(rgba(23, 35, 31, 0.02), rgba(23, 35, 31, 0.66));
}

.category-card span {
  background: rgba(255, 253, 249, 0.22);
}

.shop-section {
  background: linear-gradient(180deg, var(--paper) 0%, #f6efe7 100%);
}

.shop-heading {
  gap: 18px;
}

.filter {
  border-color: var(--line);
  background: var(--surface);
}

.filter.active {
  background: var(--ink);
  border-color: var(--ink);
}

.category-section {
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(23, 35, 31, 0.08);
}

.category-copy {
  border-radius: 20px;
}

.category-copy h3 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

.category-products {
  gap: 18px;
}

.product-card {
  min-height: 100%;
  border-color: rgba(231, 216, 200, 0.96);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(23, 35, 31, 0.08);
}

.product-card:hover {
  box-shadow: 0 22px 46px rgba(23, 35, 31, 0.12);
}

.product-card img {
  aspect-ratio: 4 / 4.75;
  object-fit: cover;
  background: #f4f1eb;
}

.product-thumbs {
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 9px 10px 0;
  background: var(--surface);
}

.product-thumbs img,
.thumb-button img {
  border-radius: 10px;
}

.product-badge {
  background: rgba(23, 35, 31, 0.82);
}

.inspect-badge {
  background: rgba(255, 253, 249, 0.94);
}

.product-body {
  align-content: start;
  gap: 14px;
  padding: 19px;
}

.product-meta {
  align-items: start;
  color: var(--muted);
}

.product-meta > span {
  max-width: 150px;
  color: var(--rose-dark);
  font-weight: 900;
  line-height: 1.35;
}

.product-meta strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.product-body h3 {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.product-note {
  color: var(--muted);
  line-height: 1.58;
}

.product-fabric,
.stock-line {
  background: #edf5f0;
  border-color: rgba(143, 167, 154, 0.38);
  color: #405f52;
}

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

.product-trust-list span,
.cart-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #43524c;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.product-trust-list span::before,
.cart-trust span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.size-select,
input,
select {
  border-radius: 12px;
  background: #fff;
}

.quick-shop-link {
  min-height: 42px;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.fabric-fit,
.reassurance {
  background: var(--surface);
}

.info-grid,
.reassurance-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

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

.reassurance {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

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

.info-grid article,
.reassurance-grid article,
.policy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(23, 35, 31, 0.06);
}

.info-grid strong,
.reassurance-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.08rem;
}

.info-grid p,
.reassurance-grid p,
.policy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.size-preview {
  background: #edf3ef;
}

.size-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(23, 35, 31, 0.08);
}

.size-table div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.size-table div + div {
  border-top: 1px solid var(--line);
}

.size-table span,
.size-table strong {
  padding: 15px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.size-table span:last-child,
.size-table strong:last-child {
  border-right: 0;
}

.size-table strong {
  color: var(--ink);
  background: #f8efe8;
}

.policy-hub {
  background: var(--paper);
}

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

.policy-grid article {
  min-height: 190px;
}

.policy-grid h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(42px, 6vw, 70px) clamp(18px, 4vw, 56px) 28px;
  background: var(--ink);
  color: #fffdf9;
}

.site-footer .brand-name,
.site-footer .brand-tagline {
  color: #fffdf9;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand p {
  max-width: 380px;
  color: rgba(255, 253, 249, 0.76);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 253, 249, 0.78);
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.9rem;
}

.cart-panel {
  width: min(500px, 100%);
  background: var(--surface);
}

.cart-header .eyebrow {
  margin-bottom: 4px;
}

.cart-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f1e9;
}

.cart-item-note {
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cart-summary {
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.cart-summary .total {
  font-size: 1.28rem;
  font-weight: 950;
}

.continue-shopping {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.quick-view-panel {
  border-radius: 24px;
  background: var(--surface);
}

.quick-view-image-frame,
.purchase-box {
  border-radius: 18px;
}

.quick-view-details h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    display: grid;
    min-height: 40px;
    place-items: center;
    border-radius: 12px;
    background: #f7f1e9;
  }

  .category-card-grid,
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .trust-strip,
  .info-grid,
  .reassurance,
  .reassurance-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .category-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 10px 14px;
  }

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

  .bloom-symbol {
    transform: scale(0.82);
    transform-origin: left top;
  }

  .brand-name {
    font-size: 1.14rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 11px;
  }

  .cart-button {
    min-height: 38px;
    padding: 0 12px;
  }

  .nav-links {
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 82vh;
    align-items: flex-end;
    padding: 22px 16px 30px;
    background:
      linear-gradient(180deg, rgba(23, 35, 31, 0.03) 0%, rgba(23, 35, 31, 0.08) 42%, rgba(23, 35, 31, 0.78) 100%),
      url("assets/products/little-astronaut-lounge-models.webp") 52% top/cover;
  }

  .hero-content {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(2.08rem, 12vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .trust-strip,
  .category-card-grid,
  .category-products,
  .info-grid,
  .reassurance,
  .reassurance-grid,
  .policy-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .shop-heading {
    grid-template-columns: 1fr;
  }

  .category-copy {
    min-height: 240px;
  }

  .product-trust-list,
  .cart-trust {
    grid-template-columns: 1fr;
  }

  .size-table {
    overflow-x: auto;
  }

  .size-table div {
    min-width: 560px;
  }

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

  .quick-view-panel {
    inset: 0;
    border-radius: 0;
  }
}

/* Premium tier refinements */
:focus-visible {
  outline: 3px solid rgba(217, 154, 141, 0.72);
  outline-offset: 3px;
}

.site-header {
  box-shadow: 0 8px 28px rgba(23, 35, 31, 0.04);
}

.brand-mark {
  box-shadow: inset 0 0 0 1px rgba(255, 253, 249, 0.7), 0 10px 24px rgba(23, 35, 31, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 246, 239, 0) 78%, var(--paper) 100%);
  content: "";
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 249, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.12);
  color: rgba(255, 253, 249, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.boutique-standard {
  background: var(--ink);
  color: #fffdf9;
}

.boutique-standard .eyebrow {
  color: #f1c6bb;
}

.boutique-standard .section-heading {
  max-width: 720px;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.14);
}

.standard-grid article {
  display: grid;
  gap: 13px;
  min-height: 245px;
  align-content: end;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.04), rgba(255, 253, 249, 0.08)),
    #1d2a26;
}

.standard-grid span {
  color: #d99a8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.standard-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.standard-grid p {
  margin: 0;
  color: rgba(255, 253, 249, 0.74);
  line-height: 1.65;
}

.shop-intro {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-card {
  position: relative;
}

.product-card::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 16px;
  content: "";
}

.product-media img {
  transition: transform 260ms ease;
}

.product-media:hover img {
  transform: scale(1.035);
}

.product-meta strong {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.product-meta strong small {
  min-height: 18px;
  font-size: 0.82rem;
}

.product-detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbf6ef;
  color: #4c5b55;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
}

.product-trust-list {
  padding: 12px;
  border: 1px solid rgba(231, 216, 200, 0.82);
  border-radius: 16px;
  background: #faf7f1;
}

.thumb-button {
  transition: transform 160ms ease, border-color 160ms ease;
}

.thumb-button:hover {
  transform: translateY(-2px);
}

.add-button,
.checkout-button {
  box-shadow: 0 12px 26px rgba(23, 35, 31, 0.18);
}

.fit-promise {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  background: var(--paper);
}

.promise-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(143, 167, 154, 0.14), rgba(217, 154, 141, 0.12)),
    var(--surface);
  box-shadow: 0 18px 40px rgba(23, 35, 31, 0.08);
}

.promise-card p:last-child {
  margin: 18px 0 0;
  max-width: 650px;
  color: var(--muted);
  line-height: 1.75;
}

.promise-list {
  display: grid;
  gap: 12px;
}

.promise-list span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(23, 35, 31, 0.06);
}

.promise-list span::before {
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.quick-view-image-frame {
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.96), rgba(237, 243, 239, 0.96)),
    #fff;
}

.quick-view-thumbs button.active {
  box-shadow: 0 0 0 3px rgba(143, 167, 154, 0.18);
}

.cart-panel {
  border-left: 1px solid var(--line);
}

.empty-cart {
  background: #faf7f1;
}

.site-footer .brand-mark {
  border-color: rgba(255, 253, 249, 0.22);
}

@media (max-width: 980px) {
  .standard-grid,
  .fit-promise {
    grid-template-columns: 1fr;
  }

  .standard-grid article {
    min-height: 190px;
  }
}

@media (max-width: 680px) {
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .standard-grid {
    border-radius: 20px;
  }

  .promise-card {
    border-radius: 22px;
  }

  .product-card::after {
    inset: 8px;
    border-radius: 15px;
  }
}
