@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-400.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-500.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-600.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-700.ttf") format("truetype");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-800.ttf") format("truetype");
}

:root {
  --bg: #fbf5f3;
  --bg2: #f6ebee;
  --surface: #ffffff;
  --ink: #1c1419;
  --ink-soft: #5a4f55;
  --muted: #a2949b;
  --line: #f1e6e9;
  --rose: #f0327e;
  --rose-deep: #d31c6a;
  --rose-soft: #ffe7f0;
  --rose-tint: #fff4f8;
  --gold: #ff9f1c;
  --green: #159a5b;
  --shadow: 0 12px 30px -16px rgba(60, 20, 40, .28);
  --shadow-card: 0 8px 22px -14px rgba(60, 20, 40, .2);
  --radius: 22px;
  --body: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
  --display: "Baloo 2", "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  min-height: 100%;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.2vh, 24px) 16px;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(1100px 680px at 18% -10%, #ffe3ee 0%, transparent 56%),
    radial-gradient(900px 640px at 100% 0%, #fff0df 0%, transparent 52%),
    radial-gradient(820px 620px at 50% 112%, #f2d8e0 0%, transparent 56%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.stage-head {
  display: none;
  max-width: 560px;
  margin-bottom: 24px;
  text-align: center;
  animation: rise .7s cubic-bezier(.2, .8, .2, 1) both;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--rose-deep);
  box-shadow: var(--shadow-card);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.kicker b {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.stage-head h1 {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
}

.stage-head p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.phone {
  --desktop-frame-pad: clamp(11px, 1.55vh, 14px);
  --desktop-screen-height: min(900px, calc(100dvh - 34px - var(--desktop-frame-pad) - var(--desktop-frame-pad)));
  width: min(94vw, 480px, 52dvh);
  max-width: 100%;
  position: relative;
  padding: var(--desktop-frame-pad);
  border-radius: clamp(44px, 5.6vh, 58px);
  background: #0e0a0c;
  box-shadow:
    0 48px 105px -34px rgba(45, 8, 28, .58),
    0 22px 46px -24px rgba(240, 50, 126, .34),
    0 0 0 2px rgba(255, 255, 255, .05) inset;
  animation: rise .8s .08s cubic-bezier(.2, .8, .2, 1) both;
}

.screen {
  height: var(--desktop-screen-height);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: clamp(34px, 4.6vh, 46px);
  background: var(--surface);
}

.island {
  width: clamp(104px, 14vh, 132px);
  height: clamp(30px, 4vh, 38px);
  position: absolute;
  top: var(--desktop-frame-pad);
  left: 50%;
  z-index: 85;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0e0a0c;
}

.statusbar {
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 40;
  padding: 14px 26px 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.view {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.view::-webkit-scrollbar,
.nav-drawer::-webkit-scrollbar,
.sr-body::-webkit-scrollbar,
.rail::-webkit-scrollbar,
.rel-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.view,
.nav-drawer,
.sr-body,
.rail,
.rel-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.view,
#app {
  background: var(--surface);
}

.promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  background: linear-gradient(90deg, var(--rose), #ff5fa2);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  transition: background .2s, transform .15s;
}

.icon-btn:active {
  transform: scale(.96);
  background: var(--rose-tint);
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

body[data-route="checkout"] .promo {
  display: none;
}

body[data-route="thank-you"] .promo,
body[data-route="koszonjuk"] .promo,
body[data-route="thank-you"] .site-header,
body[data-route="koszonjuk"] .site-header {
  display: none;
}

body[data-route="checkout"] .site-header [data-action="open-menu"],
body[data-route="checkout"] .site-header [data-action="open-search"] {
  visibility: hidden;
  pointer-events: none;
}

body[data-route="checkout"] .site-header .cart-wrap {
  display: none;
}

body[data-route="checkout"] .site-header .checkout-lock {
  display: grid;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.logo .tag {
  display: none;
  max-width: 154px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 5.8px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo .name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .01em;
}

.logo .sub {
  display: none;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}

.logo .sub span {
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .22em;
}

.logo .sub .brand-line {
  width: 13px;
  flex: 0 0 13px;
  height: 1.5px;
  display: block;
  align-self: center;
  overflow: hidden;
  border-radius: 2px;
  background: var(--rose-soft);
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.heart-dot {
  width: 10px;
  height: 10px;
  display: block;
  flex: 0 0 auto;
  color: var(--rose);
}

.cart-wrap {
  position: relative;
}

.checkout-lock {
  display: none;
  color: #159a5b;
  cursor: default;
}

.badge-cart {
  min-width: 16px;
  height: 16px;
  position: absolute;
  top: 1px;
  right: 1px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

#app {
  flex: 1 0 auto;
  padding-bottom: 0;
}

#app:focus {
  outline: none;
}

.home-pad {
  padding-bottom: 18px;
}

.home-banner {
  display: block;
  margin: 18px 18px 4px;
  overflow: hidden;
  border: 1px solid rgba(233, 213, 221, .86);
  border-radius: 25px;
  background: #fff3f8;
  box-shadow: 0 18px 42px -26px rgba(216, 23, 105, .62);
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-banner:active {
  transform: scale(.985);
  box-shadow: 0 12px 30px -24px rgba(216, 23, 105, .72);
}

.home-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.block {
  padding: 20px 18px 0;
}

.block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.block-head h3 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.02;
}

.block-head a,
.tiny-link {
  border: 0;
  background: transparent;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.occ-tile {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.occ-tile:active,
.occ-tile:hover {
  transform: translateY(-2px);
  border-color: var(--rose-soft);
  box-shadow: var(--shadow);
}

.occ-tile .em {
  font-size: 29px;
}

.occ-tile b {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.15;
}

.rail,
.rel-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 45%;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.rail-card,
.rel-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.rail-card:active,
.rel-card:active,
.rail-card:hover,
.rel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.rail-media,
.rel-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
  padding: 9px;
  background: radial-gradient(120% 100% at 50% 0%, #fff, #fff3f7);
}

.rail-media img,
.rel-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.rb {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  border-radius: 9px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.rail-title,
.rel-title {
  min-height: 48px;
  padding: 10px 10px 0;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.22;
}

.rail-price,
.rel-price {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px 12px;
  color: var(--rose-deep);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.rail-price s,
.rel-price s {
  color: var(--muted);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
}

.spotlight {
  margin: 22px 18px 0;
  position: relative;
  overflow: hidden;
  border-radius: 23px;
  padding: 22px;
  background: linear-gradient(110deg, #1c1419, #3a2030);
  color: #fff;
}

.spotlight::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  background: rgba(240, 50, 126, .34);
}

.spotlight h3 {
  position: relative;
  max-width: 250px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.08;
}

.spotlight p {
  position: relative;
  max-width: 280px;
  margin-top: 10px;
  color: #eadde3;
  font-size: 13px;
  line-height: 1.55;
}

.spotlight button {
  position: relative;
  margin-top: 16px;
  padding: 13px 20px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: transform .15s;
}

.season {
  margin: 20px 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--rose-tint);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.review-strip {
  margin: 20px 18px 0;
  display: grid;
  gap: 10px;
}

.review-bubble {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.review-bubble .stars {
  color: var(--gold);
  letter-spacing: .04em;
  font-size: 12px;
}

.review-bubble p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.review-bubble b {
  color: var(--ink);
  font-size: 12px;
}

.footer {
  margin-top: 20px;
  padding: 28px 22px 24px;
  background: #1c1419;
  color: #fff;
}

.footer .fname {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
}

.footer p {
  margin-top: 10px;
  color: #eadde3;
  font-size: 12.5px;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.footer-links button {
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

.newsletter {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.newsletter input {
  min-height: 43px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  outline: none;
}

.newsletter button {
  min-height: 43px;
  border: 0;
  border-radius: 13px;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
}

.collection-hero,
.page-hero {
  padding: 20px 18px 4px;
}

.crumbs {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.crumbs b {
  color: var(--ink-soft);
}

.collection-hero h1,
.page-hero h1 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.02;
}

.collection-hero .lead,
.page-hero .lead {
  max-width: 310px;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.count {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
}

.toolbar {
  position: sticky;
  top: 62px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 245, 243, .92);
  backdrop-filter: blur(8px);
}

.chip {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 700;
  transition: transform .15s, border-color .15s;
}

.chip:active {
  transform: scale(.97);
  border-color: var(--rose);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  opacity: 0;
  animation: rise .55s cubic-bezier(.2, .8, .2, 1) forwards;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s;
}

.product-card:nth-child(1) { animation-delay: .05s; }
.product-card:nth-child(2) { animation-delay: .12s; }
.product-card:nth-child(3) { animation-delay: .19s; }
.product-card:nth-child(4) { animation-delay: .26s; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 8px;
  background: radial-gradient(120% 100% at 50% 0%, #fff 0%, #fff3f7 100%);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.disc {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.wish {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  color: var(--muted);
  backdrop-filter: blur(4px);
  font-size: 0;
  line-height: 0;
  transition: transform .2s, color .2s, background .2s;
}

.heart-icon,
.wish svg {
  width: 18px;
  height: 18px;
  display: block;
  overflow: visible;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateZ(0);
}

.wish:active {
  transform: scale(.92);
}

.wish.liked,
.wish.on {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.wish.liked svg,
.wish.on svg {
  fill: currentColor;
}

.info {
  display: grid;
  gap: 7px;
  padding: 12px 12px 13px;
}

.stars {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}

.product-title {
  min-height: 48px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.now {
  color: var(--rose-deep);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.was {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: line-through;
}

.product-add {
  width: 100%;
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 13px;
  background: var(--rose);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  transition: transform .15s, background .2s, box-shadow .2s;
}

.product-add:active {
  transform: scale(.98);
}

.pdp {
  padding-bottom: 24px;
}

.gallery {
  position: relative;
  padding: 14px 18px 10px;
}

.main-img {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(120% 100% at 50% 0%, #fff, #fff3f7);
}

.main-img img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-img .disc {
  top: 14px;
  left: 14px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 5px;
  cursor: pointer;
  transition: border-color .18s, transform .18s;
}

.thumb.on {
  border-color: var(--rose);
}

.thumb:active {
  transform: scale(.97);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pinfo {
  padding: 4px 18px 0;
}

.pinfo h1 {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 33px;
  font-weight: 800;
  line-height: 1.03;
}

.rating-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
}

.pprice {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}

.pprice .now {
  font-size: 27px;
}

.save {
  color: var(--green);
}

.variants {
  display: grid;
  gap: 9px;
  padding: 16px 18px 0;
}

.variant {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .15s;
}

.variant:active {
  transform: scale(.99);
}

.variant.on {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.variant .dot {
  width: 18px;
  height: 18px;
  position: relative;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
}

.variant.on .dot {
  border-color: var(--rose);
}

.variant.on .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.variant b {
  font-size: 13.5px;
}

.variant span {
  margin-left: auto;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
}

.qtyrow {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 18px 0;
}

.qty {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.qty button {
  width: 44px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  transition: background .15s;
}

.qty button:active {
  background: var(--rose-tint);
}

.qty span {
  min-width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.stock {
  min-width: 0;
  width: min(100%, 166px);
  justify-self: end;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  overflow: hidden;
}

.stock .led {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #1fbf73;
  box-shadow: 0 0 0 3px rgba(31, 191, 115, .18);
}

.stock-text {
  min-width: 0;
  max-width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 0;
}

.btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 15px;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s, background .2s, box-shadow .2s;
}

.btn:active {
  transform: scale(.985);
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(240, 50, 126, .7);
}

.btn-primary:hover {
  background: var(--rose-deep);
}

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

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 18px;
}

.trust .t {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.trust .t svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  color: var(--rose);
  overflow: visible;
}

.trust .t b {
  font-size: 11px;
  font-weight: 800;
}

.trust .t span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.giftcard {
  margin: 0 18px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(110deg, #1c1419, #3a2030);
  color: #fff;
}

.giftcard::before {
  content: "";
  width: 116px;
  height: 116px;
  position: absolute;
  right: -36px;
  top: -42px;
  border-radius: 50%;
  background: rgba(240, 50, 126, .35);
}

.giftcard b,
.giftcard p {
  position: relative;
}

.giftcard b {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.giftcard p {
  margin-top: 8px;
  color: #eadde3;
  font-size: 12.5px;
  line-height: 1.5;
}

.acc {
  margin: 16px 18px 0;
  border-top: 1px solid var(--line);
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 17px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.acc-head svg {
  color: var(--ink-soft);
  transition: transform .25s;
}

.acc-item.open .acc-head svg {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  transition: max-height .3s ease;
}

.acc-item.open .acc-body {
  max-height: 220px;
  padding-bottom: 16px;
}

.cart-body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px 4px;
}

.cart-layout {
  display: block;
}

.ship {
  margin: 14px 16px 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.ship .st {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}

.ship .st b {
  color: var(--rose-deep);
}

.ship .track {
  height: 8px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--rose-soft);
}

.ship .fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), #ff6fa8);
  transition: width .5s cubic-bezier(.2, .8, .2, 1);
}

.cart-item {
  position: relative;
  display: flex;
  gap: 13px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  animation: rise .4s both;
}

.cart-item .cthumb {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  padding: 5px;
  cursor: zoom-in;
}

.cart-item .cthumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cmain {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ctitle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: zoom-in;
  padding-right: 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ctitle-button:active {
  color: var(--rose-deep);
}

.cvar {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.crow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}

.cqty {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 11px;
}

.cqty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition: background .15s;
}

.cqty button:active {
  background: var(--rose-tint);
}

.cqty span {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.cprice {
  text-align: right;
}

.cn {
  display: block;
  color: var(--rose-deep);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.co {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  text-decoration: line-through;
}

.cremove {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  transition: background .2s, color .2s;
}

.cremove:active {
  background: var(--rose-tint);
  color: var(--rose-deep);
}

.summary,
.checkout-panel {
  margin: 18px 16px 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.ln {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.ln b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
}

.ln.total {
  align-items: baseline;
  color: var(--ink);
}

.ln.save {
  color: var(--green);
}

.sep {
  height: 1px;
  margin: 8px 0;
  background: var(--line);
}

.paytrust {
  padding-top: 15px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.paytrust .pl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.paytrust .pl svg {
  color: var(--green);
}

.pays {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
}

.pay {
  width: 40px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
}

.crosssell {
  padding: 20px 16px 0;
}

.cross-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.xcard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.xm {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 7px;
  background: radial-gradient(120% 100% at 50% 0%, #fff, #fff3f7);
}

.xm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.xt {
  min-height: 38px;
  padding: 8px 9px 0;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
}

.xb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px 10px;
}

.xp {
  color: var(--rose-deep);
  font-family: var(--display);
  font-weight: 600;
}

.xadd {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  transition: transform .18s, background .18s;
}

.xadd:active {
  transform: scale(.94);
}

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 30px;
  text-align: center;
}

.ec {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose);
}

.empty h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}

.empty p {
  max-width: 240px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.co-pad {
  padding: 14px 0 24px;
}

.order-summary {
  margin: 14px 16px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.osum-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: #fff;
  padding: 15px;
  color: var(--ink);
}

.osum-head .l {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}

.osum-head .total {
  color: var(--rose-deep);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.osum-head svg {
  transition: transform .25s;
}

.order-summary.open .osum-head svg {
  transform: rotate(180deg);
}

.osum-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.order-summary.open .osum-body {
  max-height: 500px;
}

.osline {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-top: 1px solid var(--line);
}

.ph {
  width: 46px;
  height: 46px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff3f7;
  padding: 4px;
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qb {
  min-width: 18px;
  height: 18px;
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.nm {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.nm small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
}

.pr {
  color: var(--rose-deep);
  font-family: var(--display);
  font-weight: 600;
}

.ostot {
  padding: 10px 15px 14px;
  border-top: 1px solid var(--line);
}

.express {
  padding: 16px 16px 4px;
}

.xrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.xpay {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s;
}

.xpay:active {
  transform: scale(.98);
}

.xpay.apple {
  background: #111;
  color: #fff;
  border-color: #111;
}

.xpay.gpay {
  background: #fff;
}

.xpay.paypal {
  grid-column: 1 / 3;
  background: #ffc43a;
  color: #1b2a4a;
  border-color: #f4b400;
  font-size: 15px;
  font-style: italic;
}

.codiv {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.codiv::before,
.codiv::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.checkout-form {
  display: block;
}

.section {
  padding: 8px 18px 18px;
}

.section + .section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.sh {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.snum {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 auto;
}

.sh h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  margin: 0 0 6px 3px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 45px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-tint);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.row-pc {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  cursor: pointer;
}

.check input {
  width: 20px;
  height: 20px;
  accent-color: var(--rose);
  flex: 0 0 auto;
  margin-top: 2px;
}

.check span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.opt {
  display: block;
  margin-bottom: 10px;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .15s;
}

.opt:active {
  transform: scale(.99);
}

.opt.on {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.opt-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.opt .dot {
  width: 19px;
  height: 19px;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.opt.on .dot {
  border-color: var(--rose);
}

.opt.on .dot::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.opt b {
  font-size: 13.5px;
}

.opt p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}

.opt .cost {
  margin-left: auto;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 800;
}

.co-cta {
  margin-bottom: 18px;
}

.co-cta .button {
  width: 100%;
  margin-top: 12px;
}

.co-cta .tiny-link {
  display: none;
  margin-top: 12px;
  text-align: center;
}

.checkout-message {
  margin: 0 18px 12px;
  padding: 11px 12px;
  border: 1px solid #fac4d8;
  border-radius: 13px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
}

.confirm {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 22px 28px;
  text-align: center;
}

.okmark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  box-shadow: 0 18px 36px -18px rgba(240, 50, 126, .75);
  animation: pop .5s cubic-bezier(.2, 1.4, .5, 1) both;
}

.confirm h1 {
  margin-top: 22px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
}

.confirm p {
  max-width: 300px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.cf-card {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.cf-card .ln {
  font-size: 12.5px;
}

.page-card {
  margin: 16px 18px 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.page-card h2 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.page-card h2:first-child {
  margin-top: 0;
}

.page-card p,
.page-card li {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.page-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.nav-scrim {
  position: absolute;
  inset: 0;
  z-index: 70;
  background: rgba(20, 8, 14, .5);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity .28s;
}

.nav-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 71;
  width: 85%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-radius: 0 30px 30px 0;
  background: #fff;
  transform: translateX(-102%);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), box-shadow .2s;
}

.nav-drawer.open {
  transform: translateX(0);
  box-shadow: 24px 0 50px -20px rgba(40, 10, 25, .5);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.nav-top .name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.nav-top .name small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.nav-x {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: var(--rose-tint);
  color: var(--ink);
}

.nav-main {
  padding: 14px 12px 6px;
}

.nav-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  transition: background .15s;
}

.nav-row:active {
  background: var(--rose-tint);
}

.nav-row .lft {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-row .em {
  width: 24px;
  font-size: 18px;
  text-align: center;
}

.nav-row.feat {
  color: var(--rose-deep);
}

.nav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 16px 14px;
}

.nav-chips button {
  border: 0;
  border-radius: 999px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 700;
}

.nav-div {
  height: 1px;
  margin: 6px 16px;
  background: var(--line);
}

.nav-sec h6 {
  padding: 14px 24px 4px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-mini {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 24px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.nav-mini:active {
  background: var(--rose-tint);
}

.nav-mini .cnt {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
}

.sr {
  position: absolute;
  inset: 0;
  z-index: 72;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .22s, transform .22s;
}

.sr.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.sr-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.sr-input:focus-within {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-tint);
}

.sr-input svg {
  color: var(--muted);
  flex: 0 0 auto;
}

.sr-input input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-size: 14.5px;
  font-weight: 600;
}

.sr-cancel {
  border: 0;
  background: transparent;
  color: var(--rose-deep);
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
}

.sr-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.sr-lbl {
  margin: 4px 2px 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.sr-chips button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
}

.sr-res {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sr-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.sr-item:active {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.sr-item .th {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: radial-gradient(120% 100% at 50% 0%, #fff, #fff3f7);
  padding: 4px;
}

.sr-item .th img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sr-item .nm {
  flex: 1;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}

.sr-item .pr {
  color: var(--rose-deep);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.sr-empty {
  padding: 50px 24px;
  color: var(--ink-soft);
  text-align: center;
}

.sr-empty .ee {
  font-size: 38px;
}

.cookie {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 75;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 44px -18px rgba(40, 10, 25, .5);
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.cookie.show {
  transform: translateY(0);
}

.cookie .ct {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.cookie .ce {
  font-size: 24px;
  flex: 0 0 auto;
}

.cookie .ct b {
  font-size: 14px;
  font-weight: 800;
}

.cookie .ct p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11.5px;
  line-height: 1.5;
}

.cookie .ct p a {
  color: var(--rose-deep);
  font-weight: 700;
}

.cookie .cbtns {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

.cookie .cbtns button {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  font-size: 12.5px;
  font-weight: 800;
  transition: transform .15s;
}

.cookie .cbtns button:active {
  transform: scale(.97);
}

.cookie .cbtns .acc-all {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.cookie .cset {
  display: block;
  width: 100%;
  margin-top: 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
}

.toast {
  position: absolute;
  left: 50%;
  top: 64px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 170px;
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -20px);
  transition: opacity .25s, transform .25s;
  font-size: 12.5px;
  font-weight: 800;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  color: #5be39a;
}

.image-modal {
  position: absolute;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 20, 25, .42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.image-modal__card {
  width: min(100%, 310px);
  position: relative;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 24px;
  background: #fff;
  padding: 18px 18px 16px;
  box-shadow: 0 28px 60px -24px rgba(28, 20, 25, .55);
  transform: translateY(12px) scale(.96);
  transition: transform .24s cubic-bezier(.2, .8, .2, 1);
}

.image-modal.open .image-modal__card {
  transform: translateY(0) scale(1);
}

.image-modal__close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.image-modal__card img {
  width: 100%;
  max-height: 270px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.image-modal__title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.media-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 8px;
  text-decoration: none;
}

.media-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.block .product-grid {
  padding: 0;
}

.button:not(.btn) {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 15px;
  padding: 15px;
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(240, 50, 126, .7);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s, background .2s, box-shadow .2s;
}

.button:not(.btn):active {
  transform: scale(.985);
}

.button.secondary:not(.btn) {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.button.is-disabled,
.btn.is-disabled {
  opacity: .6;
  pointer-events: none;
}

.page-shell {
  padding-bottom: 22px;
}

.page-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.02;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.collection-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 38px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
}

.toolbar {
  align-items: stretch;
}

.filter-row {
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-row .chip {
  flex: 0 0 auto;
  min-width: max-content;
  padding-inline: 13px;
  text-decoration: none;
}

.chip.is-active {
  border-color: var(--rose);
  background: var(--rose-tint);
  color: var(--rose-deep);
}

.select {
  width: 136px;
  min-height: 43px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  outline: none;
}

.search-input {
  width: calc(100% - 32px);
  min-height: 45px;
  display: block;
  margin: 12px 16px 2px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  font-size: 13.5px;
  font-weight: 700;
  outline: none;
}

.search-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-tint);
}

.load-more-wrap {
  padding: 2px 16px 18px;
}

.variant-picker {
  display: grid;
  gap: 11px;
  padding: 14px 18px 0;
}

.variant input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.variant .dot {
  margin-left: 0;
}

.variant > span:last-child:not(.dot) {
  margin-left: auto;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
}

.variant:has(input:checked) {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.variant:has(input:checked) .dot {
  border-color: var(--rose);
}

.variant:has(input:checked) .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.option-group {
  display: grid;
  gap: 8px;
}

.option-label {
  margin-left: 3px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.option-pills {
  display: grid;
  gap: 8px;
}

.option-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
}

.option-pill input {
  accent-color: var(--rose);
}

.option-pill:has(input:checked) {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.personalization-box {
  margin: 14px 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.personalization-box h2 {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.personalization-box p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.5;
}

.personalization-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.qty input {
  width: 46px;
  min-height: 46px;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: var(--rose);
  background: var(--rose-tint);
  box-shadow: 0 0 0 3px rgba(240, 50, 126, .08);
}

.field-error {
  display: block;
  margin: 6px 2px 0;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}

.field-error[hidden] {
  display: none !important;
}

.checkout-layout {
  padding-bottom: 18px;
}

.checkout-panel h2,
.summary-card h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.radio-grid {
  display: grid;
  gap: 10px;
  margin: 2px 0 10px;
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.radio-card > span {
  min-width: 0;
  flex: 1 1 auto;
}

.radio-card input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--rose);
}

.radio-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.radio-price {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f5f2f4;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.radio-price:empty {
  display: none;
}

.radio-card:has(input:checked) {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.radio-card.is-disabled {
  opacity: .55;
}

.payment-choice {
  display: grid;
  gap: 0;
}

.payment-choice.is-disabled {
  opacity: .62;
}

.packeta-picker-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.packeta-picker-row input[readonly] {
  background: #fff;
  cursor: default;
}

.packeta-picker-button {
  min-height: 44px;
  white-space: nowrap;
}

.packeta-selected {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 157, 85, .22);
  border-radius: 12px;
  background: #f1fbf5;
  color: #14532d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.packeta-modal {
  position: absolute;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.packeta-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 20, 25, .18);
  opacity: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity .18s ease;
}

.packeta-modal.open {
  pointer-events: auto;
}

.packeta-modal.open .packeta-modal__backdrop {
  opacity: 1;
}

.packeta-sheet {
  position: relative;
  width: 100%;
  max-height: calc(100% - 42px);
  min-height: min(680px, 70%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(241, 230, 233, .96);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: #fff;
  box-shadow: 0 -18px 48px -24px rgba(28, 20, 25, .42);
  transform: translateY(22px);
  opacity: 0;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), opacity .18s ease;
}

.packeta-modal.open .packeta-sheet {
  transform: translateY(0);
  opacity: 1;
}

.packeta-sheet__handle {
  width: 42px;
  height: 5px;
  flex: 0 0 auto;
  margin: 10px auto 4px;
  border-radius: 999px;
  background: #e8dde1;
}

.packeta-sheet__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 16px 12px;
}

.packeta-sheet__head span {
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.packeta-sheet__head h3 {
  margin-top: 2px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.packeta-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.packeta-search-box {
  margin: 0 14px;
  min-height: 48px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff8fb;
  color: var(--muted);
}

.packeta-search-box input {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.packeta-search-box input::placeholder {
  color: #9c8f96;
}

.packeta-sheet__meta {
  flex: 0 0 auto;
  padding: 10px 17px 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.packeta-sheet__body {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 12px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.packeta-sheet__body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.packeta-point-list {
  display: grid;
  gap: 9px;
}

.packeta-point-card {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 22px -19px rgba(28, 20, 25, .42);
}

.packeta-point-card:active {
  transform: scale(.985);
}

.packeta-point-card[disabled] {
  opacity: .62;
}

.packeta-point-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff4f2;
  color: #d9291c;
  box-shadow: inset 0 0 0 1px rgba(217, 41, 28, .08);
}

.packeta-point-icon .packeta-mark {
  width: 24px;
  height: 24px;
  display: block;
}

.packeta-point-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.packeta-point-main strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.packeta-point-main small,
.packeta-point-side small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.packeta-point-side {
  max-width: 84px;
  display: grid;
  justify-items: end;
  gap: 4px;
}

.packeta-point-side em {
  padding: 4px 7px;
  border-radius: 999px;
  background: #f7f1f3;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 9.5px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.packeta-picker-status {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 26px 18px;
  border: 1px dashed #eadce1;
  border-radius: 20px;
  background: #fffafd;
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.packeta-picker-status.is-error {
  color: var(--rose-deep);
}

.packeta-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #f2dbe4;
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.checkout-note,
.free-shipping {
  margin: 10px 0 14px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.free-shipping.is-warning {
  color: var(--rose-deep);
}

.stripe-payment-panel {
  border-color: rgba(240, 50, 126, .28);
  background: linear-gradient(180deg, #fff, #fff8fb);
}

.stripe-inline-panel {
  margin-top: -1px;
  padding: 12px;
  border: 1.5px solid var(--rose);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: var(--rose-tint);
}

.payment-choice.has-stripe-panel .radio-card:has(input:checked) {
  border-radius: 15px 15px 0 0;
}

.stripe-payment-panel p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

.stripe-element-box {
  min-height: 128px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.stripe-inline-loading {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px;
  border: 1px dashed #efd9e1;
  border-radius: 14px;
  background: #fff;
  color: var(--ink-soft);
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.wallet-prepay {
  margin: 10px 16px 0;
}

.wallet-prepay-frame {
  min-height: 50px;
  display: grid;
  align-items: center;
}

.button-spinner {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 9px;
  border: 2.5px solid rgba(255, 255, 255, .48);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -3px;
  animation: spin .75s linear infinite;
}

.stripe-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.summary-card .btn {
  margin-top: 12px;
}

.checkout-message {
  margin: 10px 0 12px;
  padding: 12px;
  border-radius: 13px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-message[hidden],
.shipping-point-field[hidden],
.packeta-selected[hidden],
.status-result[hidden],
[hidden] {
  display: none !important;
}

.content-panel {
  margin: 18px 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.content-panel h1,
.content-panel h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.content-panel .lead,
.lead {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.confirm-page {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 42px 26px;
  overflow-y: auto;
}

.confirm-check {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: var(--rose-tint);
  animation: confirm-pop .5s cubic-bezier(.2, 1.4, .5, 1) both;
}

.confirm-check svg {
  width: 48px;
  height: 48px;
  stroke-width: 2.2;
}

@keyframes confirm-pop {
  from {
    opacity: 0;
    transform: scale(.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.confirm-page h1 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.08;
}

.confirm-page .lead {
  max-width: 300px;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.55;
}

.confirm-order-number {
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--rose-deep);
  background: var(--rose-soft);
  font-size: 12px;
  font-weight: 800;
}

.confirm-recap {
  width: 100%;
  max-width: 330px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.confirm-recap .ln {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
}

.confirm-recap .ln b {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.confirm-recap .sep {
  height: 1px;
  margin: 6px 0;
  background: var(--line);
}

.confirm-main-action {
  width: 100%;
  max-width: 330px;
  margin-top: 24px;
  padding: 15px;
  border-radius: 15px;
}

body[data-route="thank-you"] #app,
body[data-route="koszonjuk"] #app,
body[data-route="thank-you"] .page-shell,
body[data-route="koszonjuk"] .page-shell {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  padding-bottom: 0;
}

.support-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.support-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.support-card p,
.support-card li,
.legal-body {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.legal-body {
  margin-top: 14px;
}

.legal-body h2,
.legal-body h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
}

.legal-body ul {
  padding-left: 18px;
}

.contact-form {
  margin-top: 16px;
}

.status-result {
  padding: 0 16px 18px;
}

.status-card {
  margin-inline: 0;
}

.status-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.status-chip {
  height: fit-content;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.status-timeline {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.status-step {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12.5px;
}

.status-step span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--line);
}

.status-step.is-done {
  color: var(--green);
}

.status-step.is-done span {
  border-color: var(--green);
  background: var(--green);
}

.status-tracking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--rose-tint);
}

.status-tracking span,
.status-tracking em {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.status-tracking strong {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.status-track-link {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .status-tracking {
    align-items: stretch;
    flex-direction: column;
  }

  .status-track-link {
    justify-content: center;
    width: 100%;
  }
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.status-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--rose-tint);
}

.status-grid span,
.status-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.status-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.status-items {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.status-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.status-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-chips a,
.nav-mini {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.nav-mini {
  width: calc(100% - 32px);
  margin: 4px 16px;
  justify-content: space-between;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
}

.footer-links a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.sr-empty {
  display: grid;
  gap: 8px;
  padding: 26px 18px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

.sr-empty h1,
.sr-empty b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.nav-row,
.product-title,
.rail-card,
.rel-card,
.occ-tile,
.media-link,
.logo {
  text-decoration: none;
}

/* Readability mode. Restore the original scale by changing body data-density to "original". */
body[data-density="readable"] .promo {
  font-size: 11.5px;
}

body[data-density="readable"] .collection-hero .lead,
body[data-density="readable"] .page-hero .lead {
  font-size: 14px;
  line-height: 1.48;
}

body[data-density="readable"] .count,
body[data-density="readable"] .collection-stat {
  font-size: 12.5px;
}

body[data-density="readable"] .chip {
  min-height: 44px;
  padding: 11px 13px;
  font-size: 13.5px;
}

body[data-density="readable"] .occ-tile {
  min-height: 112px;
}

body[data-density="readable"] .occ-tile b {
  font-size: 15px;
  font-weight: 800;
}

body[data-density="readable"] .rail-title,
body[data-density="readable"] .rel-title {
  min-height: 50px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.24;
}

body[data-density="readable"] .rail-price,
body[data-density="readable"] .rel-price {
  font-size: 17px;
}

body[data-density="readable"] .product-card .info {
  gap: 8px;
  padding: 13px;
}

body[data-density="readable"] .product-card .stars {
  font-size: 12px;
  letter-spacing: 0;
}

body[data-density="readable"] .product-title {
  min-height: 50px;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.24;
}

body[data-density="readable"] .product-card .now {
  font-size: 20px;
}

body[data-density="readable"] .was,
body[data-density="readable"] .rail-price s,
body[data-density="readable"] .rel-price s {
  font-size: 11.5px;
}

body[data-density="readable"] .product-add {
  min-height: 44px;
  font-size: 13.5px;
}

body[data-density="readable"] .rating-line {
  font-size: 13px;
}

body[data-density="readable"] .trust .t {
  padding: 15px 6px;
}

body[data-density="readable"] .trust .t b {
  font-size: 12px;
}

body[data-density="readable"] .trust .t span {
  font-size: 11px;
}

body[data-density="readable"] .giftcard p,
body[data-density="readable"] .acc-body,
body[data-density="readable"] .review-bubble p,
body[data-density="readable"] .spotlight p,
body[data-density="readable"] .season {
  font-size: 13.5px;
}

body[data-density="readable"] .cart-item {
  gap: 14px;
  padding: 13px;
}

body[data-density="readable"] .ctitle {
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.24;
}

body[data-density="readable"] .cvar {
  font-size: 12px;
  line-height: 1.35;
}

body[data-density="readable"] .cqty button {
  width: 34px;
  height: 34px;
}

body[data-density="readable"] .cqty span {
  min-width: 30px;
  font-size: 13.5px;
}

body[data-density="readable"] .cn {
  font-size: 19px;
}

body[data-density="readable"] .co {
  font-size: 11.5px;
}

body[data-density="readable"] .ln {
  font-size: 13.5px;
}

body[data-density="readable"] .paytrust .pl,
body[data-density="readable"] .checkout-note,
body[data-density="readable"] .free-shipping {
  font-size: 13px;
}

body[data-density="readable"] .osum-head .l,
body[data-density="readable"] .xpay,
body[data-density="readable"] .radio-card {
  font-size: 14px;
}

body[data-density="readable"] .nm {
  font-size: 13px;
}

body[data-density="readable"] .nm small,
body[data-density="readable"] .radio-card small,
body[data-density="readable"] .opt p {
  font-size: 12px;
  line-height: 1.35;
}

body[data-density="readable"] .field label {
  font-size: 12px;
}

body[data-density="readable"] .field input,
body[data-density="readable"] .field select,
body[data-density="readable"] .field textarea {
  min-height: 47px;
  font-size: 14px;
}

body[data-density="readable"] .opt b {
  font-size: 14px;
}

body[data-density="readable"] .check span {
  font-size: 13px;
}

body[data-density="readable"] .button:not(.btn) {
  min-height: 47px;
  font-size: 14.5px;
}

body[data-density="readable"] .confirm-recap .ln {
  font-size: 12.5px;
}

body[data-density="readable"] .confirm-recap .ln b {
  font-size: 12.5px;
  font-weight: 800;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 520px) {
  body {
    display: block;
    min-height: 100dvh;
    padding: 0;
    background: var(--surface);
  }

  .stage-head,
  .island,
  .statusbar {
    display: none;
  }

  .phone {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    padding: 0;
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
    animation: none;
  }

  .screen {
    min-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
  }

  .packeta-picker-row {
    grid-template-columns: 1fr;
  }

  .packeta-picker-button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .home-banner {
    margin-inline: 12px;
    border-radius: 22px;
  }

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

  .grid {
    gap: 10px;
    padding-inline: 12px;
  }

  .rail,
  .rel-scroll {
    grid-auto-columns: 48%;
  }
}
