:root {
  --pink: #e6005a;
  --pink-2: #ff4d8d;
  --ink: #272b33;
  --muted: #6c7280;
  --line: #eceef3;
  --card: #fff;
  --soft: #f8f9fb;
  --blue: #047ac4;
  --shadow: 0 14px 34px rgba(28, 32, 40, .10);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  padding: 26px 0 18px;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fbfbfc 100%);
}
.topbar {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-grid;
  justify-items: start;
  gap: 8px;
  width: max-content;
}
.brand-mark {
  position: relative;
  display: block;
  width: 70px;
  height: 58px;
  margin-left: 42px;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 34px;
  height: 52px;
  border: 8px solid var(--pink);
  border-left: 0;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  transform: rotate(45deg);
  transform-origin: 0 100%;
}
.brand-mark::after {
  left: 36px;
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
}
.brand-text {
  font-size: 25px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0;
}
.brand-text em {
  margin-right: 2px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}
.brand--image {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 172px;
  max-width: 100%;
  gap: 0;
}
.brand--image .brand-mark,
.brand--image .brand-text { display: none; }
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}
.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;
}
.intro { max-width: 720px; font-size: 14px; }
.intro p { margin: 0 0 16px; }
.intro strong { color: var(--pink); }
.partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  color: #222;
}
.partners span { color: var(--ink); }
.partners strong {
  color: #2d3035;
  font-size: 18px;
  line-height: 1;
}
.partners strong:nth-child(3) { font-family: Georgia, serif; font-style: italic; color: #4c4263; }
.partners a {
  color: #2d3035;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}
.partners a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.icon-btn,
.search-btn,
.menu-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #16191f;
  cursor: pointer;
}
.search-btn {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 0, 90, .26);
}
.menu-btn { display: none; }

.nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  padding: 0 18px;
  min-height: 68px;
  align-items: stretch;
  overflow: visible;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(18, 22, 32, .08);
}
.nav > .nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
}
.nav-item--single { min-width: 0; }
.nav-item--single .nav-link { padding-inline: 22px; }
.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 66px;
  padding: 0 16px;
  color: #222833;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-link.active,
.nav-link:hover,
.nav-item.is-current > .nav-trigger,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  color: var(--pink);
}
.nav-link.active::after,
.nav-item.is-current > .nav-trigger::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 3px;
  background: var(--pink);
}
.nav-trigger [data-icon="chevron"] {
  width: 14px;
  height: 14px;
  opacity: .66;
  transform: rotate(90deg);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-item--has-children.is-open > .nav-trigger [data-icon="chevron"],
.nav-item--has-children:hover > .nav-trigger [data-icon="chevron"],
.nav-item--has-children:focus-within > .nav-trigger [data-icon="chevron"] {
  opacity: 1;
  transform: rotate(-90deg);
}
.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  z-index: 20;
  width: min(360px, 72vw);
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 48px rgba(18, 22, 32, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-item--has-children:last-child .submenu {
  left: auto;
  right: 0;
}
.nav-item--has-children:hover .submenu,
.nav-item--has-children:focus-within .submenu,
.nav-item--has-children.is-open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.submenu-link {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 1px);
  background: #fff7fa;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.submenu-link strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.submenu-link small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.submenu-link:hover,
.submenu-link.active {
  color: var(--pink);
  border-color: rgba(230, 0, 90, .14);
  background: #fff1f6;
}
.guide-flow {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}
.guide-toc,
.guide-card,
.guide-faq {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 26, 34, .06);
}
.guide-toc h2,
.guide-card h2,
.guide-faq h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}
.guide-card h3,
.guide-faq h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}
.guide-toc p,
.guide-card p,
.guide-faq p {
  margin: 0 0 16px;
  color: var(--muted);
}
.guide-card p:last-child,
.guide-faq p:last-child,
.guide-toc p:last-child {
  margin-bottom: 0;
}
.guide-card ul,
.guide-faq ul,
.guide-toc ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.guide-card li + li,
.guide-faq li + li,
.guide-toc li + li {
  margin-top: 8px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.guide-mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff8fb 0%, #fff 100%);
}
.guide-mini-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.guide-mini-card p {
  margin: 0;
  color: var(--muted);
}
.guide-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.guide-checklist .guide-mini-card {
  min-height: 100%;
}
.guide-note {
  padding: 18px 20px;
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff5f9;
  color: #4b505a;
}
.guide-note strong {
  color: var(--pink);
}
.guide-related {
  margin-top: 34px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  aspect-ratio: 1774 / 887;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffb778;
}
.banner-link { display: block; width: 100%; height: 100%; }
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pill-btn,
.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-art { position: absolute; inset: 0; }
.silhouette {
  position: absolute;
  bottom: 0;
  width: 190px;
  height: 360px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.18));
  filter: saturate(1.1);
  opacity: .9;
}
.silhouette::before,
.silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}
.silhouette::before {
  top: 10px;
  width: 56px;
  height: 56px;
  background: #f7b07e;
}
.silhouette::after {
  top: 82px;
  width: 98px;
  height: 180px;
  background: linear-gradient(180deg, #fa3b7d, #20151b);
  clip-path: polygon(28% 0, 72% 0, 90% 100%, 10% 100%);
}
.silhouette.left { left: 56px; transform: rotate(-4deg); }
.silhouette.center { right: 290px; background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.12)); }
.silhouette.right { right: 26px; transform: scaleX(.9); }
.silhouette.right::after { background: #1e171a; height: 78px; top: 214px; clip-path: polygon(10% 0, 90% 0, 74% 100%, 25% 100%); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.feature-card {
  aspect-ratio: 1672 / 941;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  background: #f8f9fb;
}
.banner-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card.blue { background: linear-gradient(110deg, #eaf8ff 0%, #dff2ff 100%); }
.feature-card.pink { background: linear-gradient(110deg, #ffd9e5 0%, #ffc4d8 100%); }
.feature-copy { position: relative; z-index: 2; }
.badge {
  display: inline-flex;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.blue-badge { color: #0475bd; background: #bde5ff; }
.pink-badge { color: var(--pink); background: #ff9fc1; }
.feature-card h2 {
  margin: 18px 0 5px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
  text-transform: uppercase;
}
.feature-card p { margin: 0 0 28px; }
.feature-card small {
  display: block;
  margin-top: 12px;
  text-transform: uppercase;
  color: #3f4650;
}
.feature-card strong { display: block; font-size: 34px; }
.feature-card del { display: block; margin-bottom: 20px; color: #5f6570; }
.blue-btn { background: var(--blue); }
.product-visual {
  position: relative;
  min-height: 260px;
}
.product-visual.bottle::before {
  content: "";
  position: absolute;
  left: 32px;
  bottom: 10px;
  width: 88px;
  height: 230px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(90deg, #d9f3ff 0%, #118de0 35%, #064fa7 70%, #c8f1ff 100%);
  box-shadow: 0 20px 40px rgba(5, 86, 152, .28);
}
.product-visual.bottle::after {
  content: "durex\a play";
  white-space: pre;
  position: absolute;
  left: 43px;
  bottom: 88px;
  width: 66px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.product-visual.packets::before {
  content: "";
  position: absolute;
  inset: 24px 8px 18px 0;
  background:
    repeating-linear-gradient(24deg, #1f1420 0 22px, #ff5d77 22px 25px, #1f1420 25px 48px);
  clip-path: polygon(4% 22%, 78% 0, 100% 75%, 20% 100%);
  box-shadow: 0 18px 36px rgba(58, 21, 37, .28);
}
.mini-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
  color: #3b4048;
  font-size: 13px;
}
.mini-props span { display: grid; justify-items: center; gap: 6px; text-align: center; }
.mini-props i { color: var(--pink); }

.products { margin-top: 30px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0;
}
.section-head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.toolbar {
  display: flex;
  gap: 10px;
  margin: -4px 0 20px;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}
.chip.active {
  border-color: var(--pink);
  color: var(--pink);
  background: #fff5f9;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(22, 26, 34, .08);
  overflow: hidden;
}
.favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #a4a9b2;
}
.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .82;
  padding: 28px 28px 10px;
  background: #fff;
}
.product-image img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
}
.image-fallback {
  width: 112px;
  height: 138px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fbfbfd, #ffd2e0 55%, #e6005a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.product-info { padding: 0 24px 24px; }
.product-title {
  min-height: 50px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 14px;
}
.rating small { color: var(--muted); }
.price {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 500;
}
.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
}
.status {
  margin: 16px 0 0;
  color: var(--muted);
}

.trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
  margin-bottom: 30px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(22, 26, 34, .08);
}
.trustbar div {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-items: center;
}
.trustbar span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--pink);
}
.trustbar strong { font-size: 13px; text-transform: uppercase; }
.trustbar small { color: var(--muted); }
.site-note {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff8fb 0%, #fff 100%);
  box-shadow: 0 8px 24px rgba(22, 26, 34, .05);
}
.site-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.seo-hub { margin-top: 34px; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.hub-grid.wide { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.hub-grid a {
  display: grid;
  gap: 8px;
  min-height: 134px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 26, 34, .06);
}
.hub-grid strong {
  color: var(--ink);
  font-size: 17px;
}
.hub-grid span {
  color: var(--muted);
  font-size: 14px;
}
.editorial {
  max-width: 980px;
  padding: 42px 0 74px;
}
.editorial .brand { margin-bottom: 36px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.editorial h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
}
.lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.subpage-banner {
  margin-top: 28px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 18px 40px rgba(22, 26, 34, .12);
}
.subpage-banner-img {
  display: block;
  width: 100%;
  height: auto;
}
.subpage-intro {
  padding: 30px 0 14px;
}
.subpage-intro .lead {
  max-width: 760px;
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.answer-block,
.faq-list {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 26, 34, .06);
}
.answer-block h2,
.faq-list h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.answer-block p,
.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
}

.category-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 230px;
  margin-top: 28px;
  padding: 34px 48px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(110deg, #fb789e, #f7b56d);
}
.category-hero.toys { background: linear-gradient(110deg, #5bbbf4, #f37ba5); }
.category-hero.erotic { background: linear-gradient(110deg, #ff7d87, #454f75); }
.category-hero.beauty { background: linear-gradient(110deg, #f7b56d, #7ecbdc); }
.category-hero.condoms { background: linear-gradient(110deg, #4a79c9, #67c5d4); }
.category-hero p { margin: 0 0 6px; font-size: 18px; }
.category-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 60px); line-height: 1; }
.category-art {
  width: 220px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  position: relative;
}
.category-art::before,
.category-art::after { content: ""; position: absolute; background: rgba(255,255,255,.8); }
.category-art.lingerie::before { width: 72px; height: 118px; left: 70px; top: 26px; border-radius: 14px; clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%); }
.category-art.toy::before { width: 64px; height: 132px; left: 72px; top: 18px; border-radius: 999px; transform: rotate(24deg); }
.category-art.gift::before { width: 130px; height: 94px; left: 48px; top: 52px; border-radius: 8px; }
.category-art.gift::after { width: 18px; height: 120px; left: 112px; top: 38px; }
.category-art.condoms::before { width: 78px; height: 116px; left: 46px; top: 24px; border-radius: 16px; }
.category-art.condoms::after { width: 78px; height: 116px; left: 104px; top: 24px; border-radius: 16px; opacity: .74; }

.footer {
  margin-top: 20px;
  padding: 28px 0;
  background: #222733;
  color: #dfe3ea;
}
.footer .shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 32px;
  align-items: start;
}
.footer-brand {
  display: inline-flex;
  width: 152px;
  max-width: 40vw;
}
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}
.footer-copy {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.footer p { max-width: 760px; margin: 0; font-size: 13px; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 520px;
}
.legal { padding: 42px 0 70px; max-width: 880px; }
.legal h1 {
  margin: 36px 0 24px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}
.legal h2 {
  margin: 30px 0 8px;
  font-size: 20px;
}
.legal section {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.legal p { color: var(--muted); margin: 8px 0; }
.legal a { color: var(--pink); font-weight: 700; }
.legal code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #f3f4f7;
  color: var(--ink);
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  width: min(760px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}
.cookie-banner h2 {
  margin: 0 0 4px;
  font-size: 18px;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-actions a,
.cookie-actions button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.cookie-actions button {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
}

[data-icon] {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
[data-icon="heart"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7.2-4.6-9.7-8.6C.4 9.3 1.4 5.3 4.7 4.2 7 3.4 9.4 4.2 12 7c2.6-2.8 5-3.6 7.3-2.8 3.3 1.1 4.3 5.1 2.4 8.4C19.2 16.4 12 21 12 21Zm0-2.4c2.7-1.8 6.9-5 8.1-7.5 1.2-2.3.5-4.8-1.7-5.5-2-.7-4 .6-5.6 2.8L12 9.5l-.8-1.1C9.6 6.2 7.6 4.9 5.6 5.6c-2.2.7-2.9 3.2-1.7 5.5 1.2 2.5 5.4 5.7 8.1 7.5Z'/%3E%3C/svg%3E"); }
[data-icon="user"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-2a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM4 22h16v-2a8 8 0 0 0-16 0v2Zm2-2a6 6 0 0 1 12 0H6Z'/%3E%3C/svg%3E"); }
[data-icon="bag"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8V7a5 5 0 0 1 10 0v1h3v14H4V8h3Zm2 0h6V7a3 3 0 0 0-6 0v1Zm-3 2v10h12V10H6Z'/%3E%3C/svg%3E"); }
[data-icon="search"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m20.7 19.3-4.2-4.2A7.5 7.5 0 1 0 15.1 16.5l4.2 4.2 1.4-1.4ZM4 10.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Z'/%3E%3C/svg%3E"); }
[data-icon="menu"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6h18v2H3V6Zm0 5h18v2H3v-2Zm0 5h18v2H3v-2Z'/%3E%3C/svg%3E"); }
[data-icon="arrow"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14 5 7 7-7 7-1.4-1.4 4.6-4.6H3v-2h14.2l-4.6-4.6L14 5Z'/%3E%3C/svg%3E"); }
[data-icon="chevron"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.3 18.7-1.4-1.4 5.3-5.3-5.3-5.3 1.4-1.4 6.7 6.7-6.7 6.7Z'/%3E%3C/svg%3E"); }
[data-icon="truck"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h12v4h3l3 4v5h-2.2a3 3 0 0 1-5.6 0H9.8a3 3 0 0 1-5.6 0H3V5Zm2 2v9h.2a3 3 0 0 1 5.6 0H13V7H5Zm10 4v5h.2a3 3 0 0 1 5.6 0H21v-2.3L17 11h-2ZM7 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm9 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z'/%3E%3C/svg%3E"); }
[data-icon="lock"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9V7a5 5 0 0 1 10 0v2h2v13H5V9h2Zm2 0h6V7a3 3 0 0 0-6 0v2Zm-2 2v9h10v-9H7Z'/%3E%3C/svg%3E"); }
[data-icon="award"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 2.1 2.2 3-.4.6 3 2.7 1.5-1.4 2.7 1.4 2.7-2.7 1.5-.6 3-3-.4L12 20l-2.1-2.2-3 .4-.6-3-2.7-1.5L5 11 3.6 8.3l2.7-1.5.6-3 3 .4L12 2Zm0 3-1.3 1.4-1.9-.3-.4 1.9-1.7 1 1 1.7-1 1.7 1.7 1 .4 1.9 1.9-.3 1.3 1.4 1.3-1.4 1.9.3.4-1.9 1.7-1-1-1.7 1-1.7-1.7-1-.4-1.9-1.9.3L12 5Zm0 9.5 3.5 2.1-.9-4 3.1-2.7-4.1-.3L12 5.8 10.4 9.6l-4.1.3 3.1 2.7-.9 4 3.5-2.1Z'/%3E%3C/svg%3E"); }
[data-icon="target"] { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22a10 10 0 1 1 0-20 10 10 0 0 1 0 20Zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0-3a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }

@media (max-width: 1020px) {
  .topbar { grid-template-columns: 220px 1fr auto; }
  .intro { grid-column: 1 / -1; max-width: none; }
  .silhouette.center { right: 200px; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hub-grid,
  .hub-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trustbar { grid-template-columns: repeat(2, 1fr); }
  .nav { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1180px); }
  .site-header { padding-top: 16px; }
  .topbar { grid-template-columns: 1fr auto; gap: 12px; }
  .brand--image { width: 132px; }
  .brand-mark { width: 48px; height: 42px; margin-left: 30px; }
  .brand-mark::before,
  .brand-mark::after { width: 24px; height: 38px; border-width: 6px; }
  .brand-mark::after { left: 26px; }
  .brand-text { font-size: 19px; }
  .intro { display: none; }
  .menu-btn { display: inline-grid; }
  .nav {
    display: none;
    margin-top: 16px;
    padding: 10px;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav.open { display: flex; }
  .nav > .nav-item { width: 100%; }
  .nav-link,
  .nav-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    justify-content: space-between;
    text-align: left;
    border-radius: 12px;
    background: #fff7fa;
  }
  .nav-link.active,
  .nav-item.is-current > .nav-trigger { background: #fff1f6; }
  .nav-link.active::after,
  .nav-item.is-current > .nav-trigger::after { display: none; }
  .nav-trigger [data-icon="chevron"] { transform: rotate(90deg); }
  .nav-item--has-children.is-open > .nav-trigger [data-icon="chevron"] { transform: rotate(270deg); }
  .submenu {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-item--has-children:not(.is-open) .submenu { display: none; }
  .nav-item--has-children.is-open .submenu { display: grid; }
  .submenu-link {
    padding: 12px 14px;
    background: #fff;
  }
  .hero { margin-top: 18px; }
  .hero-img { object-position: center; }
  .subpage-banner { margin-top: 18px; }
  .subpage-intro { padding-top: 24px; }
  .silhouette.left { left: 14px; }
  .silhouette.center { right: 95px; }
  .silhouette.right { right: -54px; }
  .feature-card { padding: 0; }
  .feature-card .product-visual { min-height: 190px; }
  .mini-props { grid-template-columns: 1fr; justify-items: start; }
  .mini-props span { justify-items: start; grid-template-columns: 24px 1fr; text-align: left; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hub-grid,
  .hub-grid.wide { grid-template-columns: 1fr; }
  .guide-grid,
  .guide-checklist { grid-template-columns: 1fr; }
  .editorial { padding-top: 26px; }
  .product-info { padding: 0 14px 18px; }
  .product-title { font-size: 12px; min-height: 48px; }
  .price { font-size: 20px; }
  .product-image { padding: 28px 18px 8px; }
  .trustbar { grid-template-columns: 1fr; padding: 18px; }
  .category-hero { padding: 28px; min-height: 190px; }
  .category-art { width: 132px; opacity: .8; }
  .footer .shell { grid-template-columns: 1fr; }
  .footer-brand { width: 126px; }
  .footer-copy { flex-direction: column; }
  .footer nav { justify-content: flex-start; max-width: none; }
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 12px;
  }
  .cookie-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .product-grid { grid-template-columns: 1fr; }
  .toolbar { overflow-x: auto; }
}
