:root {
  --navy: #172653;
  --text: #2c2a3a;
  --muted: #706b82;
  --paper: #fffaf2;
  --white: #ffffff;
  --pink: #f7679a;
  --hot-pink: #ee4f86;
  --purple: #8f58d6;
  --teal: #1eb7bc;
  --yellow: #ffca32;
  --mint: #8adbd1;
  --peach: #ffe5d8;
  --line: #f2d8dc;
  --shadow: 0 16px 38px rgba(73, 61, 104, 0.15);
  --radius: 18px;
  --display: "Fredoka", "Trebuchet MS", sans-serif;
  --playful: "Chewy", "Fredoka", "Trebuchet MS", sans-serif;
  --body: "Nunito", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 202, 50, .12), transparent 15rem),
    radial-gradient(circle at 87% 15%, rgba(30, 183, 188, .12), transparent 16rem),
    radial-gradient(circle at 45% 62%, rgba(247, 103, 154, .08), transparent 24rem),
    var(--paper);
  font-family: var(--body);
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle, rgba(247, 103, 154, .18) 1px, transparent 1px),
    radial-gradient(circle, rgba(30, 183, 188, .13) 1px, transparent 1px);
  background-size: 34px 34px, 52px 52px;
  background-position: 0 0, 18px 12px;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.top-banner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 18px;
  color: #fff;
  background: linear-gradient(90deg, #f35d93, #fb88ae);
  font-weight: 800;
  font-size: .9rem;
  text-align: center;
}
.top-banner p { margin: 0; }
.top-banner button {
  position: absolute;
  right: 18px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(22px, 6vw, 88px);
  background: rgba(255, 250, 242, .94);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(242, 216, 220, .65);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}
.brand-text strong {
  display: grid;
  color: var(--teal);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: .78;
  letter-spacing: .02em;
}
.brand-text strong span:last-child { color: var(--pink); }
.brand-text small {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.brand-sparkle { color: var(--yellow); font-size: 1.25rem; }
.brand-heart { color: var(--pink); font-size: 1.55rem; }

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #1f2438;
  font-weight: 800;
  font-size: .93rem;
}
.main-nav a { padding: 8px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--purple); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #121212;
}
.icon-btn svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-btn span {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}
.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(23, 38, 83, .28);
  backdrop-filter: blur(3px);
}
.cart-drawer,
.search-modal {
  position: fixed;
  z-index: 45;
  background: #fffdf8;
  border: 2px solid #f6dfe4;
  box-shadow: 0 24px 70px rgba(37, 29, 67, .24);
  transition: transform .28s ease, opacity .28s ease;
}
.cart-drawer {
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  transform: translateX(105%);
}
.search-modal {
  top: 96px;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 128px);
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  opacity: 0;
  transform: translate(-50%, -18px) scale(.97);
  pointer-events: none;
}
.cart-open,
.search-open {
  overflow: hidden;
}
.cart-open .cart-drawer {
  transform: translateX(0);
}
.search-open .search-modal {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.panel-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}
.panel-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid #f1d9e2;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.cart-list,
.search-results {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 8px 2px;
}
.cart-item,
.search-result {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 2px solid #f6dfe4;
  border-radius: 16px;
  background: #fff;
}
.cart-item h3,
.search-result strong {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.05rem;
}
.cart-item p,
.search-result span,
.search-result small,
.empty-state {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.cart-item button {
  border: 0;
  background: transparent;
  color: var(--pink);
  font-weight: 900;
}
.cart-footer {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px solid #f6dfe4;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}
.search-input {
  width: 100%;
  min-height: 54px;
  border: 2px solid #f1d9e2;
  border-radius: 18px;
  padding: 0 18px;
  background: #fff;
  color: var(--text);
  outline: none;
  font-weight: 800;
}
.search-result {
  align-items: flex-start;
  flex-direction: column;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .84fr) minmax(520px, 1.16fr);
  min-height: 500px;
  padding: 0 0 0 clamp(24px, 7vw, 95px);
  overflow: hidden;
  background: #fffdf8;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 34%, rgba(143, 88, 214, .08), transparent 8rem),
    radial-gradient(circle at 34% 18%, rgba(255, 202, 50, .12), transparent 9rem),
    radial-gradient(circle at 20% 78%, rgba(30, 183, 188, .08), transparent 10rem),
    linear-gradient(90deg, rgba(255,253,248,.99) 0 47%, rgba(255,253,248,.74) 47% 48%, transparent 48%);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 43%;
  z-index: 2;
  width: 118px;
  background: #fffdf8;
  border-right: 2px dashed rgba(247, 103, 154, .42);
  border-radius: 0 62% 62% 0 / 0 50% 50% 0;
  pointer-events: none;
}
.hero-copy, .hero-showcase { position: relative; z-index: 1; }
.hero-copy {
  max-width: 540px;
  align-self: center;
  z-index: 3;
  padding: clamp(42px, 6vw, 72px) 0 clamp(34px, 5vw, 54px);
}
.hero-copy > :not(.doodle) { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 20px;
  font-family: var(--playful);
  font-size: clamp(3.55rem, 6.6vw, 5.85rem);
  line-height: .96;
  letter-spacing: .032em;
}
.hero h1 > span {
  display: block;
}
.word-navy { color: var(--navy); }
.word-pink {
  position: relative;
  color: var(--pink);
  width: fit-content;
  max-width: 100%;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .9);
}
.word-teal { color: var(--teal); }
.hero h1::after {
  content: "";
  display: block;
  width: clamp(150px, 19vw, 210px);
  height: 16px;
  margin: 4px 0 0 clamp(130px, 17vw, 205px);
  border-bottom: 5px solid var(--teal);
  border-radius: 50%;
  transform: rotate(-2deg);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: #3c446a;
  font-size: 1.16rem;
  font-weight: 700;
}
.doodle {
  position: absolute;
  z-index: 1;
  color: var(--teal);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  animation: floaty 4.8s ease-in-out infinite;
  --rotate: 0deg;
}
.doodle-one { left: -34px; top: 56px; color: var(--purple); --rotate: -10deg; }
.doodle-two { left: -38px; top: 178px; color: var(--teal); --rotate: 12deg; animation-delay: .7s; }
.doodle-three { right: 70px; top: 48px; color: var(--yellow); font-size: 3.1rem; animation-delay: .25s; }
.doodle-four { right: 44px; top: 230px; color: var(--pink); font-size: 2.25rem; --rotate: 12deg; animation-delay: 1s; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 30px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.primary {
  background: linear-gradient(135deg, #8f58d6, #b75ad9);
  color: #fff;
}
.secondary {
  background: #fff;
  color: var(--purple);
  border-color: #bd8ce2;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  color: var(--navy);
  font-weight: 800;
  font-size: .86rem;
}
.trust-strip span { display: flex; gap: 8px; align-items: center; }
.trust-strip b { color: var(--pink); font-size: 1.55rem; line-height: 1; }

.hero-showcase {
  min-height: 500px;
  height: 100%;
  display: block;
  align-self: stretch;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 4% 72%, 0 50%, 4% 27%);
}
.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  z-index: 2;
  height: 24px;
  background: #fffdf8;
  pointer-events: none;
}
.hero-showcase::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 93% 70%, 84% 42%, 74% 68%, 63% 40%, 52% 72%, 41% 38%, 31% 68%, 20% 40%, 10% 72%, 0 42%);
}
.hero-showcase::after {
  bottom: -1px;
  clip-path: polygon(0 60%, 10% 30%, 20% 62%, 31% 32%, 41% 64%, 52% 30%, 63% 64%, 74% 32%, 84% 62%, 93% 32%, 100% 62%, 100% 100%, 0 100%);
}
.hero-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.01);
}
.category-placeholder,
.product-placeholder,
.workshop-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: rgba(23, 38, 83, .62);
}
.hero-note {
  position: absolute;
  left: 38%;
  bottom: 48px;
  z-index: 4;
  width: 150px;
  min-height: 102px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 3px dashed #ff8eb6;
  border-radius: 32px;
  background: #fff6ed;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.02;
  transform: rotate(-7deg);
  box-shadow: var(--shadow);
  animation: sticker-bob 5.5s ease-in-out infinite;
}
.photo-doodle {
  position: absolute;
  z-index: 4;
  color: #fff;
  text-shadow: 0 2px 4px rgba(77, 61, 83, .18);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  animation: twinkle 3.2s ease-in-out infinite;
  --rotate: 0deg;
}
.star-a { left: 16%; top: 50px; color: #fff; --rotate: -8deg; }
.star-b { left: 25%; top: 82px; color: var(--yellow); --rotate: 13deg; animation-delay: .45s; }
.star-c { right: 5%; top: 245px; color: var(--teal); --rotate: 9deg; animation-delay: .8s; }
.star-d { right: 12%; bottom: 76px; color: var(--yellow); font-size: 2rem; --rotate: 18deg; animation-delay: 1.2s; }

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--rotate)); }
  50% { transform: translate3d(0, -9px, 0) rotate(calc(var(--rotate) + 6deg)); }
}

@keyframes twinkle {
  0%, 100% { opacity: .7; transform: scale(.88) rotate(var(--rotate)); }
  50% { opacity: 1; transform: scale(1.18) rotate(calc(var(--rotate) + 9deg)); }
}

@keyframes sticker-bob {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
}

@keyframes section-float-in {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-float-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

main > section {
  animation: section-float-in .75s ease both;
  animation-delay: var(--section-delay, 0s);
}
main > section:nth-child(2) { --section-delay: .08s; }
main > section:nth-child(3) { --section-delay: .14s; }
main > section:nth-child(4) { --section-delay: .2s; }
main > section:nth-child(5) { --section-delay: .26s; }
main > section:nth-child(6) { --section-delay: .32s; }
main > section:nth-child(7) { --section-delay: .38s; }

section { padding-inline: clamp(22px, 6.5vw, 86px); }
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--pink);
}
h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.category-section {
  position: relative;
  margin-top: 0;
  padding-top: clamp(56px, 7vw, 82px);
  padding-bottom: clamp(56px, 7vw, 82px);
  background: #fff;
  border-radius: 56px 56px 0 0;
  box-shadow: 0 -10px 30px rgba(49, 39, 72, .06);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}
.category-card {
  position: relative;
  overflow: hidden;
  border: 2px solid #f6dfe4;
  border-radius: var(--radius);
  background: #fffaf7;
  box-shadow: 0 10px 22px rgba(73, 61, 104, .1);
  animation: card-float-in .65s ease both;
  animation-delay: calc(.18s + (var(--card-index, 0) * .07s));
}
.category-card:nth-child(1),
.product-card:nth-child(1) { --card-index: 1; }
.category-card:nth-child(2),
.product-card:nth-child(2) { --card-index: 2; }
.category-card:nth-child(3),
.product-card:nth-child(3) { --card-index: 3; }
.category-card:nth-child(4),
.product-card:nth-child(4) { --card-index: 4; }
.product-card:nth-child(5) { --card-index: 5; }
.category-placeholder {
  min-height: 160px;
  padding: 20px;
  border-bottom: 2px solid #f6dfe4;
  background: #d8d8d8;
}
.bookmarks {
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 142, 182, .58), transparent 32%),
    linear-gradient(135deg, #ffe7ef, #ffe9c4 44%, #9ee7ea);
}
.slim-bookmarks {
  background: linear-gradient(135deg, #ffca32, #22b8be 50%, #7555d7);
}
.tag-bookmarks {
  background: linear-gradient(135deg, #ffca32, #0f8e6e 42%, #f7679a);
}
.letter-pieces {
  background: linear-gradient(135deg, #10aac4, #f7f3ff 50%, #8f58d6);
}
.hanging-pieces {
  background: linear-gradient(135deg, #3d146a, #7555d7 52%, #f6b44b);
}
.blue-pour-category,
.snarky-stickers-category,
.butterfly-charms-category,
.heart-necklaces-category {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 88%, cover, cover;
}
.blue-pour-category {
  background-image:
    url("assets/images/products/blue-pour-ecommerce-separated-01.png"),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .86), transparent 28%),
    linear-gradient(135deg, #d9f8ff, #1cb6c7 48%, #275ba8);
}
.snarky-stickers-category {
  background-image:
    url("assets/images/products/snarky-stickers-ecommerce.png"),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .86), transparent 25%),
    linear-gradient(135deg, #fff4a8, #ff8eb6 45%, #3ecbd0);
}
.butterfly-charms-category {
  background-image:
    url("assets/images/products/butterfly-charms-for-woo-07-blue-hummingbird-charm.png"),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .86), transparent 24%),
    linear-gradient(135deg, #ffe4f2, #9ee7ea 48%, #8f58d6);
}
.heart-necklaces-category {
  background-image:
    url("assets/images/products/08-blue-heart-necklace-for-woo.png"),
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, .86), transparent 24%),
    linear-gradient(135deg, #fff2f7, #ff8eb6 45%, #52d2de);
}
.resin {
  background:
    radial-gradient(circle at 25% 25%, #ffca32, transparent 21%),
    radial-gradient(circle at 75% 31%, #13b8ca, transparent 22%),
    conic-gradient(from 120deg, #22c7ae, #ffd34d, #f7679a, #7555d7, #22c7ae);
}
.figures { background: linear-gradient(135deg, #f1eadf, #b69d90); }
.charms { background: linear-gradient(135deg, #fed5e8, #98edf0 46%, #b07ce3); }
.gifts { background: linear-gradient(135deg, #4fcbd1, #ffdfec); }
.category-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 16px;
}
.category-info h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.2rem;
}
.category-info p {
  margin: 2px 0 0;
  color: var(--muted);
  font-weight: 800;
  font-size: .88rem;
}
.category-info a {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}
.sticker {
  position: absolute;
  top: 14px;
  left: 12px;
  z-index: 1;
  max-width: 88px;
  padding: 8px 9px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: var(--display);
  font-size: .76rem;
  line-height: 1;
  text-align: center;
  transform: rotate(-10deg);
}
.sticker.purple { background: var(--purple); }
.sticker.gold { left: auto; right: 10px; background: var(--yellow); color: var(--navy); transform: rotate(8deg); }

.products-section {
  padding-top: clamp(54px, 7vw, 78px);
  padding-bottom: clamp(54px, 7vw, 78px);
  background: #fff;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}
.section-top h2 span { color: var(--yellow); }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter {
  min-height: 36px;
  border: 2px solid #f1d9e2;
  border-radius: 999px;
  padding: 7px 14px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}
.filter.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border: 2px solid #f6dfe4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(73, 61, 104, .1);
  animation: card-float-in .65s ease both;
  animation-delay: calc(.18s + (var(--card-index, 0) * .07s));
}
.product-card.hidden { display: none; }
.product-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 2px solid #f6dfe4;
  background: #fffaf7;
}
.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 10px;
  object-fit: contain;
  transition: transform .25s ease;
}
.product-card:hover .product-image img { transform: scale(1.035); }
.product-placeholder {
  aspect-ratio: 1.15 / .9;
  padding: 18px;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
}
.badge.teal { background: var(--teal); }
.product-info { padding: 12px 14px 16px; }
.product-category {
  margin: 0 0 6px;
  color: var(--pink);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-info h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.12;
}
.product-card-summary {
  min-height: 56px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.35;
}
.rating {
  margin: 6px 0 8px;
  color: var(--yellow);
  font-size: .9rem;
  font-weight: 900;
}
.rating span { color: var(--muted); }
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-row strong {
  color: var(--navy);
  font-size: 1.05rem;
}
.catalog-row {
  justify-content: flex-start;
}
.details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 2px solid #f1d9e2;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--purple);
  font-size: .84rem;
  font-weight: 950;
}
.details-link:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}
.add-cart {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}
.add-cart.added {
  background: var(--teal);
}
.wide-cart {
  width: auto;
  min-width: 168px;
  height: auto;
  min-height: 50px;
  padding-inline: 28px;
  border-radius: 999px;
  font-size: 1rem;
}
.heart { display: none; }

.custom-design {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 86px);
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 202, 50, .16), transparent 10rem),
    radial-gradient(circle at 86% 70%, rgba(247, 103, 154, .12), transparent 13rem),
    #fff;
}
.custom-art {
  position: relative;
  min-height: 280px;
}
.custom-preview {
  min-height: 280px;
  border: 12px solid #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.custom-doodle {
  position: absolute;
  z-index: 2;
  color: var(--pink);
  font-size: 2rem;
  animation: floaty 5s ease-in-out infinite;
}
.custom-doodle.one { left: 16px; top: -8px; color: var(--yellow); }
.custom-doodle.two { right: 22px; bottom: 18px; color: var(--purple); animation-delay: .8s; }
.custom-copy {
  max-width: 680px;
}
.custom-copy h2 {
  margin-bottom: 12px;
}
.custom-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--text);
  font-weight: 750;
}
.custom-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 24px;
}
.custom-steps span {
  min-height: 84px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 14px;
  border: 2px solid #f6dfe4;
  border-radius: 18px;
  background: #fffaf7;
  color: var(--navy);
  font-weight: 900;
}
.custom-steps b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
}

.page-hero {
  padding-top: 56px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 16% 35%, rgba(143, 88, 214, .12), transparent 12rem),
    radial-gradient(circle at 84% 30%, rgba(30, 183, 188, .16), transparent 15rem),
    #fffdf8;
  text-align: center;
}
.page-hero h1 {
  max-width: 880px;
  margin: 0 auto 12px;
  color: var(--navy);
  font-family: var(--playful);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: .02em;
}
.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #3c446a;
  font-size: 1.12rem;
  font-weight: 800;
}
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 26px;
  padding-top: 32px;
  padding-bottom: 34px;
  background: #fff;
}
.shop-sidebar {
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 2px solid #f6dfe4;
  border-radius: 20px;
  background: #fffaf7;
}
.shop-sidebar h2,
.shop-sidebar h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
}
.shop-sidebar a,
.shop-sidebar label {
  display: block;
  color: var(--muted);
  font-weight: 850;
}
.shop-sidebar a.active,
.shop-sidebar a:hover {
  color: var(--purple);
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.shop-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.select-control {
  min-height: 40px;
  border: 2px solid #f1d9e2;
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 850;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding-top: 42px;
  padding-bottom: 42px;
  background: #fff;
}
.product-gallery {
  display: grid;
  gap: 16px;
}
.product-main-image {
  min-height: 430px;
  border: 12px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.real-product-image {
  overflow: hidden;
  background: #fffaf7;
}
.real-product-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.thumb {
  min-height: 96px;
  border: 3px solid #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(73, 61, 104, .12);
}
.product-summary .rating { font-size: 1rem; }
.product-summary h1 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: var(--playful);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: .95;
}
.price-large {
  margin: 0 0 14px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
}
.product-options {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}
.product-options label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
}
.product-options select,
.product-options input,
.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  min-height: 46px;
  border: 2px solid #f1d9e2;
  border-radius: 14px;
  padding: 10px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.qty-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}
.qty-cart input {
  width: 86px;
  min-height: 50px;
  border: 2px solid #f1d9e2;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
}
.detail-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}
.custom-page {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 40px;
  background: #fff;
}
.custom-info {
  display: grid;
  gap: 18px;
}
.custom-info-card,
.custom-form-wrap {
  padding: 24px;
  border: 2px solid #f6dfe4;
  border-radius: 22px;
  background: #fffaf7;
}
.custom-info-card h2,
.custom-form-wrap h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.custom-info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 800;
}
.custom-form {
  display: grid;
  gap: 14px;
}
.custom-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
}
.custom-form textarea { min-height: 130px; resize: vertical; }
.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--purple);
  font-weight: 900;
}
.checkout-page {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 48px;
  background: #fff;
}
.checkout-form {
  display: grid;
  gap: 20px;
}
.checkout-panel,
.order-summary {
  border: 2px solid #f6dfe4;
  border-radius: 22px;
  background: #fffaf7;
  box-shadow: 0 10px 24px rgba(73, 61, 104, .08);
  padding: 24px;
}
.checkout-panel h2,
.order-summary h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}
.checkout-panel label,
.payment-choice {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 900;
}
.checkout-panel input,
.checkout-panel select,
.checkout-panel textarea {
  width: 100%;
  min-height: 46px;
  border: 2px solid #f1d9e2;
  border-radius: 14px;
  padding: 10px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.checkout-panel textarea {
  min-height: 110px;
  resize: vertical;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.payment-choice {
  grid-template-columns: auto 1fr;
  align-items: center;
  width: fit-content;
}
.payment-choice input {
  width: auto;
  min-height: auto;
}
.checkout-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.place-order {
  width: fit-content;
}
.order-summary {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 14px;
}
.checkout-items {
  display: grid;
  gap: 12px;
  max-height: 330px;
  overflow: auto;
}
.checkout-item,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.checkout-item {
  padding: 12px;
  border: 2px solid #f6dfe4;
  border-radius: 14px;
  background: #fff;
}
.checkout-item h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
}
.checkout-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.summary-row {
  color: var(--muted);
  font-weight: 900;
}
.summary-row.total {
  padding-top: 14px;
  border-top: 2px solid #f6dfe4;
  color: var(--navy);
  font-size: 1.25rem;
}

.maker {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(290px, 1fr) minmax(260px, .9fr);
  gap: 24px;
  align-items: stretch;
  padding-top: clamp(58px, 7vw, 82px);
  padding-bottom: clamp(58px, 7vw, 82px);
  background: #fff;
}
.maker > * {
  border: 2px solid #f6dfe4;
  background: #fff7ef;
}
.maker-image {
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}
.workshop-placeholder {
  min-height: 100%;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 22%, rgba(247,103,154,.45), transparent 22%),
    radial-gradient(circle at 72% 48%, rgba(30,183,188,.5), transparent 24%),
    linear-gradient(135deg, #ffe9d8, #f8f2ff);
}
.maker-copy {
  padding: 26px 30px;
  border-left: 0;
  border-right: 0;
}
.maker-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.maker-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--text);
  font-weight: 700;
}
.maker-benefits {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 0 24px 24px 0;
}
.maker-benefits div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 12px;
  align-items: center;
}
.maker-benefits span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 1.45rem;
}
.maker-benefits strong { color: var(--navy); }
.maker-benefits p { margin: 0; color: var(--muted); font-weight: 700; }

.customer-care {
  padding-top: clamp(58px, 7vw, 82px);
  padding-bottom: clamp(58px, 7vw, 82px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 202, 50, .13), transparent 13rem),
    radial-gradient(circle at 86% 88%, rgba(30, 183, 188, .12), transparent 14rem),
    #fff;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.care-card,
.faq-list,
.contact-card {
  border: 2px solid #f6dfe4;
  border-radius: 22px;
  background: #fffaf7;
  box-shadow: 0 10px 24px rgba(73, 61, 104, .08);
}
.care-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 24px;
}
.care-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--pink);
  font-size: 1.65rem;
}
.care-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
}
.care-card p,
.faq-list p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.faq-contact {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, .75fr);
  gap: 22px;
  margin-top: 24px;
}
.faq-list,
.contact-card {
  padding: 24px;
}
.faq-list details {
  border-top: 1px solid #f1d9e2;
  padding: 14px 0;
}
.faq-list details:first-of-type {
  margin-top: 8px;
}
.faq-list summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
.faq-list details p {
  margin-top: 8px;
}
.contact-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr minmax(320px, 520px);
  gap: 22px;
  align-items: center;
  padding-top: clamp(58px, 7vw, 84px);
  padding-bottom: clamp(58px, 7vw, 84px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #31c7c9, #1baab3);
  overflow: hidden;
}
.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  height: 24px;
  background: var(--paper);
}
.newsletter::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 32%, 91% 70%, 79% 36%, 64% 68%, 49% 37%, 35% 68%, 19% 38%, 7% 70%, 0 34%);
}
.newsletter::after {
  bottom: -1px;
  clip-path: polygon(0 66%, 7% 30%, 19% 62%, 35% 32%, 49% 63%, 64% 32%, 79% 64%, 91% 30%, 100% 68%, 100% 100%, 0 100%);
}
.mail-art {
  width: 90px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  color: var(--pink);
  font-size: 2.7rem;
  transform: rotate(-7deg);
  box-shadow: var(--shadow);
}
.newsletter h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.newsletter p { max-width: 560px; margin: 8px 0 0; font-weight: 800; }
.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-radius: 999px;
  background: #fff;
  padding: 5px;
  box-shadow: var(--shadow);
}
.newsletter input {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  outline: none;
}
.newsletter form .btn {
  min-height: 42px;
  padding-inline: 24px;
}
.newsletter small {
  grid-column: 1 / -1;
  padding: 5px 14px 2px;
  color: var(--navy);
  font-weight: 800;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 26px;
  padding: 34px clamp(22px, 6.5vw, 86px) 18px;
  background: var(--paper);
}
.site-footer .brand-text strong { font-size: 1.65rem; }
.site-footer .brand-text small { font-size: .58rem; }
.site-footer p, .site-footer a {
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
}
.site-footer h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--display);
}
.site-footer div > a { display: block; margin: 4px 0; }
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.payments span {
  padding: 4px 7px;
  border: 1px solid #e8d4dc;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
}
.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid #ead9df;
  text-align: center;
}

@media (max-width: 1150px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }
  .main-nav { display: none; }
  .main-nav.open {
    position: fixed;
    top: 118px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 26px 22px;
    background: rgba(255, 250, 242, .98);
    border-bottom: 2px solid var(--line);
  }
  .main-nav.open a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .custom-design,
  .product-detail,
  .custom-page,
  .checkout-page { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .maker { grid-template-columns: 1fr; }
  .order-summary {
    position: static;
  }
  .maker > * { border-radius: 22px; border: 2px solid #f6dfe4; }
  .newsletter { grid-template-columns: auto 1fr; }
  .newsletter form { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 24px 0;
    gap: 28px;
  }
  .hero::before {
    background:
      radial-gradient(circle at 76% 12%, rgba(255, 202, 50, .12), transparent 9rem),
      radial-gradient(circle at 11% 30%, rgba(143, 88, 214, .08), transparent 8rem),
      linear-gradient(180deg, #fffdf8 0 56%, transparent 56%);
  }
  .hero::after { display: none; }
  .hero-copy {
    max-width: 680px;
    padding: 12px 0 0;
    text-align: center;
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-strip {
    justify-content: center;
  }
  .hero h1::after {
    margin-inline: auto;
  }
  .word-pink {
    width: auto;
  }
  .hero-showcase {
    min-height: 390px;
    height: 390px;
    margin: 0 -24px;
    clip-path: none;
    border-radius: 32px 32px 0 0;
  }
  .hero-showcase img {
    min-height: 390px;
    object-position: center;
  }
  .hero-note {
    left: auto;
    right: 24px;
    bottom: 28px;
  }
  .newsletter {
    grid-template-columns: auto 1fr;
  }
  .newsletter form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .top-banner { padding-right: 44px; font-size: .78rem; }
  .category-section,
  .products-section,
  .custom-design,
  .maker,
  .customer-care,
  .newsletter {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero { padding: 30px 20px 0; }
  .hero-showcase {
    min-height: 360px;
    height: 360px;
    margin: 0 -20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero-showcase img { min-height: 360px; object-position: center; }
  .hero-note { right: 22px; bottom: 22px; left: auto; }
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-main-image { min-height: 300px; }
  .section-top { align-items: flex-start; flex-direction: column; }
  .newsletter form { grid-template-columns: 1fr; border-radius: 18px; }
  .newsletter input { min-height: 46px; }
  .checkout-panel,
  .order-summary,
  .custom-info-card,
  .custom-form-wrap {
    padding: 18px;
  }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 14px 18px;
  }
  .brand {
    min-width: 0;
  }
  .brand-text strong {
    font-size: 1.85rem;
  }
  .main-nav.open { top: 100px; }
}

@media (max-width: 600px) {
  .category-grid,
  .care-grid,
  .faq-contact,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .custom-steps,
  .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  section {
    padding-inline: 16px;
  }
  .top-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-left: 14px;
    text-align: left;
  }
  .top-banner span:not(:first-child) {
    display: none;
  }
  .top-banner button {
    top: 8px;
    right: 10px;
  }
  .site-header {
    padding: 12px 14px;
  }
  .brand-text strong { font-size: 1.7rem; }
  .brand-text small { font-size: .58rem; }
  .icon-btn {
    width: 38px;
    height: 38px;
  }
  .icon-btn svg {
    width: 25px;
    height: 25px;
  }
  .search-modal {
    top: 78px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 96px);
    padding: 18px;
    border-radius: 18px;
  }
  .cart-drawer {
    width: 100vw;
    padding: 18px;
  }
  .main-nav.open { top: 132px; }
  .hero {
    padding: 24px 16px 0;
  }
  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 3.35rem);
    line-height: 1;
    letter-spacing: .018em;
  }
  .hero h1::after {
    margin-inline: auto;
    width: 138px;
  }
  .product-info h3 {
    min-height: auto;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-actions .btn { width: 100%; }
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .doodle-three { right: 24px; }
  .doodle-four { right: 18px; top: 246px; }
  .hero-showcase {
    min-height: 320px;
    height: 320px;
    margin-inline: -16px;
  }
  .hero-showcase img {
    min-height: 320px;
  }
  .hero-note {
    width: 112px;
    min-height: 76px;
    right: 14px;
    bottom: 16px;
    font-size: .82rem;
  }
  .page-hero {
    padding-top: 40px;
    padding-bottom: 34px;
  }
  .page-hero h1 {
    font-size: clamp(2.6rem, 15vw, 3.4rem);
  }
  .section-heading {
    gap: 10px;
  }
  .section-heading h2,
  h2 {
    font-size: clamp(1.85rem, 11vw, 2.45rem);
  }
  .category-card,
  .product-card,
  .care-card,
  .checkout-panel,
  .order-summary {
    border-radius: 16px;
  }
  .category-placeholder {
    min-height: 132px;
  }
  .product-placeholder {
    aspect-ratio: 1.2 / .82;
  }
  .product-detail,
  .custom-page,
  .checkout-page,
  .shop-layout {
    padding-top: 28px;
  }
  .product-main-image {
    min-height: 250px;
  }
  .real-product-image img {
    min-height: 250px;
  }
  .qty-cart {
    align-items: stretch;
    flex-direction: column;
  }
  .qty-cart input,
  .qty-cart .btn {
    width: 100%;
  }
  .custom-steps span {
    min-height: 68px;
  }
  .care-card {
    padding: 18px;
  }
  .mail-art {
    width: 72px;
    height: 58px;
    font-size: 2rem;
  }
  .newsletter {
    gap: 14px;
  }
  .newsletter form .btn {
    width: 100%;
  }
  .site-footer {
    gap: 18px;
    padding-inline: 16px;
  }
  .category-info { align-items: flex-start; }
}

@media (max-width: 380px) {
  .brand-text strong {
    font-size: 1.35rem;
  }
  .brand-text small {
    letter-spacing: .16em;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .icon-btn {
    width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section,
  .category-card,
  .product-card,
  .doodle,
  .photo-doodle,
  .hero-note {
    animation: none;
  }
}
