:root {
  --pink: #e89aac;
  --pink-2: #f5cbd6;
  --rose: #ef6f91;
  --soft: #fff6f9;
  --blue: #8bd9f2;
  --mint: #a9e9d1;
  --yellow: #ffef73;
  --orange: #f9a330;
  --ink: #222222;
  --muted: #6f6568;
  --line: #f2e6ea;
  --max: 1170px;
  --shadow: 0 16px 40px rgba(103, 64, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Trebuchet MS", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body.menu-open,
body.cart-open,
body.search-open,
body.newsletter-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: #000;
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.announcement {
  min-height: 44px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 142px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 128px;
  padding: 14px 28px 12px 34px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand {
  width: 112px;
  align-self: center;
}

.brand img {
  width: 112px;
  height: 92px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  color: #b96d80;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 4px 0;
}

.desktop-nav a::after,
.desktop-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--pink);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav button:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav button:focus-visible::after {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 30px;
  left: -18px;
  min-width: 210px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 160ms ease;
}

.nav-menu:hover .mega-menu,
.nav-menu:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.icon-button {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #b96d80;
  padding: 3px;
}

.icon-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  position: absolute;
  top: -4px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  background: #f3afbd;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.mobile-only {
  display: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.hamburger::before,
.hamburger::after {
  content: "";
  margin-top: 7px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff8d9;
}

.hero-track {
  position: relative;
  min-height: clamp(260px, 44vw, 560px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 450ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide > img,
.hero-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-slide {
  min-height: clamp(260px, 44vw, 560px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: clamp(360px, 42vw, 560px);
  padding: clamp(26px, 5vw, 58px) max(36px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle at 8% 16%, rgba(255, 246, 157, 0.74) 0 12%, transparent 13%),
    linear-gradient(135deg, #bff2ff 0%, #fff3f7 44%, #ffd7e1 100%);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card::before {
  width: 160px;
  height: 160px;
  left: 8%;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-card::after {
  width: 96px;
  height: 96px;
  right: 24%;
  top: 30px;
  background: rgba(255, 240, 118, 0.5);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 14px;
}

.hero-label {
  display: inline-grid;
  place-items: center;
  min-width: 128px;
  min-height: 56px;
  padding: 0 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #ee6d9a;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 7px 0 rgba(205, 82, 124, 0.28);
}

.hero-copy h1 {
  margin: 0;
  color: #e94783;
  font-size: clamp(58px, 9vw, 122px);
  font-weight: 900;
  line-height: 0.88;
  text-shadow:
    4px 4px 0 #fff,
    -3px 3px 0 #fff,
    0 8px 0 rgba(94, 107, 219, 0.16);
}

.hero-copy strong {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: #275cc8;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(233, 101, 145, 0.25);
}

.hero-copy p {
  max-width: 460px;
  margin: 0;
  color: #2c2c2c;
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 900;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.hero-price del {
  color: #53484d;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 900;
}

.hero-price span {
  color: #e94783;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  text-shadow:
    3px 3px 0 #fff,
    -2px 2px 0 #fff;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #fff675;
  color: #4d933c;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 5px 0 rgba(76, 155, 77, 0.24);
}

.hero-art {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px;
  gap: 22px;
  align-items: center;
}

.hero-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 9px solid #fff;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-side-grid {
  display: grid;
  gap: 16px;
}

.hero-side-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 6px solid #fff;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(98, 58, 72, 0.16);
}

.hero-perks {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 28px;
  transform: translateX(-50%);
  color: #5f62b7;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-perks span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button,
.mini-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(34, 34, 34, 0.25);
}

.hero-dots button.active,
.mini-dots span:nth-child(2) {
  background: var(--pink);
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 58px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  color: #f08aa1;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
}

.section-heading h2 span {
  font-weight: 900;
}

.section-heading::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  background: #e8acba;
}

.collection-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 170px;
  justify-content: space-between;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.collection-strip::-webkit-scrollbar,
.rail::-webkit-scrollbar {
  display: none;
}

.collection-item {
  text-align: center;
  color: #d9899b;
  font-weight: 900;
}

.collection-item img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  background: radial-gradient(circle at top, #fff6c4, #fbd2df 72%);
}

.collection-title {
  display: block;
  min-height: 44px;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.1;
}

.collection-count {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mini-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.split-promo {
  width: min(var(--max), calc(100% - 64px));
  margin: 8px auto 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: 36px;
}

.split-promo.reverse {
  margin-top: 18px;
}

.split-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.split-copy {
  text-align: center;
  padding: 18px 22px;
}

.split-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.split-copy p {
  max-width: 550px;
  margin: 0 auto 26px;
  color: #272323;
  font-size: 17px;
  line-height: 1.6;
}

.inline-perks {
  display: grid;
  gap: 8px;
  justify-content: center;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.inline-perks li::before {
  content: "◆";
  color: var(--orange);
  margin-right: 7px;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-2px);
  background: var(--rose);
  color: #fff;
}

.pill-button.outline {
  background: #fff;
  color: #df8aa0;
}

.pill-button.checkout {
  width: 100%;
  border-color: var(--rose);
  background: var(--rose);
}

.center {
  text-align: center;
  margin-top: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 30px;
}

.product-grid.compact {
  gap: 34px 28px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #fff7f9;
  aspect-ratio: 1 / 1;
}

.product-media .media-link {
  position: absolute;
  inset: 0;
  display: block;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 200ms ease, transform 220ms ease;
}

.product-media img:nth-child(2) {
  opacity: 0;
}

.product-card:hover .product-media img:first-child {
  opacity: 0;
  transform: scale(1.025);
}

.product-card:hover .product-media img:nth-child(2) {
  opacity: 1;
  transform: scale(1.025);
}

.sale-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.quick-add {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: 180ms ease;
}

.product-card:hover .quick-add,
.product-card:focus-within .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.quick-add.static-add {
  position: static;
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--pink);
  background: #fff;
  color: #d47088;
  opacity: 1;
  transform: none;
}

.product-title {
  min-height: 42px;
  margin: 14px 0 6px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: #c6404f;
  font-size: 15px;
}

.price del {
  color: #6f6568;
}

.texture-panel {
  margin-top: 56px;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 170px;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.rail .product-title {
  font-size: 14px;
}

.rail .sale-badge {
  width: 46px;
  height: 46px;
  font-size: 12px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin: -10px 0 32px;
}

.tab-list button {
  min-width: 130px;
  min-height: 35px;
  padding: 0 20px;
  border: 1px solid #75c9dc;
  border-radius: 999px;
  background: #fff;
  color: #252020;
  font-weight: 900;
}

.tab-list button.active {
  background: #7ed4e9;
  color: #fff;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  padding: 64px max(48px, calc((100% - var(--max)) / 2));
  background: #fbedf3;
}

.story-band h2 {
  margin: 0 0 18px;
  color: #f08aa1;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.story-band p {
  max-width: 540px;
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
}

.story-band img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

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

.review-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(78, 54, 64, 0.08);
}

.stars {
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 14px;
}

.review-card p {
  margin: 0 0 16px;
  color: #3f3739;
  line-height: 1.5;
}

.review-card strong {
  display: block;
}

.faq {
  padding-top: 10px;
}

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

.faq-item {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: #f7f7f9;
  padding: 0 34px;
  text-align: left;
  font-weight: 900;
}

.faq-item span:last-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.faq-item span:last-child::before {
  content: "+";
  font-size: 28px;
}

.faq-item.active span:last-child {
  background: #000;
  color: #fff;
}

.faq-item.active span:last-child::before {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 28px 20px 42px;
  color: #83797b;
  line-height: 1.6;
}

.faq-panel.open {
  display: block;
}

.site-footer {
  position: relative;
  margin-top: 80px;
  background: linear-gradient(#efaabc, #e795aa);
  color: #1d181a;
  padding: 82px max(32px, calc((100% - var(--max)) / 2)) 0;
}

.footer-logo {
  position: absolute;
  left: 50%;
  top: -82px;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 80px 80px 0 0;
  background: #efaabc;
}

.footer-logo img {
  width: 128px;
  height: 110px;
  object-fit: contain;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 44px 42px;
  border-radius: 22px;
  background: rgba(255, 245, 248, 0.62);
}

.footer-links h3 {
  margin: 0 0 26px;
  font-size: 18px;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 18px;
  line-height: 1.45;
}

.social-card {
  padding: 44px 36px;
  border-radius: 22px;
  background: var(--rose);
  color: #fff;
}

.social-card h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.social-card p {
  margin: 0 0 24px;
  font-size: 17px;
}

.social-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 14px;
  border-radius: 999px;
  background: #fff;
  color: #191516;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 62px;
  padding: 24px 16px;
  background: rgba(219, 121, 146, 0.28);
}

.payments {
  margin-left: auto;
  font-weight: 900;
}

.review-tab {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 55;
  width: 36px;
  min-height: 94px;
  border: 0;
  background: #151515;
  color: #fff;
  writing-mode: vertical-rl;
  font-weight: 900;
}

.back-top {
  position: fixed;
  right: 38px;
  bottom: 54px;
  z-index: 55;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #b3a7aa;
  font-size: 26px;
}

.bottom-nav {
  display: none;
}

.drawer,
.search-overlay,
.newsletter {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(0, 0, 0, 0.46);
}

.drawer.open,
.search-overlay.open,
.newsletter.open {
  display: block;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.drawer-panel.left {
  left: 0;
  right: auto;
}

.drawer-panel.left a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #b96d80;
  font-size: 21px;
  font-weight: 900;
}

.drawer-logo {
  width: 152px;
  height: 126px;
  object-fit: contain;
  margin-bottom: 10px;
}

.close-button {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 34px;
  line-height: 1;
}

.cart-lines {
  flex: 1;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.cart-line button {
  border: 0;
  background: transparent;
  color: var(--rose);
  font-weight: 900;
}

.empty-cart {
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.search-panel {
  width: min(720px, calc(100% - 36px));
  margin: 70px auto 0;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  margin: 0 0 12px;
  color: #f08aa1;
  font-size: 28px;
  font-weight: 900;
}

.search-panel input {
  width: 100%;
  min-height: 54px;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 0 22px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.search-result {
  display: grid;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  font-weight: 800;
}

.search-result img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.newsletter {
  display: none;
  place-items: center;
}

.newsletter.open {
  display: grid;
}

.newsletter-card {
  position: relative;
  width: min(1000px, calc(100% - 42px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff6fb;
}

.newsletter-card .close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.newsletter-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: #ffd7df;
}

.newsletter-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 52px 42px;
  text-align: center;
}

.newsletter-brand {
  width: 132px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 24px;
}

.newsletter-copy h2 {
  max-width: 480px;
  margin: 0 0 24px;
  color: #e18198;
  font-size: clamp(34px, 4.6vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  word-spacing: 0.06em;
}

.newsletter-copy p {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.2;
}

.newsletter-copy .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.newsletter-copy form {
  display: grid;
  width: 100%;
  gap: 24px;
}

.newsletter-copy input,
.newsletter-copy button {
  width: 100%;
  min-height: 62px;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 0 20px;
  background: transparent;
  font-size: 19px;
}

.newsletter-copy button {
  background: var(--yellow);
  font-weight: 900;
}

.grid-icon,
.heart-icon,
.cart-icon,
.user-icon,
.search-icon {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  margin: 0 auto 2px;
}

.grid-icon {
  background:
    linear-gradient(#111 0 0) 0 0 / 8px 8px,
    linear-gradient(#111 0 0) 15px 0 / 8px 8px,
    linear-gradient(#111 0 0) 0 15px / 8px 8px,
    linear-gradient(#111 0 0) 15px 15px / 8px 8px;
  background-repeat: no-repeat;
}

.heart-icon::before {
  content: "♡";
  font-size: 28px;
  line-height: 20px;
}

.cart-icon::before {
  content: "⌞";
  position: absolute;
  left: 3px;
  top: 0;
  font-size: 30px;
  transform: rotate(-90deg);
}

.user-icon {
  border: 2px solid #111;
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -9px;
  height: 12px;
  border: 2px solid #111;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.search-icon {
  border: 2px solid #111;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 11px;
  height: 2px;
  background: #111;
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 48px 1fr auto;
    min-height: 122px;
    padding: 12px 16px;
  }

  .mobile-only {
    display: inline-grid;
    place-items: center;
  }

  .desktop-nav,
  .desktop-inline {
    display: none;
  }

  .brand {
    justify-self: center;
    width: 128px;
  }

  .brand img {
    width: 128px;
    height: 104px;
  }

  .hero-track {
    min-height: min(56.3vw, 360px);
  }

  .hero-image-slide {
    min-height: min(56.3vw, 360px);
  }

  .hero-image-slide img {
    object-fit: contain;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 600px;
    padding: 28px 15px 58px;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .hero-label {
    min-height: 42px;
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 15vw, 74px);
  }

  .hero-copy strong {
    font-size: 23px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-art {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 12px;
    width: min(100%, 560px);
    justify-self: center;
  }

  .hero-main-image {
    border-width: 6px;
    border-radius: 18px;
  }

  .hero-side-grid {
    gap: 10px;
  }

  .hero-side-grid img {
    border-width: 4px;
    border-radius: 15px;
  }

  .hero-perks {
    gap: 6px;
    bottom: 14px;
    font-size: 10px;
  }

  .hero-perks span {
    padding: 5px 7px;
  }

  .section,
  .split-promo {
    width: min(100% - 30px, var(--max));
  }

  .collection-strip {
    grid-auto-columns: 74px;
    justify-content: start;
    gap: 24px;
  }

  .collection-item img {
    width: 74px;
    height: 74px;
  }

  .collection-title {
    max-width: 74px;
    min-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
  }

  .collection-count {
    display: none;
  }

  .split-promo,
  .split-promo.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .split-copy {
    padding: 0 8px;
  }

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

  .rail {
    grid-auto-columns: 150px;
    gap: 18px;
  }

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

  .story-band {
    grid-template-columns: 1fr;
    padding: 46px 16px;
  }

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

  .footer-links,
  .social-card {
    padding: 30px 24px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .announcement {
    min-height: 44px;
    font-size: 12px;
  }

  .site-header {
    min-height: 120px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button {
    width: 31px;
    height: 31px;
  }

  .hero-dots {
    bottom: 6px;
    gap: 7px;
  }

  .hero-dots button {
    width: 7px;
    height: 7px;
  }

  .section {
    padding: 34px 0 42px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .split-copy h2 {
    font-size: 30px;
  }

  .split-copy p {
    font-size: 16px;
  }

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

  .product-title {
    min-height: 52px;
    font-size: 14px;
  }

  .price {
    flex-wrap: wrap;
    font-size: 13px;
  }

  .quick-add {
    opacity: 1;
    transform: none;
    min-height: 38px;
    font-size: 12px;
  }

  .sale-badge {
    width: 48px;
    height: 48px;
    top: 10px;
    right: 10px;
    font-size: 12px;
  }

  .tab-list {
    gap: 10px;
  }

  .tab-list button {
    min-width: 142px;
  }

  .story-band p {
    font-size: 18px;
  }

  .faq-item {
    padding: 0 18px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .footer-logo {
    width: 132px;
    height: 132px;
    top: -70px;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
    min-height: 67px;
    border-top: 1px solid #e6e6e6;
    background: #fff;
  }

  .bottom-nav a,
  .bottom-nav button {
    display: grid;
    align-content: center;
    border: 0;
    background: #fff;
    color: #111;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
  }

  .back-top {
    right: 28px;
    bottom: 92px;
  }

  .review-tab {
    display: none;
  }

  .search-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 40px);
    overflow: auto;
  }

  .newsletter-photo {
    min-height: 240px;
    max-height: 280px;
  }

  .newsletter-copy {
    padding: 30px 24px;
  }

  .newsletter-copy p {
    font-size: 18px;
  }
}

/* Storefront sub-pages */
.compact-header {
  min-height: 116px;
}

.page-main {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #d97991;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-hero,
.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
  padding: 34px 40px;
  border-radius: 8px;
  background: #fff5f8;
}

.shop-hero h1,
.content-hero h1,
.page-title-row h1,
.policy-page h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.shop-hero p,
.content-hero p {
  max-width: 700px;
  margin: 0;
  color: #5f5659;
  font-size: 18px;
  line-height: 1.45;
}

.shop-hero img,
.content-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
}

.shop-sidebar {
  align-self: start;
  position: sticky;
  top: 140px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.shop-sidebar h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-list a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #7d6c72;
  font-weight: 900;
}

.filter-list a.active {
  background: #f8d5df;
  color: #ba526f;
}

.shop-toolbar,
.page-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.shop-toolbar label {
  display: grid;
  gap: 6px;
  color: #7d6c72;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-toolbar input,
.shop-toolbar select,
.search-page-hero input,
.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-search,
.content-notes {
  min-height: 42px;
  border: 1px solid #e7d8dd;
  border-radius: 6px;
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
}

.empty-state {
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.product-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #fff5f8;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 92px);
  gap: 12px;
  margin-top: 14px;
}

.product-thumbs img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-info h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
}

.crumb {
  color: #d97991;
  font-weight: 900;
}

.detail-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 22px;
  font-size: 20px;
}

.detail-price strong {
  color: #c6404f;
  font-size: 28px;
}

.detail-price del {
  color: var(--muted);
}

.detail-actions {
  display: flex;
  gap: 14px;
  align-items: end;
  margin: 28px 0;
}

.detail-actions label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 900;
}

.detail-actions input {
  width: 76px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 22px;
}

.product-meta div,
.content-grid article,
.account-panel,
.account-orders,
.order-summary,
.empty-cart-panel,
.policy-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 6px 0 0;
}

.detail-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
}

.cart-page-lines {
  display: grid;
  gap: 16px;
}

.cart-page-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 140px 120px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-page-line img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-page-line h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cart-page-line button,
.admin-panel button,
.admin-actions button,
.contact-form button {
  border: 1px solid #e4c4ce;
  border-radius: 999px;
  background: #fff;
  color: #bf5c76;
  padding: 8px 14px;
  font-weight: 900;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 4px;
}

.qty-stepper input {
  width: 54px;
  min-height: 36px;
  border: 1px solid var(--line);
  text-align: center;
}

.order-summary {
  align-self: start;
  position: sticky;
  top: 140px;
  display: grid;
  gap: 16px;
}

.order-summary h2 {
  margin: 0;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
}

.summary-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 22px;
}

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

.order-request-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-request-form input,
.order-request-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #e7d8dd;
  border-radius: 6px;
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
}

.order-request-form textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
}

.order-request-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.search-page-hero {
  padding: 52px 0 32px;
  text-align: center;
}

.search-page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
}

.search-page-hero form {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0 auto 14px;
}

.search-page-hero input {
  min-height: 54px;
  border-radius: 999px;
}

.account-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
}

.account-panel img {
  width: 140px;
  height: 110px;
  object-fit: contain;
}

.account-panel h1 {
  margin: 14px 0 10px;
  font-size: 36px;
}

.account-panel dl {
  display: grid;
  gap: 12px;
}

.account-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #7d6c72;
  font-size: 12px;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: #eff9f6;
  color: #27755d;
  padding: 0 10px;
  font-weight: 900;
}

.content-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
}

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

.content-grid h2,
.policy-list h2 {
  margin: 0 0 12px;
}

.contact-form-section {
  margin-top: 32px;
  padding: 32px;
  border-radius: 8px;
  background: #fff5f8;
}

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

.contact-form textarea {
  grid-column: 1 / 3;
  min-height: 110px;
  padding-top: 12px;
}

.policy-page {
  max-width: 920px;
}

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

/* Admin */
.admin-body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  background: #f7f7f8;
}

.admin-lock {
  display: none;
}

.admin-locked {
  display: block;
}

.admin-locked .admin-sidebar,
.admin-locked .admin-main {
  display: none;
}

.admin-locked .admin-lock {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f7f7f8;
}

.admin-lock form {
  width: min(440px, 100%);
  display: grid;
  gap: 14px;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.admin-lock img {
  width: 110px;
  height: 84px;
  object-fit: contain;
}

.admin-lock h1 {
  margin: 0;
  font-size: 32px;
}

.admin-lock label {
  display: grid;
  gap: 6px;
  color: #71696c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-lock input {
  min-height: 44px;
  border: 1px solid #e7d8dd;
  border-radius: 6px;
  padding: 0 12px;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 18px;
  border-right: 1px solid #e5e5e7;
  background: #fff;
}

.admin-logo img {
  width: 138px;
  height: 104px;
  object-fit: contain;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar button,
.admin-store-link {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4d4548;
  padding: 0 12px;
  text-align: left;
  font-weight: 900;
}

.admin-sidebar button.active {
  background: #ffe6ee;
  color: #bf5c76;
}

.admin-store-link {
  display: flex;
  align-items: center;
  margin-top: auto;
  border: 1px solid #ead4dc;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 34px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6e6669;
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.admin-metrics article,
.admin-panel {
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.admin-metrics span,
.admin-metrics small {
  display: block;
  color: #71696c;
}

.admin-metrics strong {
  display: block;
  margin: 8px 0;
  font-size: 28px;
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 18px;
}

.products-admin-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.admin-panel h2 {
  margin: 0 0 16px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.admin-search {
  width: 100%;
  margin-bottom: 12px;
}

.admin-product-cell {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-product-cell img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-product-cell span,
td span {
  color: #71696c;
  font-size: 13px;
}

.sticky-panel {
  align-self: start;
  position: sticky;
  top: 24px;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: #71696c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form textarea,
.content-notes {
  min-height: 108px;
  padding-top: 10px;
}

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

.low-stock-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.low-stock-row img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
}

.asset-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.asset-list figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.asset-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff5f8;
}

.asset-list figcaption {
  padding: 10px;
  font-weight: 900;
}

.content-notes {
  width: 100%;
  min-height: 260px;
  margin-bottom: 14px;
}

.settings-panel {
  max-width: 720px;
}

@media (max-width: 980px) {
  .page-main {
    width: min(100% - 30px, var(--max));
  }

  .shop-hero,
  .content-hero,
  .shop-layout,
  .product-detail,
  .cart-layout,
  .account-layout,
  .content-grid,
  .admin-grid-2,
  .products-admin-grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar,
  .order-summary,
  .sticky-panel {
    position: static;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .admin-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .compact-header {
    min-height: 98px;
  }

  .shop-hero,
  .content-hero {
    padding: 22px;
  }

  .shop-toolbar,
  .page-title-row,
  .detail-actions,
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-page-line {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-page-line img {
    width: 82px;
    height: 82px;
  }

  .cart-page-line > strong,
  .qty-stepper {
    grid-column: 2;
  }

  .product-meta,
  .contact-form,
  .admin-metrics,
  .asset-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    grid-column: auto;
  }
}
