:root {
  --ink: #251b21;
  --ink-soft: #6f6269;
  --paper: #fffaf7;
  --surface: #ffffff;
  --pink: #ff6f9f;
  --pink-dark: #e94c83;
  --pink-soft: #ffe4ed;
  --pink-pale: #fff0f5;
  --cream: #fff1cf;
  --red: #f15c55;
  --lavender: #d9ceff;
  --mint: #cceee2;
  --yellow: #ffd96a;
  --border: #eadde2;
  --success: #288368;
  --warning: #b56b1a;
  --shadow: 0 16px 46px rgba(104, 52, 75, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1220px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(255, 111, 159, 0.07), transparent 23rem),
    var(--paper);
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(234, 221, 226, 0.9);
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: 16px; letter-spacing: -0.03em; }
.brand small { margin-top: 3px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: 0.15em; }

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 34px;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 18px;
  border: 2px solid var(--ink);
  background: var(--pink);
}
.brand-mark::before { left: 0; transform: rotate(28deg); border-radius: 65% 38% 55% 35%; }
.brand-mark::after { right: 0; transform: rotate(-28deg); border-radius: 38% 65% 35% 55%; }
.brand-mark i { z-index: 1; width: 15px; height: 19px; border: 2px solid var(--ink); border-radius: 50%; background: white; }
.brand-mark b { position: absolute; z-index: 2; font-size: 9px; font-style: normal; }

.desktop-nav { display: flex; align-items: center; gap: 34px; height: 78px; }
.nav-link { position: relative; display: flex; align-items: center; gap: 7px; height: 100%; color: var(--ink-soft); font-size: 13px; font-weight: 750; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--pink); transform: scaleX(0); transition: transform 180ms ease; }
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { transform: scaleX(1); }
.nav-count { display: grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; color: white; background: var(--pink); font-size: 10px; }

.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: white; cursor: pointer; }
.icon-button svg, .search-box svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #2d1821; border-color: var(--ink); background: var(--pink); box-shadow: 3px 3px 0 var(--ink); }
.button-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.button-dark { color: white; background: var(--ink); box-shadow: 0 7px 18px rgba(37, 27, 33, 0.2); }
.button-light { background: white; }
.text-button { padding: 8px 3px; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; font-size: 13px; font-weight: 750; cursor: pointer; }

.eyebrow { margin: 0 0 12px; color: var(--pink-dark); font-size: 10px; font-weight: 900; letter-spacing: 0.17em; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px var(--pink-soft); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  min-height: 610px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 72px;
}
.hero-copy { padding-left: clamp(0px, 4vw, 52px); }
.hero h1 { max-width: 680px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6vw, 79px); font-weight: 500; line-height: 0.94; letter-spacing: -0.062em; }
.hero h1 em { position: relative; color: var(--pink-dark); font-weight: 500; }
.hero h1 em::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 4px; height: 8px; border-top: 3px solid var(--pink); border-radius: 50%; transform: rotate(-2deg); }
.hero-intro { max-width: 530px; margin: 28px 0 25px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.hero-stats { display: flex; gap: 32px; margin-top: 45px; }
.hero-stats div { display: flex; flex-direction: column; min-width: 76px; }
.hero-stats strong { font-family: Georgia, serif; font-size: 28px; }
.hero-stats span { margin-top: 2px; color: var(--ink-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

.hero-art {
  position: relative;
  justify-self: center;
  width: min(440px, 42vw);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,.21) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.21) 1px, transparent 1px),
    radial-gradient(circle, #ff9abb, var(--pink));
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: 12px 14px 0 var(--pink-soft), var(--shadow);
  overflow: hidden;
}
.hero-art::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 54%; height: 2px; background: linear-gradient(90deg, transparent, rgba(37,27,33,.33)); transform-origin: left; animation: radar 5s linear infinite; }
.hero-label { position: absolute; z-index: 3; top: 42px; left: -1px; padding: 9px 22px; border: 2px solid var(--ink); border-left: 0; border-radius: 0 18px 18px 0; background: var(--cream); font-size: 10px; font-weight: 900; letter-spacing: 0.14em; transform: rotate(-5deg); }
.radar-orbit { position: absolute; border: 1px dashed rgba(37,27,33,.4); border-radius: 50%; }
.orbit-one { inset: 20%; }
.orbit-two { inset: 35%; }
.radar-center { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 74px; height: 74px; border: 2px solid var(--ink); border-radius: 50%; background: white; transform: translate(-50%, -50%); box-shadow: 5px 6px 0 rgba(37,27,33,.15); }
.radar-center span { font-size: 28px; }
.radar-center i { position: absolute; width: 9px; height: 9px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); transform: translate(95px, -72px); }
.floating-tag { position: absolute; z-index: 3; padding: 7px 10px; border: 2px solid var(--ink); border-radius: 8px; background: white; font-size: 11px; font-weight: 900; box-shadow: 3px 3px 0 var(--ink); }
.tag-one { right: 48px; top: 78px; transform: rotate(8deg); }
.tag-two { bottom: 60px; left: 62px; color: white; background: var(--red); transform: rotate(-8deg); }
.floating-star { position: absolute; font-size: 26px; }
.star-one { top: 32%; left: 14%; }
.star-two { right: 17%; bottom: 32%; font-size: 38px; }

.bow { position: relative; width: 88px; height: 58px; }
.bow i, .bow b { position: absolute; top: 8px; width: 45px; height: 39px; border: 2px solid var(--ink); background: var(--red); }
.bow i { left: 0; border-radius: 70% 30% 55% 35%; transform: rotate(17deg); }
.bow b { right: 0; border-radius: 30% 70% 35% 55%; transform: rotate(-17deg); }
.bow span { position: absolute; z-index: 2; top: 14px; left: 34px; width: 25px; height: 31px; border: 2px solid var(--ink); border-radius: 50%; background: var(--cream); }
.bow-large { position: absolute; z-index: 4; right: 57px; bottom: 53px; transform: scale(1.08) rotate(-13deg); }

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

.store-switcher, .catalogue, .store-directory { max-width: var(--max); margin: 0 auto; padding: 76px 24px; }
.store-switcher { padding-top: 35px; border-top: 1px solid var(--border); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 30px; }
.section-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 50px); font-weight: 500; letter-spacing: -0.045em; }
.section-heading > p { max-width: 430px; margin: 0 0 5px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.compact-heading { margin-bottom: 20px; }

.store-tabs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.store-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  text-align: left;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.store-tab:hover { transform: translateY(-3px); box-shadow: 0 9px 20px rgba(104, 52, 75, 0.08); }
.store-tab.is-active { border: 2px solid var(--ink); background: var(--pink-pale); box-shadow: 4px 4px 0 var(--ink); }
.store-tab-icon { display: grid; flex: 0 0 40px; place-items: center; width: 40px; height: 40px; border: 1.5px solid var(--ink); border-radius: 13px; font-family: Georgia, serif; font-size: 16px; font-weight: 900; }
.all-icon { background: var(--pink-soft); }
.temu-icon { color: white; background: #f06a24; }
.ali-icon { color: white; background: #e94235; }
.serbia-icon { color: white; background: #3f62ad; font: 900 10px Inter, sans-serif; }
.online-icon { background: var(--lavender); }
.add-icon { background: var(--yellow); }
.store-tab span:last-child { display: flex; min-width: 0; flex-direction: column; }
.store-tab b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.store-tab small { overflow: hidden; margin-top: 4px; color: var(--ink-soft); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }

.catalogue { padding-top: 78px; }
.catalogue-heading { margin-bottom: 22px; }
#results-summary { color: var(--ink-soft); font-size: 12px; }
.filter-bar { display: flex; align-items: center; gap: 9px; padding: 10px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.78); }
.search-box { display: flex; flex: 1; align-items: center; gap: 10px; min-width: 200px; padding: 0 10px; }
.search-box input { width: 100%; height: 40px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #a3979c; }
.search-box kbd { padding: 3px 7px; border: 1px solid var(--border); border-radius: 6px; color: var(--ink-soft); background: var(--paper); font-size: 9px; }
.select-control select, .filter-button { height: 40px; padding: 0 13px; border: 1px solid var(--border); border-radius: 10px; color: var(--ink); background: white; font-size: 11px; font-weight: 750; cursor: pointer; }
.filter-button[aria-pressed="true"] { border-color: var(--ink); color: white; background: var(--ink); }

.category-row { display: flex; gap: 8px; margin: 17px 0 23px; overflow-x: auto; scrollbar-width: none; }
.category-row::-webkit-scrollbar { display: none; }
.category-chip { flex: 0 0 auto; padding: 8px 13px; border: 1px solid var(--border); border-radius: 999px; color: var(--ink-soft); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.category-chip.is-active { border-color: var(--pink); color: var(--ink); background: var(--pink-soft); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.product-card { position: relative; min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; transition: transform 180ms ease, box-shadow 180ms ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-visual { position: relative; display: grid; place-items: center; aspect-ratio: 1.08; overflow: hidden; background: var(--visual-bg, var(--pink-soft)); cursor: pointer; }
.product-visual::before { content: ""; position: absolute; inset: 14px; border: 1px dashed rgba(37, 27, 33, .17); border-radius: 50%; }
.product-visual::after { content: "✦"; position: absolute; right: 18px; bottom: 12px; color: rgba(37,27,33,.28); font-size: 27px; }
.product-shape { position: relative; z-index: 1; display: grid; place-items: center; width: 106px; height: 106px; border: 2px solid var(--ink); border-radius: 31% 47% 37% 45%; background: rgba(255,255,255,.88); box-shadow: 7px 8px 0 rgba(37,27,33,.12); transform: rotate(-4deg); }
.product-shape span { font-family: Georgia, serif; font-size: 27px; font-weight: 800; transform: rotate(4deg); }
.product-shape b { position: absolute; top: -9px; right: -12px; display: grid; place-items: center; width: 37px; height: 29px; border: 2px solid var(--ink); border-radius: 55% 35% 50% 35%; background: var(--pink); font-size: 16px; transform: rotate(13deg); }
.product-shape[data-shape="mug"] { width: 94px; height: 104px; border-radius: 11px 11px 25px 25px; }
.product-shape[data-shape="mug"]::after { content: ""; position: absolute; right: -31px; top: 22px; width: 34px; height: 43px; border: 8px solid white; border-left: 0; border-radius: 0 45% 45% 0; filter: drop-shadow(2px 0 0 var(--ink)); }
.product-shape[data-shape="bag"] { width: 112px; height: 92px; border-radius: 15px 15px 25px 25px; }
.product-shape[data-shape="bag"]::before { content: ""; position: absolute; top: -34px; width: 56px; height: 44px; border: 6px solid white; border-bottom: 0; border-radius: 50% 50% 0 0; filter: drop-shadow(0 -2px 0 var(--ink)); }
.product-shape[data-shape="book"] { width: 88px; height: 118px; border-radius: 5px 13px 13px 5px; }
.product-shape[data-shape="clothes"] { clip-path: polygon(26% 0, 42% 13%, 58% 13%, 74% 0, 100% 22%, 81% 42%, 75% 100%, 25% 100%, 19% 42%, 0 22%); border-radius: 0; }
.product-shape[data-shape="case"] { width: 71px; height: 126px; border-radius: 17px; }
.product-shape[data-shape="toy"] { width: 104px; height: 104px; border-radius: 50%; }
.product-shape[data-shape="home"] { width: 117px; height: 79px; border-radius: 10px; }
.product-shape[data-shape="custom"] { border-radius: 50%; background: var(--yellow); }
.product-badge { position: absolute; z-index: 3; top: 12px; left: 12px; padding: 6px 9px; border: 1.5px solid var(--ink); border-radius: 7px; color: var(--ink); background: white; font-size: 8px; font-weight: 900; letter-spacing: .05em; box-shadow: 2px 2px 0 var(--ink); }
.product-badge.drop { color: white; background: var(--red); }
.product-badge.new { background: var(--yellow); }
.wishlist-button { position: absolute; z-index: 4; top: 11px; right: 11px; display: grid; place-items: center; width: 34px; height: 34px; border: 1.5px solid var(--ink); border-radius: 50%; background: white; font-size: 18px; cursor: pointer; }
.wishlist-button.is-saved { color: white; background: var(--pink); }
.product-card-body { padding: 15px 16px 17px; }
.product-store { display: flex; justify-content: space-between; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-status { display: flex; align-items: center; gap: 4px; color: var(--success); letter-spacing: 0; text-transform: none; }
.product-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.product-status.sold-out { color: var(--warning); }
.product-card h3 { min-height: 38px; margin: 10px 0 12px; font-size: 13px; line-height: 1.42; }
.price-row { display: flex; align-items: baseline; gap: 7px; }
.price-row strong { font-family: Georgia, serif; font-size: 21px; }
.price-row del { color: #9f9298; font-size: 10px; }
.shipping-note { min-height: 15px; margin: 5px 0 0; color: var(--ink-soft); font-size: 9px; }
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 7px; margin-top: 14px; }
.details-button, .link-button { min-height: 37px; border: 1px solid var(--border); border-radius: 10px; background: var(--paper); font-size: 10px; font-weight: 800; cursor: pointer; }
.details-button:hover { border-color: var(--ink); }
.link-button { display: grid; place-items: center; width: 38px; }
.link-button[disabled] { color: #b9adb2; cursor: not-allowed; }

.empty-state { padding: 60px 20px; border: 1px dashed var(--border); border-radius: var(--radius-lg); text-align: center; background: white; }
.empty-state > span { color: var(--pink); font-size: 48px; }
.empty-state h3 { margin: 8px 0; font-family: Georgia, serif; font-size: 28px; }
.empty-state p { margin: 0 0 20px; color: var(--ink-soft); }

.store-directory { padding-top: 70px; padding-bottom: 95px; }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.directory-card { position: relative; min-height: 182px; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--card-color, white); overflow: hidden; cursor: pointer; transition: transform 160ms ease; }
.directory-card:hover { transform: translateY(-4px) rotate(-.5deg); }
.directory-card::after { content: attr(data-letter); position: absolute; right: -6px; bottom: -33px; color: rgba(37,27,33,.07); font-family: Georgia, serif; font-size: 130px; font-weight: 900; }
.directory-top { display: flex; justify-content: space-between; align-items: center; }
.directory-logo { display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 13px; color: var(--ink); background: white; font-family: Georgia, serif; font-weight: 900; box-shadow: 3px 3px 0 var(--ink); }
.directory-type { position: relative; z-index: 1; color: var(--ink-soft); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.directory-card h3 { position: relative; z-index: 1; margin: 25px 0 6px; font-size: 17px; }
.directory-card p { position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: 11px; }
.directory-count { position: absolute; z-index: 2; right: 16px; bottom: 16px; padding: 5px 8px; border-radius: 20px; background: rgba(255,255,255,.75); font-size: 9px; font-weight: 800; }

.personal-note { display: flex; align-items: center; gap: 30px; max-width: calc(var(--max) - 48px); margin: 0 auto 76px; padding: 39px 46px; border: 2px solid var(--ink); border-radius: var(--radius-lg); color: white; background: var(--pink-dark); box-shadow: 8px 8px 0 var(--ink); }
.personal-note > div:nth-child(2) { flex: 1; }
.personal-note .eyebrow { color: var(--cream); }
.personal-note h2 { margin: 0; font-family: Georgia, serif; font-size: 32px; font-weight: 500; }
.personal-note p:last-child { margin: 8px 0 0; color: rgba(255,255,255,.78); font-size: 13px; }
.note-bow { flex: 0 0 88px; }

footer { display: flex; align-items: center; gap: 28px; min-height: 112px; padding: 24px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--border); }
footer > p { flex: 1; color: var(--ink-soft); font-size: 10px; text-align: center; }
footer > p a { text-decoration: underline; text-underline-offset: 3px; }
.footer-brand { min-width: 210px; }
footer .text-button { font-size: 10px; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { display: flex; align-items: center; justify-content: space-between; min-height: 78px; padding: 0 max(24px, calc((100vw - 900px) / 2)); border-bottom: 1px solid var(--border); }
.legal-header > a:last-child { font-size: 12px; font-weight: 800; }
.legal-content { max-width: 900px; margin: 0 auto; padding: 74px 24px 100px; }
.legal-content h1 { max-width: 670px; margin: 0 0 14px; font-family: Georgia, serif; font-size: clamp(45px, 7vw, 72px); font-weight: 500; letter-spacing: -.055em; }
.legal-updated { margin: 0 0 42px; color: var(--ink-soft); font-size: 12px; }
.legal-card { padding: clamp(24px, 5vw, 48px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); }
.legal-card h2 { margin: 35px 0 10px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.legal-card ul { padding-left: 20px; }

.mobile-nav { display: none; }

.modal-backdrop { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(37, 27, 33, .52); backdrop-filter: blur(8px); }
.modal-backdrop[hidden] { display: none; }
.modal { position: relative; width: min(620px, 100%); max-height: min(820px, calc(100vh - 40px)); padding: 34px; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 10px 12px 0 var(--ink); overflow-y: auto; }
.modal-close { position: absolute; z-index: 3; top: 15px; right: 15px; display: grid; place-items: center; width: 36px; height: 36px; border: 1.5px solid var(--ink); border-radius: 50%; background: white; font-size: 21px; cursor: pointer; }
.modal h2 { margin: 0; font-family: Georgia, serif; font-size: 37px; font-weight: 500; letter-spacing: -.04em; }
.modal-intro { margin: 12px 0 25px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.modal form { display: grid; gap: 16px; }
.modal label { display: grid; gap: 7px; color: var(--ink); font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.modal input, .modal select { width: 100%; height: 46px; padding: 0 13px; border: 1px solid var(--border); border-radius: 11px; outline: 0; color: var(--ink); background: white; font-size: 13px; text-transform: none; }
.modal input:focus, .modal select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-soft); }
.form-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.modal .checkbox-label { display: flex; align-items: center; gap: 9px; text-transform: none; }
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--pink); }
.form-submit { width: 100%; }
.form-note { margin: -5px 0 0; color: var(--ink-soft); font-size: 9px; line-height: 1.5; text-align: center; }

.modal-product-hero { display: grid; grid-template-columns: 220px 1fr; gap: 25px; align-items: center; }
.modal-product-visual { border: 1px solid var(--border); border-radius: 22px; }
.modal-product-copy h2 { font-size: 30px; }
.modal-product-copy .price-row { margin-top: 15px; }
.modal-product-copy .price-row strong { font-size: 29px; }
.modal-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 25px; }
.modal-info-grid div { padding: 13px; border: 1px solid var(--border); border-radius: 12px; background: white; }
.modal-info-grid small { display: block; color: var(--ink-soft); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.modal-info-grid strong { display: block; margin-top: 5px; font-size: 11px; }
.demo-disclaimer { margin-top: 18px; padding: 12px 14px; border-radius: 10px; color: #78591f; background: var(--cream); font-size: 10px; line-height: 1.5; }
.modal-actions { display: flex; gap: 9px; margin-top: 18px; }

.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; max-width: 330px; padding: 14px 17px; border: 2px solid var(--ink); border-radius: 13px; color: var(--ink); background: var(--yellow); box-shadow: 4px 5px 0 var(--ink); font-size: 12px; font-weight: 750; opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: none; }

.gift-screen { position: fixed; z-index: 500; inset: 0; display: flex; align-items: center; flex-direction: column; justify-content: center; padding: 24px; background: radial-gradient(circle, #fff8fa 0, #ffe5ee 56%, #ffc5d7 100%); text-align: center; transition: opacity 450ms ease, visibility 450ms ease; }
.gift-screen.is-opened { opacity: 0; visibility: hidden; }
.gift-screen::before, .gift-screen::after { content: ""; position: absolute; width: 33vw; height: 33vw; border: 1px dashed rgba(37,27,33,.15); border-radius: 50%; }
.gift-screen::before { left: -12vw; top: -12vw; }
.gift-screen::after { right: -12vw; bottom: -12vw; }
.gift-screen h1 { margin: 3px 0 11px; font-family: Georgia, serif; font-size: clamp(39px, 5vw, 64px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.gift-screen > p:not(.eyebrow) { max-width: 470px; margin: 0 0 25px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.gift-sparkles { position: absolute; top: 8%; color: var(--pink-dark); font-size: 24px; letter-spacing: 23px; }
.gift-box { position: relative; width: 120px; height: 110px; margin-bottom: 25px; padding: 0; border: 0; background: transparent; cursor: pointer; transition: transform 180ms ease; }
.gift-box:hover { transform: scale(1.06) rotate(-2deg); }
.gift-base { position: absolute; right: 8px; bottom: 0; left: 8px; height: 79px; border: 2px solid var(--ink); border-radius: 4px 4px 12px 12px; background: var(--pink); box-shadow: 6px 7px 0 var(--ink); }
.gift-lid { position: absolute; z-index: 2; top: 22px; left: 0; width: 120px; height: 24px; border: 2px solid var(--ink); border-radius: 6px; background: var(--red); box-shadow: 3px 3px 0 var(--ink); }
.gift-base span, .gift-lid span { position: absolute; top: -2px; bottom: -2px; left: 48px; width: 21px; border: 2px solid var(--ink); background: var(--cream); }
.gift-lid::before, .gift-lid::after { content: ""; position: absolute; bottom: 19px; width: 45px; height: 31px; border: 2px solid var(--ink); background: var(--pink); }
.gift-lid::before { left: 13px; border-radius: 70% 30% 50% 35%; transform: rotate(18deg); }
.gift-lid::after { right: 12px; border-radius: 30% 70% 35% 50%; transform: rotate(-18deg); }

body.modal-open { overflow: hidden; }

@media (max-width: 1050px) {
  .store-tabs { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr minmax(320px, .8fr); }
  .hero-art { width: min(390px, 39vw); }
}

@media (max-width: 780px) {
  body { padding-bottom: 72px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 66px; padding: 0 17px; }
  .desktop-nav, .header-actions .icon-button, .header-actions .button { display: none; }
  .brand strong { font-size: 14px; }
  .brand-mark { transform: scale(.9); transform-origin: left center; }
  .site-header::after { content: "♡"; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; background: white; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding: 43px 20px 60px; text-align: center; }
  .hero-copy { padding-left: 0; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .hero-intro { margin-right: auto; margin-left: auto; font-size: 14px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; margin-top: 36px; }
  .hero-art { display: none; }

  .store-switcher, .catalogue, .store-directory { padding-right: 17px; padding-left: 17px; }
  .store-switcher { padding-top: 25px; padding-bottom: 55px; }
  .section-heading { display: block; margin-bottom: 23px; }
  .section-heading h2 { font-size: 38px; }
  .section-heading > p { margin-top: 10px; }
  .store-tabs { display: flex; margin-right: -17px; padding-right: 17px; overflow-x: auto; scrollbar-width: none; }
  .store-tab { flex: 0 0 164px; min-height: 73px; }
  .store-tab::-webkit-scrollbar { display: none; }

  .catalogue { padding-top: 58px; }
  .filter-bar { flex-wrap: wrap; }
  .search-box { flex-basis: 100%; border-bottom: 1px solid var(--border); }
  .select-control { flex: 1; }
  .select-control select { width: 100%; }
  .filter-button { flex: 1; white-space: nowrap; }
  .search-box kbd { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card-body { padding: 12px; }
  .product-shape { transform: scale(.82) rotate(-4deg); }
  .product-card h3 { font-size: 12px; }
  .product-store { display: block; }
  .product-status { margin-top: 4px; }
  .price-row strong { font-size: 18px; }

  .store-directory { padding-top: 55px; padding-bottom: 65px; }
  .directory-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .directory-card { min-height: 164px; padding: 15px; }
  .personal-note { display: block; margin: 0 17px 65px; padding: 33px 25px; text-align: center; }
  .personal-note .note-bow { margin: 0 auto 17px; transform: scale(.75); }
  .personal-note .button { margin-top: 22px; }
  footer { display: block; padding: 28px 20px; text-align: center; }
  .footer-brand { margin: 0 auto; }
  footer > p { margin: 20px 0; }
  .legal-header { min-height: 66px; padding: 0 17px; }
  .legal-header > a:last-child { font-size: 10px; }
  .legal-content { padding: 48px 17px 80px; }

  .mobile-nav { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr 70px 1fr 1fr; align-items: end; height: 68px; padding: 6px 8px max(7px, env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: rgba(255,255,255,.95); backdrop-filter: blur(14px); }
  .mobile-nav-item { display: flex; align-items: center; flex-direction: column; gap: 2px; color: var(--ink-soft); font-size: 8px; font-weight: 750; }
  .mobile-nav-item span { font-family: Georgia, serif; font-size: 19px; line-height: 1; }
  .mobile-nav-item.is-active { color: var(--pink-dark); }
  .mobile-add { position: relative; top: -11px; display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--pink); box-shadow: 3px 4px 0 var(--ink); font-size: 25px; }

  .modal { padding: 27px 20px 25px; border-radius: 22px; }
  .modal h2 { padding-right: 30px; font-size: 32px; }
  .form-row, .modal-product-hero { grid-template-columns: 1fr; }
  .modal-product-visual { max-width: 230px; }
  .modal-info-grid { grid-template-columns: 1fr 1fr; }
  .toast { right: 12px; bottom: 82px; left: 12px; max-width: none; text-align: center; }
}

@media (max-width: 430px) {
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-stats { gap: 17px; }
  .hero-stats div { min-width: 69px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-visual { aspect-ratio: 1; }
  .product-shape { transform: scale(.7) rotate(-4deg); }
  .product-badge { top: 8px; left: 8px; }
  .wishlist-button { top: 7px; right: 7px; width: 31px; height: 31px; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-card { min-height: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
