:root {
  --pink: #f05587;
  --pink-hot: #e63d74;
  --pink-hover: #f483a8;
  --pink-bg: #ffe1eb;
  --blue: #25dade;
  --blue-hover: #5ee9ec;
  --blue-bg: #e0f5ff;
  --purple: #9b7ebd;
  --purple-soft: #eee4f7;
  --yellow: #f0c14b;
  --yellow-soft: #fff3cc;
  --ink: #5e6973;
  --ink-dark: #3d4650;
  --line: #f3d4de;
  --white: #fff;
  --max: 1180px;
  --card-max: 283px;
  --box-max: 371px;
  --pad: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", "DM Sans", system-ui, sans-serif;
  --shadow: 0 18px 44px rgba(240, 85, 135, 0.14);
  --shadow-soft: 0 10px 28px rgba(61, 70, 80, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #d8cdd2 transparent; }
* { scrollbar-width: thin; scrollbar-color: #d8cdd2 transparent; }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: #d8cdd2;
  border-radius: 99px;
}
*::-webkit-scrollbar-thumb:hover { background: var(--pink-hover); }
body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
h1, h2, h3, p { margin: 0; }
:focus, :focus-visible { outline: none; }

.wrap { width: min(var(--max), calc(100% - var(--pad) * 2)); margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 20px; border-radius: 14px;
  background: var(--pink); color: #fff; font-weight: 800;
  box-shadow: 0 12px 26px rgba(240, 85, 135, 0.28);
  transition: transform .2s, background .2s;
}
.btn:hover { background: var(--pink-hot); transform: translateY(-2px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { background: transparent; color: var(--pink); box-shadow: none; }
.btn-ghost:hover { background: transparent; transform: translateX(3px); }
.btn-outline { background: #fff; color: var(--ink-dark); box-shadow: none; border: 1.5px solid var(--line); }
.btn-outline:hover { background: var(--pink-bg); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-mystery {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #2a2030 0%, #141018 55%, #1a1218 100%);
  color: #fff8fb;
  box-shadow: 0 12px 28px rgba(20, 12, 18, 0.4), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-mystery:hover { background: linear-gradient(180deg, #352838 0%, #1c161c 55%, #241820 100%); }
.btn-mystery > * { position: relative; z-index: 1; }
.btn-mystery > span:not(.mystery-sparkles) { z-index: 3; }
.mystery-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.mystery-sparkles i {
  position: absolute;
  width: 1em;
  height: 1em;
  margin: 0;
  font-style: normal;
  line-height: 1;
  color: #f0c14b;
  opacity: 0;
  animation: mystery-float 2.6s ease-in-out infinite;
}
.mystery-sparkles i::before { content: "✦"; font-size: 0.62rem; }
.mystery-sparkles i:nth-child(1) { left: 12%; bottom: 18%; animation-delay: 0s; }
.mystery-sparkles i:nth-child(2) { left: 28%; bottom: 8%; animation-delay: .45s; font-size: .85em; }
.mystery-sparkles i:nth-child(3) { left: 52%; bottom: 22%; animation-delay: .9s; }
.mystery-sparkles i:nth-child(4) { left: 68%; bottom: 10%; animation-delay: 1.3s; font-size: .75em; }
.mystery-sparkles i:nth-child(5) { left: 82%; bottom: 20%; animation-delay: 1.75s; }
.mystery-sparkles i:nth-child(6) { left: 40%; bottom: 6%; animation-delay: 2.15s; font-size: .7em; }
@keyframes mystery-float {
  0% { opacity: 0; transform: translateY(10px) scale(.35); }
  18% { opacity: 1; }
  62% { opacity: .85; }
  100% { opacity: 0; transform: translateY(-16px) scale(1.05); }
}
.card-add.is-mystery {
  background: #161216;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.card-add.is-mystery:hover { background: #2a2228; color: #fff; }
.card-add.is-mystery svg { position: relative; z-index: 1; }
.card-add.is-mystery .mystery-sparkles i:nth-child(n+4) { display: none; }
.card-add.is-mystery .mystery-sparkles i::before { font-size: 0.5rem; }
.icon-btn svg,
.cart-fab svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-dark); position: relative;
}
.icon-btn:hover { background: rgba(255,255,255,.55); }

.announce {
  background: var(--pink); color: #fff; text-align: center;
  padding: 9px 36px; font-size: 0.78rem; font-weight: 800;
  position: relative; z-index: 40;
}
.announce button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: #fff; width: 28px; height: 28px;
  display: grid; place-items: center;
}
.announce svg { width: 18px; height: 18px; }
@media (max-width: 420px) {
  .announce {
    text-align: left;
    padding: 7px 34px 7px 12px;
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .announce button {
    right: 6px;
    width: 26px;
    height: 26px;
  }
}
body.announce-off .announce { display: none; }
body.announce-off .header { padding-block: 10px; }

.page-home { overflow-x: clip; }
.home-top {
  background: linear-gradient(180deg, var(--pink-bg) 0%, #ffd6e6 58%, #fff 100%);
  overflow: visible;
}
.home-top:has(.add-pop:not([hidden])) {
  position: relative;
  z-index: 22;
}
.page-home .header {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
  z-index: 20;
}
.header {
  position: sticky; top: 0; z-index: 30;
  overflow: visible;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(240, 85, 135, 0.04);
}
.bar {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.desk { display: none; }
.menu-btn { justify-self: start; }
.brand { justify-self: center; }
.brand img { height: 64px; width: auto; }
.tools { display: flex; align-items: center; justify-content: flex-end; justify-self: end; gap: 2px; }
.header:has(.account.is-open),
.header:has(.desk-drop:hover),
.header:has(.desk-drop:focus-within) { z-index: 46; }
.desk-drop { position: relative; }
.desk-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 188px;
  padding: 10px 8px 8px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(61, 70, 80, 0.16);
  display: none;
  z-index: 45;
}
.desk-drop:hover .desk-menu,
.desk-drop:focus-within .desk-menu { display: grid; }
.desk-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-dark);
}
.desk-menu a:hover { background: var(--pink-bg); color: var(--pink); }
.account { position: relative; }
.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(300px, calc(100vw - 24px));
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(61, 70, 80, 0.16);
  z-index: 45;
}
.account-menu[hidden] { display: none; }
.account-menu a,
.account-menu > button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-dark);
  background: none;
}
.account-menu a:hover,
.account-menu > button:hover { background: var(--pink-bg); }
.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 12px;
  padding: 4px;
  background: #f6eef1;
  border-radius: 12px;
}
.account-tabs[hidden] { display: none; }
.account-tabs button {
  text-align: center;
  padding: 8px 6px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
  background: none;
}
.account-tabs button.is-on {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 4px 12px rgba(61, 70, 80, 0.08);
}
.account-form { display: grid; gap: 10px; }
.account-form label {
  display: grid;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-dark);
}
.account-form label[hidden] { display: none; }
.account-form input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-weight: 400;
  background: #fff;
}
.account-form input:focus {
  border-color: #d8c4cc;
}
.account-err {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
}
.account-form .btn { min-height: 44px; }
.account-forgot {
  display: block;
  width: 100%;
  padding: 2px 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
  background: none;
}
.account-forgot[hidden] { display: none; }
.account-forgot:hover { text-decoration: underline; }
.account-nav { display: grid; gap: 2px; }
.account-nav a,
.account-nav > button,
.account-news {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  text-align: left;
  font-weight: 700;
  color: var(--ink-dark);
  background: none;
}
.account-nav a:hover,
.account-nav > button:hover { background: var(--pink-bg); }
.account-nav svg { width: 20px; height: 20px; color: var(--pink); }
.account-count {
  justify-self: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 99px;
  background: var(--pink-bg);
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.account-news .switch { justify-self: end; }
.switch {
  position: relative;
  width: 40px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: #e8dee3;
  transition: background 0.2s;
}
.switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transition: left 0.2s;
}
.switch.is-on { background: var(--pink); }
.switch.is-on i { left: 19px; }
.account-split {
  display: block;
  height: 1px;
  margin: 6px 4px;
  background: var(--line);
}
.account-nav [data-logout],
.account-nav [data-logout] svg { color: var(--pink); }
.account.is-in .icon-btn { color: var(--pink); }
.cart-label {
  display: none;
  font-size: 0.78rem; font-weight: 800; color: var(--ink-dark);
}
.count {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px;
  background: var(--pink); color: #fff; font-size: 0.66rem; font-weight: 800;
  display: grid; place-items: center;
}
.cart-fab {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom, 0px), var(--fab-lift, 0px));
  z-index: 36;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  box-shadow: 0 8px 20px rgba(61, 70, 80, 0.14);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.cart-fab.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.cart-fab:hover { background: var(--pink-bg); }
.line-bot button[data-remove] svg,
.add-pop-x svg { width: 18px; height: 18px; }
.box-slider-arrow svg { width: 22px; height: 22px; }
.cart-fab .count {
  top: -2px;
  right: -2px;
  background: var(--pink);
  color: #fff;
}
body:has(.overlay.is-open) .cart-fab,
.page-checkout .cart-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.hero {
  padding: 36px 0 0;
  overflow: visible;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.hero img {
  -webkit-user-drag: none;
  user-select: none;
}
.hero > .wrap { width: min(var(--max), calc(100% - 56px)); }
.hero-grid {
  display: grid;
  grid-template-areas: "copy";
  gap: 0;
  position: relative;
  z-index: 2;
  justify-items: center;
}
.hero-copy {
  grid-area: copy;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-stage { display: none; }
.hero .badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  height: 38px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: normal;
  box-shadow: none;
}
.hero .badge img {
  width: 16px;
  height: 10px;
  margin-right: 10px;
  display: block;
  flex: 0 0 auto;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 7.2vw, 2.45rem);
  line-height: 0.92; letter-spacing: -0.04em;
  text-transform: uppercase; color: var(--ink-dark);
  margin: 14px 0 12px;
}
.hero h1 em { font-style: normal; color: var(--pink); }
.hero .lead { max-width: 42ch; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
}

.hero-stage {
  position: relative;
  z-index: 35;
  width: min(100%, 360px);
  aspect-ratio: 11 / 10;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}
.hero-shot-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118%;
  height: 136%;
  transform: translate(-50%, -50%) scale(0.84);
  pointer-events: none;
}
.hero-shot {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 16px 24px rgba(61, 70, 80, 0.12));
}
.pick-add {
  --hotspot-pulse: rgba(62, 226, 230, 0.4);
  position: absolute;
  z-index: 26;
  width: 32px; height: 32px; border-radius: 50%;
  padding: 0;
  background: rgba(37, 218, 222, 0.75); color: transparent;
  font-size: 0; line-height: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  box-shadow: 0 8px 16px rgba(37, 218, 222, 0.18);
  outline: 0 solid var(--hotspot-pulse);
  animation: hotspot-marker-icon-pulse 1.5s ease-in-out infinite;
}
.pick-add::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 12px no-repeat;
}
.pick-add:hover,
.pick-add:focus,
.pick-add:active {
  background: rgba(37, 218, 222, 0.75);
  color: transparent;
}
@keyframes hotspot-marker-icon-pulse {
  0% { outline: 0 solid var(--hotspot-pulse); }
  100% { outline: 15px solid rgba(0, 0, 0, 0); }
}
.p1 { left: 68%; top: 23%; }
.p2 { left: 44%; top: 39%; }
.p3 { left: 78%; top: 52%; }
.p4 { left: 40%; top: 73%; }
.p5 { left: 61%; top: 86%; }
.hero-wave { display: block; width: 100%; height: 56px; position: relative; z-index: 1; }

.usp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px 0 40px;
  position: relative;
  z-index: 18;
}
.usp-item {
  position: relative;
  z-index: 19;
  background: #fff; border-radius: 16px; padding: 12px;
  box-shadow: var(--shadow-soft);
  display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center;
}
.usp-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; font-style: normal;
}
.usp-item h3 { font-size: 0.9rem; color: var(--ink-dark); }
.usp-item p { display: none; }
.usp-pink { background: var(--pink-bg); }
.usp-blue { background: var(--blue-bg); }
.usp-purple { background: var(--purple-soft); }
.usp-yellow { background: var(--yellow-soft); }

.section { padding: 52px 0; }
.section.section-tight { padding: 8px 0 32px; }
.section-flush { padding-top: 0; }
.section-home-end { padding-top: 0; padding-bottom: 72px; }
.btn-follow { margin-top: 16px; }
.empty .btn-follow { margin-top: 12px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 26px; }
.kicker {
  font-family: var(--display); font-size: 0.72rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--pink);
}
.section-head h2, .section h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 2.8rem);
  line-height: 0.98; letter-spacing: -0.03em;
  color: var(--ink-dark); margin: 6px 0 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--card-max)));
  justify-content: center;
  gap: 10px;
}
.card {
  width: 100%;
  max-width: var(--card-max);
  background: #fff; border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card.is-out { opacity: .72; }
.card-media {
  display: block; aspect-ratio: 1;
  background: var(--pink-bg);
}
.card:nth-child(even) .card-media { background: var(--blue-bg); }
.card-media img { width: 100%; height: 100%; object-fit: contain; }
.badges {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.tag, .sale, .oos {
  font-size: 0.62rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 999px;
  color: #fff; background: var(--pink);
}
.oos { background: #8d8490; }
.card-add {
  position: absolute; right: 8px; bottom: 8px;
  width: 36px; height: 36px; border-radius: 50%;
  padding: 0;
  line-height: 0;
  background: #fff; color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.1);
}
.card-add svg {
  width: 16px;
  height: 16px;
  margin: 0;
  display: block;
}
.card-add:not(.is-pick) svg {
  transform: translateX(-0.5px);
}
.card-add:hover { background: var(--pink); color: #fff; }
.card-add.is-pick {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 0 0 1.5px var(--pink), 0 6px 14px rgba(240, 85, 135, 0.16);
}
.card-add.is-pick:hover { background: var(--pink); color: #fff; }
.card-add:disabled { opacity: .4; cursor: not-allowed; }
.card-body { padding: 10px 10px 12px; }
.card-body h3 { font-size: 0.9rem; color: var(--ink-dark); }
.card-body p { font-size: 0.72rem; margin: 3px 0 6px; }
.price { font-weight: 800; color: var(--pink); }
.price s { color: #9aa3ad; font-weight: 600; margin-left: 6px; font-size: 0.86em; }

.box-slider { position: relative; }
.box-trio {
  display: flex;
  gap: 12px;
  width: auto;
  margin-inline: calc(-1 * var(--pad));
  padding: 4px var(--pad) 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.box-trio::-webkit-scrollbar { display: none; }
.box-trio .box-card {
  flex: 0 0 min(var(--box-max), calc(100% - 40px));
  width: min(var(--box-max), calc(100% - 40px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.box-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.box-slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--pink);
  box-shadow: 0 0 0 1.5px var(--pink), 0 6px 14px rgba(240, 85, 135, 0.16);
}
.box-slider-arrow:hover { background: var(--pink); color: #fff; }
.box-slider-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: 0 0 0 1.5px var(--line);
  color: #9aa3ad;
  background: #fff;
}
.box-slider-dots { display: flex; align-items: center; gap: 8px; }
.box-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 99px;
  background: #e4d4da;
  transition: 0.2s ease;
}
.box-slider-dots button.is-on {
  width: 22px;
  background: var(--pink);
}
.box-card {
  background: linear-gradient(165deg, var(--pink-bg), #fff 55%, var(--blue-bg));
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
}
.box-card.mystery { background: linear-gradient(165deg, #ffe8f0, #fff 50%, #f3e8ff); }
.box-card.diy { background: linear-gradient(165deg, var(--blue-bg), #fff 48%, var(--pink-bg)); }
.box-card img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 16px 12px 0; }
.box-card .copy { padding: 8px 16px 18px; }
.box-card h3 {
  font-family: var(--display); font-size: 1.45rem;
  color: var(--ink-dark); line-height: 1.05; margin: 4px 0 6px;
}
.box-card .what { font-size: 0.88rem; min-height: 2.6em; }
.box-card .price { margin: 10px 0 12px; font-size: 1.2rem; }
.box-card .actions { display: grid; gap: 8px; }

.home-ctas {
  display: grid;
  gap: 32px;
  overflow: visible;
}
.ship-cta,
.news-cta {
  border-radius: 28px;
  color: var(--ink-dark);
  box-shadow: var(--shadow-soft);
}
.ship-cta {
  background: var(--pink-bg);
  padding: 22px 20px 28px;
  display: grid;
  gap: 16px;
  align-items: center;
  overflow: visible;
}
.ship-cta img {
  display: none;
  width: min(200px, 64%);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(240, 85, 135, 0.2));
}
.nowrap { white-space: nowrap; }
.ship-cta .kicker { margin: 0 0 8px; }
.ship-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.4vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-dark);
  margin: 0 0 8px;
}
.ship-cta p:not(.kicker),
.news-cta p {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
}
.news-cta {
  background: linear-gradient(155deg, #c5f4ff 0%, var(--blue-bg) 42%, #f3e8ff 100%);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-cta[hidden] { display: none; }
.news-cta .kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.16em;
  color: var(--pink);
}
.news-form {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}
.news-form input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
}
.news-form input:disabled {
  background: #f3fbfd;
  color: var(--ink);
}
.news-form .btn { min-height: 48px; }
.news-btn-short { display: none; }

.shop-head { padding: 28px 0 8px; }
.shop-head h1 {
  font-family: var(--display); font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--ink-dark);
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0 18px; }
.chip {
  padding: 9px 16px; border-radius: 999px;
  background: var(--pink-bg); font-weight: 800; font-size: 0.86rem;
}
.chip.is-on { background: var(--pink); color: #fff; }

.pdp {
  display: grid;
  gap: 20px;
  padding: 36px 0 56px;
}
.pdp-crumb {
  font-size: 0.82rem;
  font-weight: 700;
  color: #8d8490;
}
.pdp-crumb a { color: var(--pink); font-weight: 800; }
.pdp-gallery {
  display: grid;
  gap: 10px;
  width: min(100%, 400px);
  justify-self: center;
}
.pdp-main {
  background: var(--pink-bg);
  border-radius: 24px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pdp-main img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.thumbs button {
  border-radius: 14px; overflow: hidden; background: var(--blue-bg);
  aspect-ratio: 1; border: 2px solid transparent; padding: 0;
}
.thumbs button.is-on { border-color: var(--pink); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pdp-info {
  width: min(100%, 400px);
  justify-self: center;
  display: grid;
  gap: 20px;
  align-content: start;
}
.pdp-head {
  display: grid;
  gap: 8px;
}
.pdp-titles {
  display: grid;
  gap: 8px;
}
.pdp-titles h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  color: var(--ink-dark);
  line-height: 1.08;
  margin: 0;
}
.pdp-meta { margin: 0; font-size: 0.92rem; font-weight: 600; }
.pdp-price { font-size: 1.5rem; margin: 0; }
.pdp-opts { display: grid; gap: 18px; }
.pdp-opt { display: grid; gap: 8px; }
.pdp-opt-head {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink-dark);
}
.pdp-opt-vals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
}
.pdp-opt-vals button {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink-dark);
  text-align: center;
  transition: background .15s, border-color .15s, color .15s;
}
.pdp-opt-vals button:hover {
  border-color: var(--pink-hover);
  background: var(--pink-bg);
}
.pdp-opt-vals button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}
.pdp-opt-vals button[aria-pressed="true"] {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.pdp-opts.is-need .pdp-opt:not(:has([aria-pressed="true"])) .pdp-opt-vals {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 16px;
}
.pdp-cta {
  display: grid;
  gap: 10px;
}
.pdp-cta .btn { width: 100%; max-width: 400px; min-height: 52px; }
.pdp-cta .notify,
.pdp-cta .notify-on { margin-top: 0; max-width: 400px; }
.pdp-copy {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pdp-body {
  display: grid;
  gap: 12px;
}
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 800; margin: 0; }
.stock i { width: 8px; height: 8px; border-radius: 50%; background: #2bb673; }
.stock.out { color: #8d8490; }
.stock.out i { background: #8d8490; }
.pdp ul { margin: 2px 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.pdp ul li::before { content: "✦ "; color: var(--pink); }
.pdp .all { font-size: 0.8rem; color: #7a8490; margin-top: 4px; }
.pdp-copy .edu { margin-top: 6px; }
.notify {
  margin-top: 14px; padding: 14px; border-radius: 16px; background: var(--pink-bg);
  display: grid; gap: 8px;
}
.notify input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff;
}
.notify input:disabled {
  background: #f6eef1;
  color: var(--ink);
}
.notify-on {
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--blue-bg);
  font-weight: 700;
  color: var(--ink-dark);
}
.notify-on p { margin: 0; }
.notify-on button {
  justify-self: start;
  padding: 0;
  font-weight: 800;
  color: var(--pink);
}
.edu {
  display: grid; gap: 10px; margin: 22px 0 0;
}
.edu article { background: #fff8fa; border-radius: 16px; padding: 14px; }
.edu h3 { font-size: 0.95rem; color: var(--ink-dark); margin-bottom: 4px; }
.related { padding: 8px 0 48px; }
.related h2 {
  width: min(100%, calc(var(--card-max) * 2 + 10px));
  margin: 0 auto 16px;
}

.footer {
  margin-top: auto;
  background: #fff6f8;
  border-top: 1px solid var(--line);
  padding: 40px 0 20px;
}
.foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.foot-brand { grid-column: 1 / -1; }
.foot-logo { height: 44px; width: auto; }
.foot-brand p { margin-top: 8px; max-width: 42ch; }
.foot-col { display: grid; align-content: start; gap: 8px; }
.foot-title {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-dark);
}
.foot-col a:not(.foot-title) {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}
.foot-col a:hover { color: var(--pink); }
.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: #8d8490;
}
.legal a { color: var(--pink); }

.overlay {
  position: fixed; inset: 0; background: rgba(20, 14, 18, .4);
  opacity: 0; pointer-events: none; z-index: 40; transition: .2s;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer, .modal, .sheet { position: fixed; z-index: 50; background: #fff; }
.drawer {
  top: 0; right: 0; width: min(400px, 100%); height: 100%;
  transform: translateX(110%); transition: .28s; display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.modal {
  left: 50%; top: 12vh; width: min(560px, calc(100% - 24px));
  transform: translate(-50%, -8px); border-radius: 22px;
  opacity: 0; pointer-events: none; transition: .2s; box-shadow: var(--shadow);
  overflow: hidden;
}
.modal.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.sheet {
  left: 50%;
  top: 10vh;
  width: min(400px, calc(100% - 24px));
  max-height: min(80vh, 640px);
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.sheet.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.sheet .panel-h { border-bottom: 0; padding: 16px 16px 8px; }
.sheet-body { display: grid; gap: 4px; padding: 0 10px 14px; }
.sheet-body > a,
.sheet-parent {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--ink-dark);
}
.sheet-body > a:hover,
.sheet-parent:hover { background: var(--pink-bg); color: var(--pink); }
.sheet-group { display: grid; gap: 4px; }
.sheet-subs {
  display: grid;
  gap: 2px;
  padding: 6px;
  background: #fff6f8;
  border-radius: 14px;
}
.sheet-subs a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink);
}
.sheet-subs a:hover { background: #fff; color: var(--pink); }
.panel-h { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.panel-h h3 { color: var(--ink-dark); }
.drawer-scroll {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.drawer-body { flex: 1; min-height: 0; overflow-x: hidden; overflow-y: auto; padding: 16px 18px; }
.drawer-scroll.is-more::after,
.drawer-scroll.is-more-up::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 48px;
  pointer-events: none;
  z-index: 1;
}
.drawer-scroll.is-more::after {
  bottom: 0;
  background: linear-gradient(180deg, transparent, #fff 72%);
}
.drawer-scroll.is-more-up::before {
  top: 0;
  background: linear-gradient(0deg, transparent, #fff 72%);
}
.drawer-scroll .co-more {
  bottom: 14px;
}
.drawer-scroll .co-more.is-up {
  top: 14px;
  bottom: auto;
}
.drawer-scroll .co-more.is-up::before {
  margin: 4px auto 0;
  transform: rotate(-135deg);
}
.drawer-foot { padding: 12px 18px 10px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.drawer-keep {
  padding: 2px 0 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  background: none;
  justify-self: center;
}
.drawer-keep:hover { text-decoration: underline; }

.gift {
  background: var(--pink-bg); border-radius: 16px; padding: 12px 14px;
  display: grid; grid-template-columns: 44px 1fr; gap: 10px; align-items: center;
  margin-bottom: 8px;
}
.gift-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff; display: grid; place-items: center; font-size: 1.3rem;
  animation: wiggle 1.6s ease-in-out infinite;
}
.gift.is-done .gift-ico { animation: popgift .6s ease; }
.gift-track { height: 7px; border-radius: 99px; background: #fff; overflow: hidden; margin: 6px 0 4px; }
.gift-fill { height: 100%; width: 0; background: var(--pink); transition: width .35s ease; }
.gift small {
  font-weight: 700; color: var(--ink-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block; font-size: 0.78rem;
}

.line {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.line:last-child { border-bottom: 0; }
.line.is-glow > * { position: relative; z-index: 1; }
.line.is-glow::before,
.line.is-glow::after {
  content: "";
  position: absolute;
  inset: 0 -10px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}
.line.is-glow::before {
  background: var(--pink-bg);
  animation: line-flash 0.9s ease-out 1;
}
.line.is-glow::after {
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.8) 50%, transparent 64%);
  animation: line-gleam 0.7s ease-out 1;
}
@keyframes line-flash {
  0%, 28% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes line-gleam {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.line-img {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: var(--pink-bg);
  overflow: hidden;
}
.line-img img { width: 100%; height: 100%; object-fit: contain; }
.line-info { min-width: 0; display: grid; gap: 8px; }
.line-top,
.line-bot {
  display: flex;
  align-items: center;
  gap: 10px;
}
.line-top { justify-content: space-between; }
.line-each { margin-right: auto; font-size: 0.82rem; color: var(--ink); }
.line-top strong { display: grid; gap: 2px; min-width: 0; color: var(--ink-dark); line-height: 1.3; }
.line-var,
.co-var,
.od-var {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}
.line-top b { color: var(--ink-dark); white-space: nowrap; }
.line-bot button[data-remove] {
  width: 28px; height: 28px;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.qty { display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 30px; height: 30px; }
.qty span { min-width: 22px; text-align: center; font-weight: 800; line-height: 30px; }
.coupon { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.coupon input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 12px;
}
.coupon .btn { min-height: 44px; padding: 0 14px; box-shadow: none; }
.coupon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 22px;
  margin-left: 6px;
  padding: 0 2px 0 8px;
  border-radius: 999px;
  background: var(--pink-bg);
  color: var(--ink-dark);
  font-size: 0.72rem;
  font-weight: 800;
  vertical-align: middle;
}
.coupon-pill button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.95rem;
  line-height: 1;
}
[data-discount-row] > span:first-child,
.co-tot:has(.coupon-pill) > span:first-child {
  display: inline-flex;
  align-items: center;
}
.sum { display: flex; justify-content: space-between; align-items: center; }
.sum[hidden] { display: none !important; }
.sum.total { font-weight: 800; color: var(--ink-dark); font-size: 1.05rem; padding-top: 4px; }
.empty { text-align: center; padding: 36px 10px; }

.search-pad { padding: 18px 20px 12px; }
.search-pad input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 16px;
}
.hits { padding: 4px 8px 16px; max-height: 50vh; overflow: auto; }
.hit { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 12px; }
.hit:hover { background: var(--pink-bg); }
.hit img { width: 56px; height: 56px; object-fit: contain; border-radius: 12px; background: var(--pink-bg); }
.hit small { display: block; font-size: 0.78rem; }
.hit em { font-style: normal; font-weight: 800; color: var(--pink); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 12px);
  background: var(--pink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  z-index: 70;
  transition: 0.2s;
  pointer-events: none;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(240, 85, 135, 0.35);
  cursor: pointer;
}
.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.toast-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #c43d6d;
  transform-origin: left center;
  animation: toast-bar 5.5s linear forwards;
}
@keyframes toast-bar { to { transform: scaleX(0); } }
@keyframes wiggle {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-3px); }
}
@keyframes popgift {
  0% { transform: scale(1); }
  40% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.page-checkout { background: #fff; }
.page-checkout .footer {
  margin-top: 0;
  border-top: 0;
}
.co { display: grid; }
.co-main,
.co-sum-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.co-main { padding: 20px var(--pad) calc(28px + env(safe-area-inset-bottom, 0px)); }
.co-crumb { font-size: 0.82rem; font-weight: 700; color: #8d8490; margin-bottom: 22px; }
.co-crumb a, .co-crumb button { color: var(--pink); font-weight: 800; display: inline; padding: 0; }
.co-block { margin-bottom: 0; padding: 22px 0; }
.co-block + .co-block { border-top: 1px solid #efe8eb; }
.co-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
}
.co-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-dark);
}
.co-head button {
  padding: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
}
.co-auth-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.co-auth-links button + button {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid #d8d0d3;
}
.co-done {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-dark);
}
.co-field {
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-dark);
}
.co-field em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.co-field:last-child { margin-bottom: 0; }
.co-row .co-field { margin-bottom: 0; }
.co-block > input,
.co-block .co-row input,
.co-field input,
.co-ship input,
.co-block textarea {
  width: 100%;
  border: 1px solid #d4cfd2;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #fff;
  color: var(--ink-dark);
}
.co-field input { margin-bottom: 0; font-size: 16px; }
.co-block > input:focus,
.co-block .co-row input:focus,
.co-field input:focus,
.co-ship input:focus,
.co-block textarea:focus {
  border-color: #b9b3b6;
}
.co-block > input.is-bad,
.co-field input.is-bad,
.co-ship input.is-bad { border-color: var(--pink); }
.co-mail-err {
  margin: 6px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
}
.co-mail-err[hidden] { display: none; }
.co-block textarea {
  min-height: 92px;
  resize: vertical;
  font: inherit;
  margin-top: 12px;
  margin-bottom: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff8fa;
}
.co-block textarea[hidden] { display: none; }
.co-note-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-dark);
  cursor: pointer;
  user-select: none;
}
.co-note-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.co-note-check i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: #fff;
  position: relative;
}
.co-note-check i::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.co-note-check input:checked + i {
  background: var(--pink);
  border-color: var(--pink);
}
.co-note-check input:checked + i::after { opacity: 1; }
.co-note-check:hover i { border-color: var(--pink-hover); }
.co-news-check { margin-top: 14px; }
form[data-checkout-form] > .co-block:first-child { padding-top: 4px; }
.co-main .btn-block { margin-top: 8px; }
.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.co-row-zip { grid-template-columns: 0.85fr 1.15fr; }
.co-sum .coupon input { font-size: 16px; min-width: 0; }
.co-ship {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--pink);
  background: #fff8fa;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--ink-dark);
}
.co-ship > span { min-width: 0; }
.co-ship small {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
.co-ship strong { color: var(--ink-dark); font-weight: 800; align-self: center; }
.co-ship [data-checkout-edit] {
  padding: 0;
  font-weight: 800;
  color: var(--pink);
  white-space: nowrap;
}
.co-main .all { margin-top: 12px; font-size: 0.78rem; }
.co-main .all a { color: var(--pink); font-weight: 700; }
.co-sum {
  order: -1;
  background: #faf6f8;
  border-bottom: 1px solid #efe6ea;
  padding: 16px var(--pad) 20px;
}
.co-sum-inner { display: grid; gap: 14px; }
.co-lines-wrap { position: relative; }
.co-lines {
  display: grid;
  gap: 12px;
  max-height: min(38vh, 260px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 8px 4px 2px;
}
.co-lines-wrap.is-more::after,
.co-lines-wrap.is-more-up::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
  z-index: 1;
}
.co-lines-wrap.is-more::after {
  bottom: 0;
  background: linear-gradient(180deg, transparent, #faf6f8 78%);
}
.co-lines-wrap.is-more-up::before {
  top: 0;
  background: linear-gradient(0deg, transparent, #faf6f8 78%);
}
.co-lines-wrap .co-more.is-up {
  top: 8px;
  bottom: auto;
}
.co-lines-wrap .co-more.is-up::before {
  margin: 4px auto 0;
  transform: rotate(-135deg);
}
.co-more {
  position: absolute;
  left: 50%;
  bottom: 2px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  box-shadow: 0 4px 12px rgba(61, 70, 80, 0.14);
  transform: translateX(-50%);
}
.co-more[hidden] { display: none; }
.co-more::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: -3px auto 0;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.co-line { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.co-line span { display: grid; gap: 2px; font-weight: 700; color: var(--ink-dark); font-size: 0.9rem; min-width: 0; overflow-wrap: anywhere; }
.co-line em { font-style: normal; font-weight: 700; color: var(--ink-dark); text-align: right; white-space: nowrap; }
.co-thumb { position: relative; width: 56px; height: 56px; }
.co-thumb img {
  width: 56px; height: 56px; object-fit: contain; border-radius: 10px;
  background: #fff; border: 1px solid #efe6ea;
}
.co-thumb b {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 99px;
  background: #6b6570; color: #fff; font-size: 0.68rem;
  display: grid; place-items: center;
}
.co-tot { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 0.9rem; }
.co-tot > span:last-child,
.co-tot strong { white-space: nowrap; }
.co-tot.is-vat { font-size: 0.8rem; color: var(--ink); }
.co-tot.is-total { font-size: 1.15rem; color: var(--ink-dark); padding-top: 8px; border-top: 1px solid #efe6ea; }
.check-ok { text-align: center; padding: 56px 16px; max-width: 560px; margin: 0 auto; }
.check-ok h1 { font-family: var(--display); color: var(--ink-dark); margin: 8px 0 10px; }

.add-pop {
  position: absolute; z-index: 40; background: #fff; border-radius: 18px;
  box-shadow: 0 18px 40px rgba(61, 70, 80, 0.18);
  padding: 16px; display: grid; gap: 10px; text-align: center;
  pointer-events: auto;
}
.add-pop[hidden] { display: none; }
.add-pop img { width: 88px; height: 88px; object-fit: contain; margin: 0 auto; }
.add-pop strong { display: block; color: var(--ink-dark); }
.add-pop .btn { box-shadow: 0 6px 14px rgba(240, 85, 135, 0.2); }
.add-pop a {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
}
.add-pop-x { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; color: var(--ink); display: grid; place-items: center; }

.account-page { padding: 32px 0 64px; max-width: 760px; }
.account-page.is-order { max-width: 560px; }
.od-back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--pink);
  transition: transform 0.2s;
}
.od-back:hover { transform: translateX(-3px); }
.od-head {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.od-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.account-page .od-head h1 { margin-bottom: 6px; }
.od-head p { font-weight: 600; }
.od-head .btn { width: fit-content; }
.od-status {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-bg);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.od-items { display: grid; gap: 16px; }
.od-block { display: grid; gap: 10px; }
.od-mystery {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 14px 14px 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2a2030 0%, #141018 55%, #1a1218 100%);
  color: #fff8fb;
  text-align: center;
  box-shadow: 0 10px 22px rgba(20, 12, 18, 0.24), inset 0 1px 0 rgba(255,255,255,.08);
}
.od-mystery > .mystery-sparkles { z-index: 0; }
.od-mystery > .mystery-sparkles i:nth-child(n+5) { display: none; }
.od-mystery-shut,
.od-mystery-ask,
.od-mystery-load,
.od-mystery-in { position: relative; z-index: 1; }
.od-mystery-shut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.od-mystery-copy { display: grid; gap: 3px; min-width: 0; }
.od-mystery .kicker { color: #f0c14b; margin-bottom: 4px; font-size: 0.64rem; }
.od-mystery h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff8fb;
  margin: 0 0 10px;
}
.od-mystery-shut .kicker { margin: 0; line-height: 1; }
.od-mystery-shut h3 { margin: 0; }
.od-mystery-meta {
  flex-shrink: 0;
  font-style: normal;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #f0c14b;
  line-height: 1;
}
.od-mystery-meta.is-wait {
  max-width: 11ch;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: right;
  color: rgba(255, 248, 251, 0.55);
}
.od-mystery-ask p:not(.kicker),
.od-mystery-load p {
  margin: 0 auto 12px;
  max-width: 28ch;
  color: rgba(255, 248, 251, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}
.od-mystery .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.8rem;
  border-radius: 12px;
  box-shadow: none;
  flex-shrink: 0;
}
.od-mystery .btn-ghost {
  color: #fff8fb;
  background: transparent;
}
.od-mystery .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}
.od-mystery-acts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.od-mystery-ask,
.od-mystery-load,
.od-mystery-in { display: none; }
.od-mystery.is-ask .od-mystery-shut,
.od-mystery.is-load .od-mystery-shut,
.od-mystery.is-open .od-mystery-shut { display: none; }
.od-mystery.is-ask .od-mystery-ask { display: block; }
.od-mystery.is-load .od-mystery-load {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.od-mystery.is-load .od-mystery-load p { margin: 0; }
.od-mystery.is-open .od-mystery-in { display: block; }
.od-mystery-spin {
  width: 26px;
  height: 26px;
  border: 2.5px solid rgba(255, 255, 255, 0.14);
  border-top-color: #f0c14b;
  border-radius: 50%;
  animation: mystery-spin 0.7s linear infinite;
}
.od-mystery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}
.od-mystery-grid article,
.od-mystery-grid a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: inherit;
}
.od-mystery-grid a:hover { background: rgba(255, 255, 255, 0.12); }
.od-mystery-grid img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.od-mystery-grid span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  min-width: 0;
}
.od-mystery-grid strong {
  min-width: 0;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff8fb;
  line-height: 1.2;
}
.od-mystery-only {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 18px;
  padding: 0 6px 0 7px;
  border-radius: 99px;
  background: linear-gradient(180deg, #ffe58f 0%, #f0c14b 46%, #c99712 100%);
  color: #1a1218;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 3px 8px rgba(201, 151, 18, 0.35);
}
.od-mystery-only svg {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  stroke-width: 2.4;
  position: relative;
  z-index: 1;
}
.od-mystery-only::after {
  content: "";
  position: absolute;
  inset: -30% -50%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.7) 48%, transparent 62%);
  transform: translateX(-70%);
  animation: mystery-gleam 2.4s ease-in-out infinite;
  pointer-events: none;
}
.mo-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(32, 18, 28, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s;
}
.mo-overlay.is-open { opacity: 1; pointer-events: auto; }
.mo-modal {
  position: fixed;
  z-index: 91;
  left: 50%;
  top: 50%;
  width: min(380px, calc(100% - 28px));
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 64px rgba(61, 70, 80, 0.22);
  transform: translate(-50%, calc(-50% + 10px)) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}
.mo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.mo-modal .kicker { margin-bottom: 8px; }
.mo-modal h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.5vw, 1.7rem);
  color: var(--ink-dark);
  line-height: 1.15;
  margin: 0 0 10px;
}
.mo-modal p:not(.kicker) { margin: 0 0 18px; }
.mo-modal .btn { width: 100%; }
.egg-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(32, 18, 28, .48);
  opacity: 0; pointer-events: none; transition: .22s;
}
.egg-overlay.is-open { opacity: 1; pointer-events: auto; }
.egg-modal {
  position: fixed; z-index: 91;
  left: 50%; top: 50%; width: min(400px, calc(100% - 28px));
  transform: translate(-50%, calc(-50% + 10px)) scale(.96);
  background: #fff; border-radius: 28px;
  box-shadow: 0 28px 64px rgba(61, 70, 80, 0.22);
  overflow: hidden;
  opacity: 0; pointer-events: none; transition: .24s ease;
}
.egg-modal.is-open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.egg-top {
  background: linear-gradient(155deg, #ffe1eb 0%, #fff 46%, #e0f5ff 100%);
  padding: 28px 28px 22px;
  text-align: center;
}
.egg-top .kicker { margin-bottom: 10px; }
.egg-off {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 16vw, 4.6rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--pink);
}
.egg-off small {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.egg-body { padding: 22px 26px 26px; text-align: center; }
.egg-body h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.5vw, 1.7rem);
  color: var(--ink-dark);
  line-height: 1.15;
  margin: 0 0 10px;
}
.egg-body p { margin: 0 0 20px; }
.egg-body .btn { width: 100%; }
.od-mystery.is-open .od-mystery-grid > * {
  animation: mystery-pop 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--d);
}
@keyframes mystery-spin { to { transform: rotate(360deg); } }
@keyframes mystery-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.94); }
  to { opacity: 1; transform: none; }
}
@keyframes mystery-gleam {
  0%, 40% { transform: translateX(-70%); }
  75%, 100% { transform: translateX(70%); }
}
@media (prefers-reduced-motion: reduce) {
  .od-mystery-spin { animation: none; border-top-color: #f0c14b; }
  .od-mystery.is-open .od-mystery-grid > * { animation: none; }
  .od-mystery-only::after { animation: none; }
}
@media (max-width: 399px) {
  .od-mystery { padding: 12px 10px 11px; }
  .od-mystery-grid { gap: 5px; }
  .od-mystery-grid article,
  .od-mystery-grid a {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 7px;
    min-height: 46px;
    padding: 5px 6px;
  }
  .od-mystery-grid img { width: 26px; height: 26px; }
  .od-mystery-grid strong { font-size: 0.7rem; }
  .od-mystery-only { height: 16px; font-size: 0.5rem; padding: 0 5px 0 6px; }
  .od-mystery-only svg { width: 9px; height: 9px; }
}
@media (min-width: 520px) {
  .od-mystery-grid { gap: 8px; }
  .od-mystery-grid article,
  .od-mystery-grid a {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 56px;
    padding: 8px 10px;
  }
  .od-mystery-grid img { width: 40px; height: 40px; }
  .od-mystery-grid strong { font-size: 0.8rem; }
}
.od-box {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #efe6ea;
  text-align: left;
}
.od-box-shut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  text-align: left;
}
.od-box-shut h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-dark);
  margin: 0;
}
.od-box .kicker { margin-bottom: 3px; }
.od-box-more {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--pink);
}
.od-box-in { display: none; margin-top: 12px; }
.od-box.is-open .od-box-in { display: block; }
.od-box .od-mystery-grid { margin-top: 0; }
.od-box .od-mystery-grid article,
.od-box .od-mystery-grid a {
  background: #faf6f7;
  border-color: #efe6ea;
}
.od-box .od-mystery-grid a:hover { background: var(--pink-bg); }
.od-box .od-mystery-grid strong { color: var(--ink-dark); }
@media (max-width: 399px) {
  .od-box { padding: 11px 10px; }
  .od-box-shut h3 { font-size: 1.1rem; }
}
.od-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  margin: 0 0 18px;
}
.od-banner strong { display: block; color: var(--ink-dark); margin-bottom: 2px; }
.od-banner p { margin: 0; font-size: 0.9rem; }
.od-banner.is-ok { background: var(--blue-bg, #E0F5FF); }
.od-banner.is-wait { background: var(--pink-bg); }
.od-banner .btn { flex: 0 0 auto; }
@media (max-width: 560px) {
  .od-banner { flex-direction: column; align-items: stretch; }
}
.od-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
}
a.od-line:hover { background: #fff8fa; }
.od-thumb { position: relative; width: 64px; height: 64px; }
.od-thumb img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #efe6ea;
}
.od-thumb b {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 99px;
  background: #6b6570;
  color: #fff;
  font-size: 0.68rem;
  display: grid;
  place-items: center;
}
.od-line span { display: grid; gap: 2px; font-weight: 700; color: var(--ink-dark); min-width: 0; }
.od-line em { font-style: normal; font-weight: 700; color: var(--ink-dark); text-align: right; }
.od-money {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #efe6ea;
  font-size: 0.9rem;
}
.od-money > div { display: flex; justify-content: space-between; gap: 12px; }
.od-money .is-vat { font-size: 0.8rem; color: var(--ink); }
.od-money .is-total {
  padding-top: 8px;
  border-top: 1px solid #efe6ea;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-dark);
}
.od-track, .od-addr { margin-top: 16px; }
.od-track { align-items: center; }
.od-track .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.82rem;
  box-shadow: none;
  flex-shrink: 0;
}
.od-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}
.od-note strong { display: block; margin-bottom: 4px; color: var(--ink-dark); }
.account-page h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--ink-dark);
  margin-bottom: 16px;
}
.acc-list { display: grid; gap: 12px; }
.acc-list .acc-order { margin-top: 0; }
.acc-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.acc-pager .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.82rem;
  box-shadow: none;
}
.acc-pager .btn[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
  transform: none;
}
.acc-pager-status {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  min-width: 4.5em;
  text-align: center;
}
.acc-order-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: #fff;
}
.acc-order-row:hover { background: var(--pink-bg); border-color: transparent; }
.acc-order-row span { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.acc-order-row strong { color: var(--ink-dark); }
.acc-order-row em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-bg);
  padding: 4px 10px;
  border-radius: 999px;
}
.acc-order-row b { color: var(--ink-dark); }
.acc-order-head, .acc-order-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
a.acc-order-head:hover, a.acc-order-foot:hover { color: var(--pink); }
.acc-order-head { margin-bottom: 14px; }
.acc-order-head em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-bg);
  padding: 4px 10px;
  border-radius: 999px;
}
.acc-money {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.acc-money > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.acc-money .is-total {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-weight: 800;
  color: var(--ink-dark);
  font-size: 1.05rem;
}
.acc-track {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.acc-track strong { display: block; margin-bottom: 4px; color: var(--ink-dark); }
.acc-track span {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink-dark);
}
.acc-track em { font-style: normal; color: var(--ink); }
.acc-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.acc-note strong { display: block; margin-bottom: 4px; color: var(--ink-dark); }
.acc-order-foot {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
  color: var(--ink-dark);
}
.account-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.account-card h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink-dark);
  margin: 0 0 12px;
}
.account-card h3 {
  font-size: 1rem;
  color: var(--ink-dark);
  margin: 0 0 10px;
}
.account-card > p { margin: 0 0 14px; }
.acc-order {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 12px;
}
.acc-order header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}
.acc-order header span { display: block; font-size: 0.8rem; color: var(--ink); font-weight: 600; }
.acc-order header em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-bg);
  padding: 4px 10px;
  border-radius: 999px;
}
.acc-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  padding: 4px;
  margin-left: -4px;
  margin-right: -4px;
}
a.acc-line:hover { background: var(--pink-bg); }
.acc-line .od-thumb { width: 56px; height: 56px; }
.acc-line .od-thumb img,
.acc-line img {
  width: 56px; height: 56px; object-fit: contain;
  border-radius: 12px; background: var(--pink-bg);
}
.acc-line span { font-weight: 700; color: var(--ink-dark); }
.acc-line small { display: block; font-weight: 600; color: var(--ink); }
.acc-order footer {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 800;
  color: var(--ink-dark);
}
.acc-alerts { display: grid; gap: 8px; }
.acc-alert {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #fff8fa;
}
.acc-alert img {
  width: 56px; height: 56px; object-fit: contain;
  border-radius: 12px; background: #fff;
}
.acc-alert a { color: inherit; }
.acc-alert span { font-weight: 700; color: var(--ink-dark); }
.acc-alert small { display: block; font-weight: 600; color: var(--ink); }
.acc-alert button {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--pink);
  background: #fff;
}
.account-set { display: grid; gap: 12px; }
.account-set label { display: grid; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--ink-dark); }
.account-set label em { font-style: normal; font-weight: 600; color: var(--ink); }
.account-set input[type="text"],
.account-set input[type="email"],
.account-set input[type="tel"],
.account-set input[type="password"] {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 400;
}
.acc-row { display: grid; gap: 10px; }
.account-set .btn { justify-self: start; min-height: 46px; }
.acc-email-note {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.page-copy { padding: 32px 0 56px; max-width: 760px; }
.page-copy h1 { font-family: var(--display); font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--ink-dark); margin-bottom: 12px; }
.page-copy h2 { font-family: var(--display); font-size: 1.3rem; color: var(--ink-dark); margin: 22px 0 8px; }
.page-copy p, .page-copy li { margin-bottom: 10px; }
.page-copy a { color: var(--pink); font-weight: 700; }
.contact-page { max-width: 860px; }
.contact-page > p { max-width: none; margin-bottom: 28px; }
.contact-grid { display: grid; gap: 20px; align-items: start; }
.contact-form { display: grid; gap: 12px; align-content: start; position: relative; }
.ek-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-row { display: grid; gap: 12px; }
.contact-row > p,
.contact-form > p { display: contents; }
.contact-form label { display: grid; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--ink-dark); }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; font-weight: 400;
}
.contact-form .btn { justify-self: start; }
.contact-aside {
  display: grid;
  gap: 18px;
  align-content: start;
  background: var(--pink-bg);
  border-radius: 18px;
  padding: 20px;
}
.contact-aside strong { display: block; margin-bottom: 4px; color: var(--ink-dark); }
.contact-aside p { margin: 0; }
.contact-aside a { color: var(--pink); font-weight: 800; }

@media (min-width: 700px) {
  .co {
    width: min(var(--max), calc(100% - var(--pad) * 2));
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: calc(100dvh - 78px);
  }
  .co-main {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 24px 48px 0;
  }
  .co-sum {
    order: 0;
    position: relative;
    isolation: isolate;
    background: transparent;
    border-bottom: 0;
    border-left: 1px solid #efe6ea;
    padding: 0;
    min-height: 100%;
  }
  .co-sum::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50vw;
    background: #faf6f8;
    z-index: -1;
  }
  .co-sum-inner {
    display: flex;
    flex-direction: column;
    max-width: none;
    position: sticky;
    top: 78px;
    box-sizing: border-box;
    margin: 0;
    padding: 28px 0 28px 24px;
  }
  .co-lines { max-height: min(44vh, 360px); }
  .co-thumb,
  .co-thumb img { width: 64px; height: 64px; }
  .co-line { grid-template-columns: 64px minmax(0, 1fr) auto; }
}

@media (min-width: 760px) {
  .usp-item p { display: block; font-size: 0.84rem; }
  .grid { grid-template-columns: repeat(3, minmax(0, var(--card-max))); gap: 14px; }
  .related h2 { width: min(100%, calc(var(--card-max) * 3 + 28px)); }
  .box-slider:not(.is-many) .box-trio {
    display: grid;
    width: auto;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    grid-template-columns: repeat(var(--box-n, 3), minmax(0, 1fr));
    gap: 16px;
  }
  .box-slider:not(.is-many) .box-trio .box-card {
    flex: none;
    width: auto;
  }
  .box-slider:not(.is-many) .box-slider-nav { display: none; }
  .ship-cta { grid-template-columns: 180px 1fr; padding: 28px 32px 36px; }
  .ship-cta img { display: block; }
  .news-cta { padding: 28px 32px; }
  .pdp {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    column-gap: 28px;
    row-gap: 16px;
    padding: 48px 0 72px;
  }
  .pdp-crumb { grid-column: 1 / -1; margin-bottom: 8px; }
  .pdp-gallery { width: 100%; max-width: 400px; justify-self: start; }
  .pdp-info { width: 100%; max-width: none; justify-self: stretch; }
  .pdp-cta .btn { min-height: 54px; }
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; gap: 28px; }
  .contact-form { grid-template-columns: 1fr 1fr; }
  .contact-row,
  .contact-form > label:has(textarea),
  .contact-form > .btn {
    grid-column: 1 / -1;
  }
  .contact-row { grid-template-columns: 1fr 1fr; }
  .acc-row { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(2rem, 4.2vw, 2.5rem); }
  .hero-stage { width: min(100%, 400px); }
  .pick-add { width: 34px; height: 34px; }
}

@media (min-width: 980px) {
  :root { --pad: 28px; }
  .home-ctas:has(.news-cta:not([hidden])) {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .home-ctas:has(.news-cta:not([hidden])) .news-cta,
  .home-ctas:has(.news-cta:not([hidden])) .ship-cta {
    padding: 28px;
  }
  .home-ctas:has(.news-cta:not([hidden])) .news-cta { order: -1; }
  .home-ctas:has(.news-cta:not([hidden])) .news-form {
    grid-template-columns: 1fr auto;
    margin-top: 4px;
  }
  .home-ctas:has(.news-cta:not([hidden])) .news-form .btn {
    padding: 0 18px;
    white-space: nowrap;
  }
  .home-ctas:has(.news-cta:not([hidden])) .ship-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-template-columns: 1fr;
  }
  .home-ctas:has(.news-cta:not([hidden])) .ship-cta img { display: none; }
  .bar { grid-template-columns: 1fr auto 1fr; min-height: 92px; }
  .menu-btn { display: none; }
  .desk { display: flex; flex-wrap: wrap; align-items: center; gap: 0; }
  .desk a { padding: 7px 8px; font-weight: 800; font-size: 0.86rem; border-radius: 10px; }
  .desk a.active, .desk a:hover { color: var(--pink); }
  .desk-drop:hover > a { color: var(--pink); }
  .desk-menu a { padding: 8px 12px; font-weight: 700; }
  .brand img { height: 80px; }
  .hero { padding: 8px 0 0; }
  .hero > .wrap { width: min(var(--max), calc(100% - var(--pad) * 2)); }
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    grid-template-areas: "copy shot";
    justify-items: stretch;
    align-items: center;
    min-height: 520px;
    gap: 20px;
  }
  .hero-stage { display: block; }
  .hero-copy {
    align-items: flex-start;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 6.4vw, 3.35rem);
    margin: 14px 0 14px;
  }
  .hero .lead { max-width: 460px; }
  .hero-cta { justify-content: flex-start; margin: 20px 0 0; }
  .hero-stage {
    width: 100%;
    height: 500px;
    aspect-ratio: auto;
    margin: 0;
  }
  .hero-shot-wrap { transform: translate(-50%, -50%) scale(0.9); }
  .pick-add { width: 38px; height: 38px; }
  .usp { grid-template-columns: repeat(var(--usp-n, 4), 1fr); }
  .pdp {
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    column-gap: 48px;
  }
  .pdp-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
  }
  .pdp-price {
    font-size: 1.7rem;
    text-align: right;
  }
  .pdp-opt-vals button { min-height: 44px; padding: 0 18px; }
  .grid { grid-template-columns: repeat(4, minmax(0, var(--card-max))); gap: 16px; }
  .related h2 { width: min(100%, calc(var(--card-max) * 4 + 48px)); }
  .hero-wave { height: 88px; }
  .foot {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
  }
  .foot-brand { grid-column: auto; }
  .co { min-height: calc(100dvh - 92px); }
  .co-main { padding: 40px 36px 64px 0; }
  .co-sum-inner {
    top: 92px;
    padding: 40px 0 40px 36px;
  }
  .section { padding: 72px 0; }
  .section.section-tight { padding: 8px 0 32px; }
  .section-flush { padding-top: 0; }
  .section-home-end { padding-top: 0; padding-bottom: 72px; }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .news-btn-full { display: none; }
  .news-btn-short { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  .gift-ico, .pick-add, .mystery-sparkles i { animation: none !important; }
}
