@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand-cyan: #18cce7;
  --brand-turquoise: #1bbdd6;
  --brand-blue: #4f7ef4;
  --brand-violet: #7a56e8;
  --brand-purple: #43316f;
  --brand-magenta: #d563cf;
  --ink: #171332;
  --ink-soft: #5f5a76;
  --line: #e8e7f1;
  --surface: #f7f8fc;
  --white: #fff;
  --gradient: linear-gradient(110deg, var(--brand-cyan), var(--brand-violet) 65%, var(--brand-magenta));
  --shadow: 0 18px 60px rgba(53, 42, 102, .11);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Manrope, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.p2-menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.p2-container { width: min(var(--container), calc(100% - 56px)); margin-inline: auto; }
.p2-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; }
.p2-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-violet); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.p2-kicker::before { content: ''; width: 20px; height: 2px; border-radius: 9px; background: var(--gradient); }
.p2-section { margin-top: 100px; opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.p2-section.is-visible, .p2-trust.is-visible { opacity: 1; transform: none; }
.p2-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.p2-section-heading h2, .p2-how h2, .p2-b2b h2 { margin: 8px 0 0; font-size: clamp(28px, 3vw, 46px); line-height: 1.08; letter-spacing: -.045em; }
.p2-section-heading > a { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-violet); font-size: 14px; font-weight: 800; }
.p2-section-heading svg, .p2-button svg, .p2-category-card__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.p2-utility { border-bottom: 1px solid #f1f0f6; color: var(--ink-soft); font-size: 11px; }
.p2-utility__inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; }
.p2-utility nav { display: flex; gap: 30px; }
.p2-utility a:last-child { color: var(--ink); font-weight: 800; }
.p2-header { position: relative; z-index: 30; background: rgba(255,255,255,.96); }
.p2-header__main { height: 90px; display: grid; grid-template-columns: 150px auto minmax(260px, 1fr) auto; gap: 28px; align-items: center; }
.p2-logo { display: block; width: 145px; }
.p2-logo img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.p2-main-nav { display: flex; align-items: center; gap: 26px; white-space: nowrap; font-size: 13px; font-weight: 700; }
.p2-main-nav a:not(.p2-catalog-link) { transition: color .2s ease; }
.p2-main-nav a:not(.p2-catalog-link):hover { color: var(--brand-violet); }
.p2-catalog-link { display: inline-flex; align-items: center; gap: 9px; padding: 12px 17px; color: #fff; background: linear-gradient(125deg, var(--brand-blue), var(--brand-violet)); border-radius: 13px; box-shadow: 0 8px 24px rgba(103, 81, 219, .2); }
.p2-search { display: flex; align-items: center; min-width: 0; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: border-color .2s, box-shadow .2s, background .2s; }
.p2-search:focus-within { background: #fff; border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(79,126,244,.1); }
.p2-search input { width: 100%; min-width: 0; height: 100%; padding: 0 8px 0 17px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.p2-search input::placeholder { color: #9691a8; opacity: 1; }
.p2-search button { width: 48px; height: 100%; display: grid; place-items: center; flex: 0 0 48px; border: 0; background: transparent; color: var(--brand-blue); cursor: pointer; }
.p2-search svg, .p2-actions svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.p2-actions { display: flex; align-items: center; gap: 18px; }
.p2-actions a { position: relative; display: grid; justify-items: center; gap: 3px; color: var(--ink-soft); font-size: 9px; }
.p2-actions a:hover { color: var(--brand-violet); }
.p2-cart-link b { position: absolute; top: -7px; right: 1px; min-width: 16px; height: 16px; padding: 0 4px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50px; background: var(--brand-magenta); color: #fff; font-size: 8px; }
.p2-mobile-toggle, .p2-mobile-menu { display: none; }
.p2-catalog-taxonomy { position: absolute; z-index: 40; top: 100%; left: 0; width: 100%; padding: 24px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid #dedce7; background: #fff; box-shadow: 0 22px 38px rgba(23,19,50,.12); }
.p2-catalog-taxonomy__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px; }
.p2-catalog-taxonomy section { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.p2-catalog-taxonomy a { color: #625e6b; font-size: 12px; line-height: 1.35; transition: color .18s ease; }
.p2-catalog-taxonomy a:hover { color: var(--brand-violet); }
.p2-catalog-taxonomy .p2-catalog-taxonomy__top { margin-bottom: 3px; color: var(--ink); font-size: 15px; font-weight: 800; }

.p2-main { overflow: hidden; }
.p2-hero { position: relative; min-height: 610px; display: grid; grid-template-columns: 53% 47%; overflow: hidden; border-radius: var(--radius-xl); background: radial-gradient(circle at 70% 35%, rgba(108,76,219,.72), transparent 29%), linear-gradient(118deg, #17123e 0%, #2f1d64 48%, #176ba1 100%); box-shadow: var(--shadow); isolation: isolate; }
.p2-hero::before { content: ''; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent); }
.p2-hero__content { position: relative; z-index: 4; padding: 76px 0 70px 72px; color: #fff; }
.p2-hero .p2-kicker { color: #a9f7ff; }
.p2-hero h1 { margin: 14px 0 18px; font-size: clamp(48px, 5.1vw, 76px); line-height: .98; letter-spacing: -.065em; }
.p2-hero h1 em { color: var(--brand-cyan); font-style: normal; }
.p2-hero__lead { max-width: 540px; margin: 0 0 20px; color: #e6e3f6; font-size: 18px; line-height: 1.55; }
.p2-hero__proof { display: flex; align-items: center; gap: 12px; margin: 0 0 30px; color: #c5c0da; font-size: 13px; }
.p2-hero__proof strong { color: #fff; }
.p2-hero__proof span { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-magenta); }
.p2-search--hero { width: min(520px, 100%); height: 58px; margin-bottom: 18px; border: 0; background: #fff; border-radius: 16px; box-shadow: 0 12px 36px rgba(9,7,31,.2); }
.p2-search--hero input { padding-left: 21px; font-size: 14px; }
.p2-search--hero button { width: 58px; flex-basis: 58px; color: #fff; background: linear-gradient(140deg, var(--brand-cyan), var(--brand-blue)); border-radius: 0 16px 16px 0; }
.p2-button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 0 23px; border: 0; border-radius: 14px; background: var(--gradient); color: #fff; font-weight: 800; font-size: 13px; box-shadow: 0 12px 28px rgba(88,73,210,.23); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.p2-button:hover { transform: translateY(-2px); filter: saturate(1.08); box-shadow: 0 15px 32px rgba(88,73,210,.3); }
.p2-button--light { background: #fff; color: var(--brand-purple); box-shadow: none; }
.p2-button--small { width: 100%; min-height: 43px; padding: 0 14px; border-radius: 12px; }
.p2-button--muted { background: var(--surface); color: var(--ink-soft); box-shadow: none; }
.p2-hero__visual { position: relative; min-width: 0; }
.p2-hero__visual::after { content: ''; position: absolute; left: 4%; right: 4%; bottom: 53px; height: 26px; border-radius: 50%; background: #1be2ff; filter: blur(22px); opacity: .4; }
.p2-hero__halo { position: absolute; width: 390px; height: 390px; top: 92px; left: 18%; border: 4px solid #f362df; border-radius: 50%; box-shadow: 0 0 18px #f362df, inset 0 0 18px #f362df; opacity: .9; }
.p2-hero__product { position: absolute; z-index: 2; object-fit: contain; filter: drop-shadow(0 24px 24px rgba(4,2,21,.42)); mix-blend-mode: normal; border-radius: 24px; }
.p2-hero__product--one { width: 275px; height: 390px; left: 5%; bottom: 41px; transform: rotate(-5deg); }
.p2-hero__product--two { width: 220px; height: 300px; left: 37%; bottom: 44px; transform: rotate(7deg); }
.p2-hero__product--three { width: 250px; height: 250px; right: -5%; bottom: 72px; transform: rotate(-8deg); }
.p2-hero__tag { position: absolute; z-index: 5; padding: 8px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; background: rgba(255,255,255,.15); backdrop-filter: blur(10px); color: #fff; font-size: 11px; font-weight: 800; box-shadow: 0 10px 24px rgba(5,3,27,.14); animation: p2-float 5s ease-in-out infinite; }
.p2-hero__tag--one { top: 106px; right: 24%; }
.p2-hero__tag--two { top: 47%; right: 4%; animation-delay: -1.2s; }
.p2-hero__tag--three { left: 8%; bottom: 70px; animation-delay: -2.4s; }
@keyframes p2-float { 50% { transform: translateY(-8px); } }

.p2-direction-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 18px; }
.p2-category-card { position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius-lg); background: var(--surface); isolation: isolate; transition: transform .25s ease, box-shadow .25s ease; }
.p2-category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.p2-category-card::before { content: ''; position: absolute; inset: 0; z-index: -2; opacity: .9; }
.p2-category-card--wide { grid-column: span 2; }
.p2-category-card--auto::before { background: linear-gradient(120deg, #e9f8ff, #d7e4ff); }
.p2-category-card--nail::before { background: linear-gradient(120deg, #fff0f9, #f0e4ff); }
.p2-category-card--beauty::before { background: linear-gradient(120deg, #fff2f3, #fff7ef); }
.p2-category-card--home::before { background: linear-gradient(120deg, #e9faff, #eef6ff); }
.p2-category-card--repair::before { background: linear-gradient(120deg, #f0edff, #e6efff); }
.p2-category-card--tools::before { background: linear-gradient(120deg, #f2f1f7, #e6e9f3); }
.p2-category-card__eyebrow { position: relative; z-index: 2; display: block; margin-bottom: 8px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.p2-category-card strong { position: relative; z-index: 2; display: block; font-size: 30px; letter-spacing: -.04em; }
.p2-category-card__copy { position: relative; z-index: 2; display: block; max-width: 55%; margin-top: 10px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.p2-category-card img { position: absolute; z-index: -1; right: -2%; bottom: -12%; width: 56%; height: 88%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 16px 18px rgba(30,24,70,.15)); transition: transform .35s ease; }
.p2-category-card:hover img { transform: scale(1.06) rotate(-2deg); }
.p2-category-card:not(.p2-category-card--wide) img { width: 60%; height: 68%; right: -8%; }
.p2-category-card__arrow { position: absolute; z-index: 3; left: 28px; bottom: 25px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--brand-violet); box-shadow: 0 8px 22px rgba(55,43,102,.11); }

.p2-promo { position: relative; min-height: 310px; display: grid; grid-template-columns: 55% 45%; align-items: center; overflow: hidden; padding: 46px 58px; border-radius: var(--radius-xl); background: linear-gradient(110deg, #11bddd, #5583ef 52%, #a94cda); color: #fff; isolation: isolate; }
.p2-promo::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 15% 0, rgba(255,255,255,.22), transparent 28%), linear-gradient(120deg, transparent 45%, rgba(255,255,255,.09)); }
.p2-promo .p2-kicker { color: #eaffff; }
.p2-promo h2 { margin: 10px 0 8px; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.05em; }
.p2-promo p { max-width: 580px; margin: 0 0 25px; color: rgba(255,255,255,.86); line-height: 1.55; }
.p2-promo__art { position: absolute; inset: 0 0 0 55%; overflow: hidden; }
.p2-promo__orb { position: absolute; width: 300px; height: 300px; top: 8px; right: 14%; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #fff, #73e8ff 20%, #945ee7 56%, #41238c 80%); box-shadow: 0 25px 60px rgba(40,17,112,.35); }
.p2-promo__word { position: absolute; top: 93px; right: 7%; color: rgba(255,255,255,.95); font-size: clamp(62px, 8vw, 120px); font-weight: 800; letter-spacing: -.09em; transform: rotate(-9deg); text-shadow: 0 15px 30px rgba(41,18,105,.28); }

.p2-product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.p2-product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.p2-product-card:hover { transform: translateY(-4px); border-color: #d8d2ef; box-shadow: 0 18px 42px rgba(48,38,91,.11); }
.p2-product-card__image { display: grid; place-items: center; height: 210px; padding: 18px; background: linear-gradient(160deg, #fff, #f8f8fc); }
.p2-product-card__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s ease; }
.p2-product-card:hover .p2-product-card__image img { transform: scale(1.035); }
.p2-image-placeholder { color: #aaa5bb; font-size: 12px; font-weight: 800; }
.p2-favorite { position: absolute; top: 13px; right: 13px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); color: #8d87a5; cursor: pointer; }
.p2-favorite svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.p2-product-card__body { padding: 14px 16px 16px; }
.p2-stock { display: block; margin-bottom: 7px; color: #2b9e77; font-size: 10px; font-weight: 800; }
.p2-stock::before { content: ''; display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: currentColor; }
.p2-stock.is-out { color: #a09aac; }
.p2-product-card__title { display: -webkit-box; min-height: 57px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.p2-product-card__title:hover { color: var(--brand-violet); }
.p2-price { height: 46px; display: flex; align-items: baseline; gap: 7px; }
.p2-price strong { font-size: 17px; }
.p2-price s { color: #aaa5b6; font-size: 11px; }
.p2-product-card .p2-button.is-added { background: #32a77e; }

.p2-how { display: grid; grid-template-columns: 32% 68%; gap: 58px; padding: 58px; border-radius: var(--radius-xl); background: #f6f7fb; }
.p2-how__lead p { color: var(--ink-soft); line-height: 1.65; }
.p2-how ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: item; }
.p2-how li { position: relative; min-height: 210px; display: flex; flex-direction: column; padding: 24px 20px; overflow: hidden; border: 1px solid #eceaf4; border-radius: 18px; background: #fff; }
.p2-how li::after { content: ''; position: absolute; width: 90px; height: 90px; right: -35px; bottom: -35px; border-radius: 50%; background: var(--gradient); opacity: .1; }
.p2-how li b { color: var(--brand-violet); font-size: 11px; letter-spacing: .1em; }
.p2-how li strong { margin: auto 0 8px; font-size: 15px; line-height: 1.35; }
.p2-how li span { color: var(--ink-soft); font-size: 11px; line-height: 1.5; }

.p2-b2b { position: relative; display: grid; grid-template-columns: 37% 63%; gap: 56px; overflow: hidden; padding: 58px; border-radius: var(--radius-xl); background: radial-gradient(circle at 25% 100%, #7454c8, transparent 45%), linear-gradient(120deg, #2d235e, #3a2a79 48%, #7250ca); color: #fff; }
.p2-b2b .p2-kicker { color: #aef5ff; }
.p2-b2b__lead p { max-width: 440px; margin-bottom: 26px; color: #ddd8ef; line-height: 1.65; }
.p2-b2b__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.p2-b2b__features div { min-height: 205px; display: flex; flex-direction: column; padding: 23px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.1); }
.p2-b2b__features b { color: #86eaff; font-size: 11px; }
.p2-b2b__features strong { margin: auto 0 8px; font-size: 14px; line-height: 1.4; }
.p2-b2b__features span { color: #cbc5e2; font-size: 10px; line-height: 1.5; }

.p2-trust { width: min(var(--container), calc(100% - 56px)); margin: 24px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); opacity: 0; transform: translateY(16px); transition: opacity .55s, transform .55s; border: 1px solid var(--line); border-radius: 20px; }
.p2-trust div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 20px 32px; border-right: 1px solid var(--line); }
.p2-trust div:last-child { border-right: 0; }
.p2-trust strong { font-size: 19px; }
.p2-trust span { margin-top: 4px; color: var(--ink-soft); font-size: 11px; }
.p2-content { margin-bottom: 100px; }
.p2-content-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }
.p2-content-grid a { min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; overflow: hidden; border-radius: 22px; background: linear-gradient(145deg, #17123e, #6b4ec4); color: #fff; transition: transform .25s; }
.p2-content-grid a:nth-child(2) { background: linear-gradient(145deg, #ba5c99, #ffad9b); }
.p2-content-grid a:nth-child(3) { background: linear-gradient(145deg, #147f9e, #4aa9cc); }
.p2-content-grid a:hover { transform: translateY(-4px); }
.p2-content-grid span { margin-bottom: 12px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.p2-content-grid strong { max-width: 420px; font-size: 20px; line-height: 1.35; }

.p2-footer { padding: 64px 0 25px; background: linear-gradient(120deg, #2c225b, #44307b 52%, #2b4f99); color: #fff; }
.p2-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 46px; }
.p2-footer__brand p { max-width: 280px; color: #c9c4df; font-size: 12px; line-height: 1.65; }
.p2-logo--footer { width: 160px; padding: 7px 13px; border-radius: 14px; background: #fff; }
.p2-footer__grid > div:not(.p2-footer__brand) { display: flex; flex-direction: column; gap: 11px; }
.p2-footer__grid strong { margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.p2-footer__grid a, .p2-footer__grid span { color: #cbc6df; font-size: 11px; line-height: 1.45; }
.p2-footer__grid a:hover { color: #fff; }
.p2-footer__bottom { display: flex; gap: 30px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #a9a3c2; font-size: 10px; }

@media (max-width: 1240px) {
  .p2-header__main { grid-template-columns: 125px auto minmax(220px, 1fr) auto; gap: 18px; }
  .p2-logo { width: 125px; }
  .p2-main-nav { gap: 16px; }
  .p2-main-nav a:not(.p2-catalog-link):last-child { display: none; }
  .p2-actions span { display: none; }
  .p2-actions { gap: 13px; }
  .p2-hero { min-height: 560px; }
  .p2-hero__content { padding: 66px 0 60px 55px; }
  .p2-hero__halo { width: 330px; height: 330px; }
  .p2-product-grid { grid-template-columns: repeat(4, 1fr); }
  .p2-product-card:nth-child(n+5) { display: none; }
  .p2-how { grid-template-columns: 1fr; gap: 32px; }
  .p2-b2b { grid-template-columns: 1fr; gap: 34px; }
  .p2-b2b__features div { min-height: 160px; }
}

@media (max-width: 900px) {
  .p2-container { width: min(100% - 32px, var(--container)); }
  .p2-utility, .p2-main-nav, .p2-search--header { display: none; }
  .p2-header { position: sticky; top: 0; box-shadow: 0 3px 18px rgba(28,22,58,.06); }
  .p2-header__main { height: 72px; display: flex; gap: 16px; }
  .p2-logo { width: 118px; margin-right: auto; }
  .p2-mobile-toggle { order: 3; width: 40px; height: 40px; display: grid; align-content: center; gap: 4px; padding: 8px; border: 0; border-radius: 12px; background: var(--surface); }
  .p2-mobile-toggle span:not(.p2-sr-only) { width: 20px; height: 2px; display: block; margin-inline: auto; border-radius: 9px; background: var(--ink); }
  .p2-actions a:not(.p2-cart-link) { display: none; }
  .p2-actions .p2-cart-link { display: block; }
  .p2-actions .p2-cart-link b { right: -8px; }
  .p2-mobile-menu { position: fixed; inset: 72px 0 0; z-index: 50; display: block; padding-top: 18px; background: #fff; }
  .p2-mobile-menu[hidden] { display: none; }
  .p2-mobile-menu .p2-container { display: flex; flex-direction: column; gap: 0; }
  .p2-search--mobile { margin-bottom: 18px; }
  .p2-mobile-menu a { padding: 17px 5px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .p2-hero { width: calc(100% - 24px); min-height: 720px; grid-template-columns: 1fr; }
  .p2-hero__content { padding: 52px 42px 0; }
  .p2-hero__visual { min-height: 300px; }
  .p2-hero__halo { top: 15px; left: 32%; width: 240px; height: 240px; }
  .p2-hero__product--one { width: 190px; height: 235px; left: 19%; bottom: 14px; }
  .p2-hero__product--two { width: 160px; height: 195px; left: 44%; bottom: 10px; }
  .p2-hero__product--three { width: 175px; height: 175px; right: 5%; bottom: 24px; }
  .p2-hero__tag--one { top: 0; }
  .p2-hero__tag--two { top: 35%; }
  .p2-direction-grid { grid-template-columns: repeat(2, 1fr); }
  .p2-promo { grid-template-columns: 1fr; }
  .p2-promo__art { opacity: .55; inset-left: 45%; }
  .p2-promo > div:first-child { position: relative; z-index: 2; }
  .p2-how { padding: 40px; }
  .p2-how ol, .p2-b2b__features { grid-template-columns: repeat(2, 1fr); }
  .p2-b2b { padding: 42px; }
  .p2-trust { width: calc(100% - 32px); grid-template-columns: repeat(2, 1fr); }
  .p2-trust div:nth-child(2) { border-right: 0; }
  .p2-trust div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .p2-content-grid { grid-template-columns: 1fr 1fr; }
  .p2-content-grid a:first-child { grid-column: span 2; }
  .p2-footer__grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .p2-footer__contacts { display: none !important; }
}

@media (max-width: 600px) {
  .p2-container { width: calc(100% - 28px); }
  .p2-section { margin-top: 70px; }
  .p2-section-heading { align-items: flex-start; margin-bottom: 24px; }
  .p2-section-heading > a { font-size: 0; }
  .p2-section-heading > a svg { width: 22px; height: 22px; }
  .p2-section-heading h2, .p2-how h2, .p2-b2b h2 { font-size: 31px; }
  .p2-hero { width: calc(100% - 16px); min-height: 700px; border-radius: 24px; }
  .p2-hero__content { padding: 40px 22px 0; }
  .p2-hero h1 { margin-top: 12px; font-size: clamp(42px, 12vw, 56px); }
  .p2-hero__lead { font-size: 15px; }
  .p2-hero__proof { gap: 8px; font-size: 11px; }
  .p2-search--hero { height: 54px; }
  .p2-hero__visual { min-height: 270px; }
  .p2-hero__halo { left: 24%; width: 220px; height: 220px; }
  .p2-hero__product--one { left: 5%; width: 170px; height: 205px; }
  .p2-hero__product--two { left: 37%; width: 140px; height: 170px; }
  .p2-hero__product--three { right: -5%; width: 150px; height: 150px; }
  .p2-hero__tag { display: none; }
  .p2-direction-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-right: -14px; padding-right: 14px; }
  .p2-direction-grid::-webkit-scrollbar { display: none; }
  .p2-category-card, .p2-category-card--wide { flex: 0 0 78vw; min-height: 250px; scroll-snap-align: start; }
  .p2-category-card strong { font-size: 27px; }
  .p2-promo { min-height: 390px; padding: 36px 24px; border-radius: 24px; align-items: flex-start; }
  .p2-promo h2 { font-size: 40px; }
  .p2-promo p { max-width: 280px; font-size: 13px; }
  .p2-promo__art { inset: auto 0 0 25%; height: 210px; }
  .p2-promo__orb { width: 190px; height: 190px; right: 12%; }
  .p2-promo__word { top: 64px; font-size: 65px; }
  .p2-product-grid { display: flex; gap: 12px; overflow-x: auto; margin-right: -14px; padding: 2px 14px 20px 2px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .p2-product-grid::-webkit-scrollbar { display: none; }
  .p2-product-card, .p2-product-card:nth-child(n+5) { display: block; flex: 0 0 68vw; scroll-snap-align: start; }
  .p2-product-card__image { height: 230px; }
  .p2-how { padding: 32px 20px; border-radius: 24px; }
  .p2-how ol { display: flex; overflow-x: auto; margin-right: -20px; padding-right: 20px; scrollbar-width: none; }
  .p2-how li { flex: 0 0 73vw; min-height: 175px; }
  .p2-b2b { padding: 34px 22px; border-radius: 24px; }
  .p2-b2b__features { display: flex; overflow-x: auto; margin-right: -22px; padding-right: 22px; scrollbar-width: none; }
  .p2-b2b__features div { flex: 0 0 67vw; }
  .p2-trust { width: calc(100% - 28px); }
  .p2-trust div { min-height: 100px; padding: 16px; }
  .p2-trust strong { font-size: 16px; }
  .p2-content { margin-bottom: 70px; }
  .p2-content-grid { display: flex; overflow-x: auto; margin-right: -14px; padding-right: 14px; scrollbar-width: none; }
  .p2-content-grid a, .p2-content-grid a:first-child { flex: 0 0 82vw; min-height: 210px; }
  .p2-footer { padding-top: 45px; }
  .p2-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .p2-footer__brand { grid-column: span 2; }
  .p2-footer__grid > div:nth-child(4) { display: none; }
  .p2-footer__bottom { flex-direction: column; gap: 10px; }
}

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

/* The mobile catalog is rendered from the live InSales collection tree. */
.p2-mobile-taxonomy { border-bottom: 1px solid var(--line); }
.p2-mobile-taxonomy summary {
  position: relative;
  padding: 17px 30px 17px 5px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.p2-mobile-taxonomy summary::-webkit-details-marker { display: none; }
.p2-mobile-taxonomy summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  color: var(--brand-purple);
  font-size: 20px;
  font-weight: 500;
}
.p2-mobile-taxonomy[open] summary::after { content: '−'; }
.p2-mobile-taxonomy > div { padding: 0 0 10px 14px; }
.p2-mobile-menu .p2-mobile-taxonomy a {
  display: block;
  padding: 10px 5px;
  border-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}
.p2-mobile-menu .p2-mobile-taxonomy .p2-mobile-taxonomy__all {
  color: var(--brand-purple);
  font-weight: 700;
}

/* Profline 2.0 retail refinement: neutral, product-led, operational. */
:root {
  --ink: #22212a;
  --ink-soft: #65636d;
  --line: #dedee4;
  --surface: #f5f6f8;
  --shadow: 0 10px 30px rgba(28, 27, 35, .08);
  --radius-xl: 16px;
  --radius-lg: 14px;
  --radius-md: 12px;
}

body { background: #fff; }
.p2-section { margin-top: 82px; }
.p2-section-heading { margin-bottom: 24px; }
.p2-section-heading h2, .p2-how h2, .p2-b2b h2 { margin-top: 0; font-size: clamp(28px, 2.6vw, 40px); letter-spacing: -.035em; }
.p2-section-heading p { margin: 7px 0 0; color: var(--ink-soft); font-size: 13px; }
.p2-section-heading > a { color: var(--brand-purple); }
.p2-kicker::before { width: 14px; }

.p2-header { border-bottom: 1px solid #ececf0; }
.p2-header__main { height: 82px; }
.p2-catalog-link { border: 1px solid #373243; background: #2f2c37; box-shadow: none; }
.p2-catalog-link:hover { background: var(--brand-purple); border-color: var(--brand-purple); }
.p2-search { border-radius: 10px; background: #f6f6f8; }
.p2-search:focus-within { border-color: #686170; box-shadow: 0 0 0 3px rgba(67, 49, 111, .08); }
.p2-actions a { color: #5c5965; }

.p2-hero {
  min-height: 570px;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  border: 1px solid #e0e0e5;
  border-radius: 16px;
  background: #f3f4f6;
  box-shadow: none;
}
.p2-hero::before { display: none; }
.p2-hero__content { padding: 62px 54px 58px 58px; color: var(--ink); }
.p2-hero .p2-kicker { padding: 7px 10px; border-radius: 5px; background: #ece9f5; color: var(--brand-purple); letter-spacing: .05em; }
.p2-hero .p2-kicker::before { display: none; }
.p2-hero h1 { max-width: 720px; margin: 18px 0 20px; color: #202027; font-size: clamp(42px, 4.25vw, 62px); line-height: 1.04; letter-spacing: -.055em; }
.p2-hero h1 em { color: inherit; }
.p2-hero__lead { max-width: 650px; margin-bottom: 22px; color: #55535d; font-size: 16px; }
.p2-hero__proof { margin-bottom: 26px; color: #6e6b74; }
.p2-hero__proof strong { color: #292730; }
.p2-hero__proof span { background: var(--brand-cyan); }
.p2-search--hero { width: min(560px, 100%); height: 56px; margin-bottom: 16px; border: 1px solid #d8d8de; border-radius: 10px; box-shadow: none; }
.p2-search--hero button { background: #2f2c37; border-radius: 0 9px 9px 0; }
.p2-button { min-height: 48px; border-radius: 9px; background: #302d37; box-shadow: none; }
.p2-button:hover { background: var(--brand-purple); box-shadow: none; filter: none; }
.p2-button--light { background: #fff; color: #2b2930; }
.p2-button--small { min-height: 42px; border-radius: 8px; }

.p2-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border-left: 1px solid #e0e0e5;
  background: #fff;
}
.p2-hero__visual::after, .p2-hero__halo, .p2-hero__tag, .p2-hero__product { display: none; }
.p2-hero__visual-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 0 2px 18px; }
.p2-hero__visual-head span { color: var(--brand-purple); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.p2-hero__visual-head strong { color: #74717b; font-size: 11px; font-weight: 600; text-align: right; }
.p2-hero__showcase { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid #e3e3e7; background: #e3e3e7; gap: 1px; }
.p2-hero__showcase a { position: relative; min-height: 210px; display: grid; place-items: center; overflow: hidden; padding: 22px 18px 38px; background: #f8f8f9; }
.p2-hero__showcase img { width: 100%; height: 160px; object-fit: contain; mix-blend-mode: multiply; transition: transform .2s ease; }
.p2-hero__showcase a:hover img { transform: scale(1.035); }
.p2-hero__showcase span { position: absolute; left: 14px; bottom: 12px; color: #4c4953; font-size: 11px; font-weight: 700; }
.p2-image-unavailable { visibility: hidden; }
.p2-media-unavailable::after { content: 'Фото временно недоступно'; color: #92909a; font-size: 10px; }

.p2-direction-grid { grid-auto-rows: 238px; gap: 12px; }
.p2-category-card { padding: 22px; border: 1px solid #e1e1e6; border-radius: 14px; background: #f7f7f8; box-shadow: none; }
.p2-category-card:hover { transform: translateY(-2px); border-color: #c9c7d0; box-shadow: 0 8px 24px rgba(29, 27, 36, .07); }
.p2-category-card::before { display: none; }
.p2-category-card::after { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--brand-cyan); opacity: .75; }
.p2-category-card--nail::after, .p2-category-card--beauty::after { background: var(--brand-magenta); }
.p2-category-card--repair::after, .p2-category-card--tools::after { background: var(--brand-purple); }
.p2-category-card strong { font-size: 25px; }
.p2-category-card__copy { max-width: 52%; color: #5f5c66; }
.p2-category-card img { right: 1%; bottom: 0; width: 50%; height: 82%; filter: none; }
.p2-category-card:not(.p2-category-card--wide) img { right: -3%; bottom: 2%; width: 55%; height: 64%; }
.p2-category-card__arrow { left: 22px; bottom: 18px; width: 34px; height: 34px; border: 1px solid #dedde3; box-shadow: none; }

.p2-promo {
  min-height: 292px;
  grid-template-columns: 45% 55%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dedee3;
  border-radius: 16px;
  background: #f2f3f5;
  color: var(--ink);
}
.p2-promo::before, .p2-promo__art { display: none; }
.p2-promo__content { padding: 42px 46px; }
.p2-promo__label { display: inline-block; margin-bottom: 12px; padding: 5px 8px; border-radius: 4px; background: #e8e5f2; color: var(--brand-purple); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.p2-promo h2 { margin: 0 0 10px; color: #24222a; font-size: clamp(32px, 3.4vw, 48px); }
.p2-promo p { color: #65626b; }
.p2-promo__products { display: flex; align-items: flex-end; justify-content: center; gap: 8px; padding: 28px 34px 22px; border-left: 1px solid #dedee3; background: #fff; }
.p2-promo__products img { width: 31%; height: 230px; object-fit: contain; mix-blend-mode: multiply; }
.p2-promo__products img:nth-child(2) { height: 205px; }

.p2-product-grid { gap: 10px; }
.p2-product-card { border-color: #dedee3; border-radius: 12px; }
.p2-product-card:hover { transform: translateY(-2px); border-color: #bbb8c2; box-shadow: 0 8px 24px rgba(32, 30, 39, .08); }
.p2-product-card__image { height: 205px; padding: 16px; background: #fff; }
.p2-product-card__body { padding: 12px 14px 14px; }
.p2-stock { margin-bottom: 5px; }
.p2-product-card__title { min-height: 59px; color: #4e4b55; }
.p2-price strong { color: #24222a; font-size: 18px; }
.p2-favorite { top: 10px; right: 10px; border-radius: 8px; background: #fff; }

.p2-how { grid-template-columns: 28% 72%; gap: 40px; padding: 36px 0; border-top: 1px solid #dedee3; border-bottom: 1px solid #dedee3; border-radius: 0; background: #fff; }
.p2-how ol { gap: 0; }
.p2-how li { min-height: 168px; padding: 18px; border: 0; border-left: 1px solid #dedee3; border-radius: 0; background: #fff; }
.p2-how li::after { display: none; }
.p2-how li b { color: #85818e; }
.p2-how li strong { margin-top: auto; }

.p2-b2b { grid-template-columns: 36% 64%; gap: 42px; padding: 46px; border-radius: 16px; background: #30284f; }
.p2-b2b__features { gap: 0; border: 1px solid rgba(255,255,255,.18); }
.p2-b2b__features div { min-height: 160px; padding: 22px 18px; border: 0; border-right: 1px solid rgba(255,255,255,.16); border-radius: 0; background: transparent; }
.p2-b2b__features div:last-child { border-right: 0; }
.p2-b2b__features b { display: none; }
.p2-b2b__features strong { margin-top: auto; }

.p2-trust { border-radius: 12px; }
.p2-content-grid { gap: 10px; }
.p2-content-grid a, .p2-content-grid a:nth-child(2), .p2-content-grid a:nth-child(3) { min-height: 190px; border: 1px solid #dedee3; border-radius: 12px; background: #f5f6f7; color: #24222a; }
.p2-content-grid a:first-child { background: #ececf0; }
.p2-content-grid a:hover { transform: translateY(-2px); border-color: #bbb8c2; }
.p2-content-grid span { color: var(--brand-purple); opacity: 1; }
.p2-footer { background: #27232f; }

@media (max-width: 1240px) {
  .p2-hero { min-height: 545px; }
  .p2-hero__content { padding: 52px 38px 50px 44px; }
  .p2-hero h1 { font-size: clamp(39px, 4.2vw, 54px); }
  .p2-hero__showcase a { min-height: 195px; }
  .p2-b2b { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .p2-header__main { height: 72px; }
  .p2-hero { min-height: auto; grid-template-columns: 1fr; }
  .p2-hero__content { padding: 42px 38px; }
  .p2-hero__visual { min-height: 410px; padding: 20px; border-top: 1px solid #e0e0e5; border-left: 0; }
  .p2-hero__showcase img { height: 130px; }
  .p2-direction-grid { grid-auto-rows: 220px; }
  .p2-promo { grid-template-columns: 1fr 1fr; }
  .p2-promo__products { opacity: 1; border-left: 1px solid #dedee3; }
  .p2-how { grid-template-columns: 1fr; gap: 22px; }
  .p2-b2b { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .p2-section { margin-top: 60px; }
  .p2-section-heading { align-items: flex-end; }
  .p2-section-heading h2, .p2-how h2, .p2-b2b h2 { font-size: 29px; }
  .p2-section-heading p { max-width: 280px; font-size: 12px; }
  .p2-hero { width: calc(100% - 16px); border-radius: 12px; }
  .p2-hero__content { padding: 32px 20px 28px; }
  .p2-hero h1 { margin-top: 15px; font-size: 36px; line-height: 1.06; }
  .p2-hero__lead { font-size: 14px; }
  .p2-hero__proof { flex-wrap: wrap; margin-bottom: 22px; }
  .p2-hero__visual { min-height: 345px; padding: 14px; }
  .p2-hero__visual-head { padding-bottom: 12px; }
  .p2-hero__visual-head strong { display: none; }
  .p2-hero__showcase a { min-height: 132px; padding: 10px 8px 28px; }
  .p2-hero__showcase img { height: 98px; }
  .p2-hero__showcase span { left: 9px; bottom: 8px; font-size: 9px; }
  .p2-category-card, .p2-category-card--wide { min-height: 230px; border-radius: 12px; }
  .p2-promo { min-height: auto; grid-template-columns: 1fr; border-radius: 12px; }
  .p2-promo__content { padding: 30px 22px; }
  .p2-promo h2 { font-size: 35px; }
  .p2-promo__products { min-height: 210px; padding: 18px; border-top: 1px solid #dedee3; border-left: 0; }
  .p2-promo__products img { height: 175px; }
  .p2-promo__products img:nth-child(2) { height: 155px; }
  .p2-product-card { border-radius: 10px; }
  .p2-how { padding: 28px 0; }
  .p2-how ol { margin-right: -14px; padding-right: 14px; }
  .p2-how li { min-height: 150px; border: 1px solid #dedee3; border-radius: 10px; }
  .p2-b2b { padding: 32px 22px; border-radius: 12px; }
  .p2-b2b__features { border: 0; }
  .p2-b2b__features div { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
  .p2-trust { border-radius: 10px; }
  .p2-content-grid a, .p2-content-grid a:first-child { min-height: 180px; border-radius: 10px; }
}

/* Strict premium retail art direction. */
.p2-container { width: min(1400px, calc(100% - 56px)); }
.p2-section { margin-top: 92px; }
.p2-section-heading { align-items: flex-end; margin-bottom: 30px; }
.p2-section-heading h2, .p2-how h2, .p2-b2b h2 { font-size: clamp(38px, 3.25vw, 48px); line-height: 1.04; letter-spacing: -.045em; }
.p2-section-heading p { margin-top: 10px; font-size: 15px; line-height: 1.5; }

.p2-utility__inner { min-height: 30px; }
.p2-header__main { height: 76px; grid-template-columns: 155px auto minmax(330px, 1fr) auto; }
.p2-logo { width: 142px; }
.p2-catalog-link { padding: 10px 16px; border-color: #d8d2e8; background: #f2eff8; color: var(--brand-purple); }
.p2-catalog-link:hover { background: #e8e2f4; color: #342557; }
.p2-search--header { height: 44px; background: #fff; }
.p2-actions svg { width: 20px; height: 20px; }

.p2-hero { min-height: 610px; grid-template-columns: 55% 45%; border-color: #e5e3e9; background: #fff; }
.p2-hero__content { padding: 72px 58px 64px; background: #fff; }
.p2-hero .p2-kicker { padding: 0; background: none; color: var(--brand-purple); font-size: 11px; letter-spacing: .1em; }
.p2-hero h1 { max-width: 760px; margin: 21px 0 24px; font-size: clamp(62px, 5vw, 74px); line-height: .98; letter-spacing: -.065em; }
.p2-hero h1 em { display: inline-block; color: var(--brand-purple); font-style: normal; }
.p2-hero__lead { max-width: 610px; color: #55515d; font-size: 18px; line-height: 1.55; }
.p2-hero__proof { margin: 28px 0 28px; font-size: 14px; }
.p2-search--hero { height: 58px; border-radius: 9px; }
.p2-search--hero button { background: var(--brand-purple); }
.p2-hero__visual { min-height: 610px; padding: 30px 32px 24px; overflow: hidden; background: #f5f3f7; }
.p2-hero__visual-head { position: relative; z-index: 5; padding-bottom: 0; }
.p2-hero__showcase { position: relative; flex: 1; display: block; border: 0; background: transparent; isolation: isolate; }
.p2-hero__showcase::before { content: ''; position: absolute; inset: 12% 2% 5%; z-index: -2; border-radius: 48% 48% 18% 18%; background: radial-gradient(circle at 38% 60%, rgba(32,204,226,.26), transparent 34%), radial-gradient(circle at 68% 42%, rgba(126,80,214,.22), transparent 42%), radial-gradient(circle at 55% 78%, rgba(213,99,207,.14), transparent 32%); filter: blur(9px); }
.p2-hero__showcase::after { content: ''; position: absolute; left: 7%; right: 5%; bottom: 38px; height: 1px; background: linear-gradient(90deg, transparent, #c9c4d1 18%, #c9c4d1 82%, transparent); }
.p2-hero__showcase a { position: absolute; display: block; min-height: 0; padding: 0; overflow: visible; background: transparent; mix-blend-mode: multiply; }
.p2-hero__showcase a:nth-child(1) { left: 1%; bottom: 50px; width: 29%; z-index: 3; }
.p2-hero__showcase a:nth-child(2) { left: 22%; top: 34px; width: 40%; z-index: 1; }
.p2-hero__showcase a:nth-child(3) { right: 2%; bottom: 52px; width: 32%; z-index: 2; }
.p2-hero__showcase a:nth-child(4) { right: 5%; top: 44px; width: 47%; z-index: 4; }
.p2-hero__showcase img { width: 100%; height: 310px; object-fit: contain; mix-blend-mode: normal; filter: none; }
.p2-hero__showcase a:nth-child(2) img { height: 280px; }
.p2-hero__showcase a:nth-child(4) img { height: 230px; }
.p2-hero__showcase span { display: none; }

.p2-direction-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 14px; }
.p2-category-card--wide { grid-column: auto; }
.p2-category-card:nth-child(1) { grid-column: span 5; }
.p2-category-card:nth-child(2) { grid-column: span 7; }
.p2-category-card:nth-child(n+3) { grid-column: span 3; }
.p2-category-card { padding: 27px; overflow: hidden; border-color: #e2e0e6; background: #fafafa; }
.p2-category-card:nth-child(1) { background: #f0f6f6; }
.p2-category-card:nth-child(2) { background: #f8f2f7; }
.p2-category-card:nth-child(3) { background: #f6f2f7; }
.p2-category-card:nth-child(4) { background: #f1f6f6; }
.p2-category-card:nth-child(5) { background: #f5f4f2; }
.p2-category-card:nth-child(6) { background: #f2f1f5; }
.p2-category-card::after { inset: 0 auto auto 27px; width: 30px; height: 2px; opacity: .8; }
.p2-category-card__eyebrow { margin-top: 9px; color: #76717e; }
.p2-category-card__eyebrow { font-size: 0; }
.p2-category-card:nth-child(1) .p2-category-card__eyebrow::before { content: '01 · Автомобиль'; }
.p2-category-card:nth-child(2) .p2-category-card__eyebrow::before { content: '02 · Ногтевой сервис'; }
.p2-category-card:nth-child(3) .p2-category-card__eyebrow::before { content: '03 · Уход'; }
.p2-category-card:nth-child(4) .p2-category-card__eyebrow::before { content: '04 · Бытовая химия'; }
.p2-category-card:nth-child(5) .p2-category-card__eyebrow::before { content: '05 · Материалы'; }
.p2-category-card:nth-child(6) .p2-category-card__eyebrow::before { content: '06 · Для работы'; }
.p2-category-card__eyebrow::before { font-size: 10px; letter-spacing: .09em; }
.p2-category-card strong { font-size: 31px; }
.p2-category-card__copy { max-width: 53%; font-size: 13px; }
.p2-category-card img, .p2-category-card:not(.p2-category-card--wide) img { right: 2%; bottom: 8px; width: 49%; height: 78%; object-fit: contain; }
.p2-category-card:nth-child(1) img, .p2-category-card:nth-child(2) img { width: 48%; height: 82%; }
.p2-category-card:hover img { transform: scale(1.035); }
.p2-category-card:hover .p2-category-card__arrow { transform: translateX(3px); }

.p2-promo { min-height: 360px; grid-template-columns: 43% 57%; border: 0; background: linear-gradient(112deg, #184e72 0%, #43316f 54%, #79418d 100%); color: #fff; }
.p2-promo::before { display: block; background: radial-gradient(circle at 14% 15%, rgba(26,204,231,.32), transparent 28%), radial-gradient(circle at 88% 30%, rgba(213,99,207,.28), transparent 34%); }
.p2-promo__content { position: relative; z-index: 2; padding: 56px 54px; }
.p2-promo__label { background: rgba(255,255,255,.12); color: #fff; }
.p2-promo h2 { color: #fff; font-size: clamp(46px, 4vw, 60px); }
.p2-promo p { max-width: 520px; color: rgba(255,255,255,.78); font-size: 16px; }
.p2-promo .p2-button { background: #fff; color: #2b2540; }
.p2-promo__products { position: relative; z-index: 1; align-items: center; gap: 0; padding: 30px 36px 26px; overflow: hidden; border-left: 0; background: transparent; }
.p2-promo__products::before { content: ''; position: absolute; width: 480px; height: 240px; border-radius: 50%; background: rgba(85,217,232,.18); filter: blur(40px); }
.p2-promo-product { position: relative; z-index: 1; width: 34%; height: 300px; display: grid; place-items: center; }
.p2-promo-product:nth-child(1) { transform: translate(18px, 16px) rotate(-4deg); }
.p2-promo-product:nth-child(2) { z-index: 3; height: 330px; transform: translateY(-4px); }
.p2-promo-product:nth-child(3) { transform: translate(-18px, 20px) rotate(5deg); }
.p2-promo-product img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 22px 25px rgba(9,4,28,.24)); }
.p2-promo-product.p2-media-unavailable { width: 24%; height: 220px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.p2-promo-product.p2-media-unavailable::after { content: 'PRODUCT'; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .12em; }

.p2-product-grid { gap: 12px; }
.p2-product-card__image { height: 186px; padding: 13px; }
.p2-product-card__body { padding: 11px 13px 13px; }
.p2-product-card__title { min-height: 54px; -webkit-line-clamp: 2; font-size: 12px; }
.p2-price { height: 42px; }
.p2-product-card .p2-button { background: var(--brand-purple); }

.p2-how { grid-template-columns: 34% 66%; gap: 48px; padding: 44px 0; }
.p2-how__lead p { margin: 13px 0 22px; }
.p2-how__note { color: var(--brand-purple); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.p2-how ol { grid-template-columns: repeat(3, 1fr); }
.p2-how li { min-height: 178px; padding: 22px; }
.p2-how li b { color: var(--brand-violet); }
.p2-how li strong { font-size: 17px; }

.p2-b2b { padding: 45px 50px; background: #352a59; }
.p2-b2b::before { content: ''; position: absolute; left: 0; top: 45px; width: 4px; height: 76px; background: linear-gradient(var(--brand-cyan), var(--brand-magenta)); }
.p2-b2b h2 { max-width: 430px; }
.p2-b2b__lead p { margin-top: 16px; }
.p2-b2b__features div { min-height: 142px; }

.p2-trust { margin-top: 20px; border-inline: 0; border-radius: 0; }
.p2-trust div { min-height: 98px; padding-inline: 28px; }
.p2-trust strong { font-size: 21px; }

.p2-content-grid { grid-template-columns: 1.35fr 1fr 1fr; grid-auto-rows: 250px; gap: 14px; }
.p2-content-grid a, .p2-content-grid a:nth-child(2), .p2-content-grid a:nth-child(3), .p2-content-grid a:first-child { position: relative; display: grid; grid-template-columns: 57% 43%; align-items: end; min-height: 250px; padding: 28px; overflow: hidden; background: #f3f3f5; }
.p2-content-grid a:first-child { background: #ebeef0; }
.p2-content-grid a:nth-child(2) { grid-template-columns: 60% 40%; background: #f6f0f4; }
.p2-content-grid a:nth-child(3) { grid-template-columns: 58% 42%; background: #f0f2f5; }
.p2-content-grid a > div { position: relative; z-index: 2; }
.p2-content-grid a img { position: absolute; right: -3%; bottom: 0; width: 46%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s ease; }
.p2-content-grid a:hover img { transform: scale(1.035); }
.p2-content-grid strong { display: block; max-width: 330px; font-size: 19px; }

.p2-footer { background: #282331; }
.p2-footer__wordmark, .p2-footer__brand .p2-logo--footer { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 0; background: transparent; color: #fff; font-size: 25px; font-weight: 800; letter-spacing: .06em; }
.p2-footer__wordmark span { padding: 2px 8px; border: 1px solid rgba(255,255,255,.38); border-radius: 5px; font-size: 16px; }
.p2-footer__brand .p2-logo--footer img { display: none; }
.p2-footer__brand .p2-logo--footer::after { content: 'PROFLINE  23'; color: #fff; }

@media (max-width: 1200px) {
  .p2-header__main { grid-template-columns: 135px auto minmax(260px, 1fr) auto; }
  .p2-hero h1 { font-size: 58px; }
  .p2-category-card:nth-child(1), .p2-category-card:nth-child(2) { grid-column: span 6; }
  .p2-category-card:nth-child(n+3) { grid-column: span 3; }
  .p2-content-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .p2-container { width: min(100% - 32px, 1400px); }
  .p2-hero { grid-template-columns: 1fr; }
  .p2-hero__content { padding: 52px 42px 44px; }
  .p2-hero h1 { font-size: 56px; }
  .p2-hero__visual { min-height: 440px; }
  .p2-direction-grid { grid-template-columns: repeat(2, 1fr); }
  .p2-category-card:nth-child(n) { grid-column: span 1; }
  .p2-promo { grid-template-columns: 46% 54%; }
  .p2-promo__content { padding: 42px 34px; }
  .p2-promo h2 { font-size: 43px; }
  .p2-how { grid-template-columns: 1fr; }
  .p2-content-grid { grid-template-columns: 1fr 1fr; }
  .p2-content-grid a:first-child { grid-column: span 2; }
}

@media (max-width: 600px) {
  .p2-container { width: calc(100% - 28px); }
  .p2-section { margin-top: 68px; }
  .p2-section-heading h2, .p2-how h2, .p2-b2b h2 { font-size: 34px; }
  .p2-section-heading p { font-size: 13px; }
  .p2-hero { width: calc(100% - 16px); }
  .p2-hero__content { padding: 35px 21px 30px; }
  .p2-hero h1 { font-size: 45px; line-height: 1; }
  .p2-hero__lead { font-size: 16px; }
  .p2-hero__proof { margin: 22px 0; }
  .p2-hero__visual { min-height: 345px; padding: 17px; }
  .p2-hero__showcase a:nth-child(1) { left: 0; bottom: 35px; width: 32%; }
  .p2-hero__showcase a:nth-child(2) { left: 19%; top: 24px; width: 42%; }
  .p2-hero__showcase a:nth-child(3) { right: 0; bottom: 36px; width: 33%; }
  .p2-hero__showcase a:nth-child(4) { right: 0; top: 32px; width: 47%; }
  .p2-hero__showcase img { height: 190px; }
  .p2-hero__showcase a:nth-child(2) img { height: 170px; }
  .p2-hero__showcase a:nth-child(4) img { height: 140px; }
  .p2-hero__showcase span { display: none; }
  .p2-direction-grid { display: flex; gap: 12px; }
  .p2-category-card:nth-child(n), .p2-category-card--wide { flex: 0 0 82vw; min-height: 270px; }
  .p2-category-card strong { font-size: 30px; }
  .p2-promo { min-height: auto; grid-template-columns: 1fr; }
  .p2-promo__content { padding: 38px 24px; }
  .p2-promo h2 { font-size: 42px; }
  .p2-promo__products { min-height: 250px; padding: 18px; }
  .p2-promo-product { height: 210px; }
  .p2-promo-product:nth-child(2) { height: 230px; }
  .p2-product-card__image { height: 200px; }
  .p2-how { padding: 34px 0; }
  .p2-how ol { display: flex; }
  .p2-how li { flex-basis: 78vw; }
  .p2-b2b { padding: 38px 24px; }
  .p2-trust { width: calc(100% - 28px); }
  .p2-content-grid { display: flex; }
  .p2-content-grid a, .p2-content-grid a:first-child, .p2-content-grid a:nth-child(2), .p2-content-grid a:nth-child(3) { flex: 0 0 84vw; min-height: 230px; }
}

@media (max-width: 380px) {
  .p2-hero__content { padding-inline: 18px; }
  .p2-hero h1 { font-size: 41px; }
  .p2-hero__lead { font-size: 15px; }
}

/* Premium polish pass: surgical adjustments only. */
.p2-section-heading h2 { font-size: clamp(36px, 3vw, 44px); }
.p2-section-heading p { color: #77737d; }

.p2-header { box-shadow: 0 1px 0 rgba(39,32,52,.03); }
.p2-logo { width: 148px; }
.p2-catalog-link { border-color: #d9d2e8; background: #f6f3fa; }
.p2-catalog-link span { opacity: .75; }
.p2-search--header { border-color: #dddbe1; box-shadow: 0 3px 14px rgba(30,25,42,.035); }
.p2-actions { gap: 20px; }

.p2-hero { grid-template-columns: 55.5% 44.5%; }
.p2-hero__content { padding-right: 64px; }
.p2-hero__visual { padding: 26px 28px 28px; background: #f5f3f7; }
.p2-hero__visual-head { padding-inline: 4px; }
.p2-hero__showcase { margin-top: 15px; overflow: hidden; border: 1px solid rgba(67,49,111,.09); border-radius: 14px; background: #fff; box-shadow: 0 18px 50px rgba(50,39,78,.08); }
.p2-hero__showcase::before { inset: auto 4% -23% 4%; height: 54%; border-radius: 50%; background: radial-gradient(circle at 28% 50%, rgba(24,204,231,.16), transparent 42%), radial-gradient(circle at 62% 48%, rgba(122,86,232,.15), transparent 45%), radial-gradient(circle at 85% 50%, rgba(213,99,207,.1), transparent 38%); filter: blur(18px); }
.p2-hero__showcase::after { left: 7%; right: 7%; bottom: 34px; background: linear-gradient(90deg, transparent, #dfdbe5 15%, #dfdbe5 85%, transparent); }
.p2-hero__showcase a { mix-blend-mode: normal; }
.p2-hero__showcase a:nth-child(1) { left: 2%; bottom: 44px; width: 28%; }
.p2-hero__showcase a:nth-child(2) { left: 20%; top: 22px; width: 41%; }
.p2-hero__showcase a:nth-child(3) { right: 1%; bottom: 45px; width: 31%; }
.p2-hero__showcase a:nth-child(4) { right: 4%; top: 30px; width: 48%; }
.p2-hero__showcase img { opacity: .98; }

.p2-direction-grid { grid-auto-rows: 242px; gap: 12px; }
.p2-category-card { padding: 25px; border-color: #e4e2e7; box-shadow: 0 1px 0 rgba(35,29,46,.02); }
.p2-category-card::after { left: 25px; width: 24px; }
.p2-category-card__eyebrow { margin-top: 7px; }
.p2-category-card strong { margin-top: 1px; font-size: 29px; letter-spacing: -.045em; }
.p2-category-card__copy { margin-top: 8px; line-height: 1.48; }
.p2-category-card img, .p2-category-card:not(.p2-category-card--wide) img { right: 3%; bottom: 9px; width: 47%; height: 76%; }
.p2-category-card__arrow { left: 25px; bottom: 20px; width: 32px; height: 32px; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.p2-category-card:hover { border-color: #cbc5d5; box-shadow: 0 8px 25px rgba(42,34,58,.055); }
.p2-category-card:hover .p2-category-card__arrow { border-color: var(--brand-violet); color: var(--brand-purple); transform: translateX(3px); }

.p2-promo { background: linear-gradient(118deg, #245a78 0%, #34325f 45%, #68417a 76%, #874c82 100%); }
.p2-promo::before { background: radial-gradient(circle at 12% 8%, rgba(56,211,228,.26), transparent 30%), radial-gradient(circle at 91% 22%, rgba(220,111,204,.2), transparent 35%), linear-gradient(105deg, transparent 44%, rgba(255,255,255,.025)); }
.p2-promo__content { padding-left: 58px; }
.p2-promo__label { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); }
.p2-promo .p2-button { box-shadow: 0 10px 28px rgba(12,8,30,.16); }
.p2-promo__products::before { width: 520px; height: 260px; background: radial-gradient(circle, rgba(96,219,231,.17), rgba(185,111,208,.08) 48%, transparent 72%); filter: blur(28px); }
.p2-promo-product { transition: transform .25s ease; }
.p2-promo:hover .p2-promo-product:nth-child(1) { transform: translate(18px, 12px) rotate(-3deg); }
.p2-promo:hover .p2-promo-product:nth-child(2) { transform: translateY(-8px); }
.p2-promo:hover .p2-promo-product:nth-child(3) { transform: translate(-18px, 16px) rotate(4deg); }
.p2-promo-product.p2-media-unavailable { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.045); }
.p2-promo-product.p2-media-unavailable::after { content: ''; width: 44%; height: 68%; border: 1px solid rgba(255,255,255,.25); border-radius: 20px 20px 9px 9px; }
.p2-promo-product.p2-media-unavailable:nth-child(3)::after { width: 62%; height: 52%; border-radius: 7px; }

.p2-product-grid { gap: 14px; }
.p2-product-card { overflow: visible; border-color: #e6e3e9; background: #fff; box-shadow: 0 5px 18px rgba(31,25,43,.035); }
.p2-product-card:hover { border-color: #cfc9d7; box-shadow: 0 12px 30px rgba(40,31,57,.075); }
.p2-product-card__image { position: relative; height: 192px; overflow: hidden; border-radius: 11px 11px 0 0; background: linear-gradient(155deg, #fbfbfc, #f5f4f7); }
.p2-product-card__image::before { content: ''; position: absolute; inset: auto 18% 9% 18%; height: 22px; border-radius: 50%; background: rgba(64,49,93,.08); filter: blur(12px); }
.p2-product-card__image img { position: relative; z-index: 1; }
.p2-product-card__image.p2-media-unavailable { display: grid; align-content: center; justify-items: center; gap: 8px; }
.p2-product-card__image.p2-media-unavailable::before { content: 'PROFLINE 23'; position: static; width: auto; height: auto; border-radius: 0; background: none; color: #8c8795; font-size: 10px; font-weight: 800; letter-spacing: .12em; filter: none; }
.p2-product-card__image.p2-media-unavailable::after { content: 'Изображение готовится'; color: #aaa5af; font-size: 9px; }
.p2-product-card__body { padding: 13px 14px 14px; }
.p2-stock { margin-bottom: 7px; font-size: 9px; letter-spacing: .025em; }
.p2-product-card__title { min-height: 56px; color: #46434c; font-size: 12px; line-height: 1.5; }
.p2-price { height: 43px; gap: 8px; }
.p2-price strong { font-size: 19px; letter-spacing: -.025em; }
.p2-product-card .p2-button { min-height: 40px; border: 1px solid #4e3d78; background: #fff; color: #44336c; }
.p2-product-card .p2-button:hover, .p2-product-card .p2-button.is-added { background: #44336c; color: #fff; }
.p2-favorite { border-color: #e0dce5; background: rgba(255,255,255,.92); }

.p2-how { grid-template-columns: 36% 64%; gap: 32px; padding: 28px 32px; border: 1px solid #e5e2e8; border-radius: 14px; background: #fafafa; }
.p2-how h2 { font-size: clamp(32px, 2.8vw, 40px); }
.p2-how__lead p { margin: 10px 0 17px; }
.p2-how ol { border-left: 1px solid #e1dde5; }
.p2-how li { min-height: 132px; padding: 17px 20px; border-left: 0; border-right: 1px solid #e1dde5; background: transparent; }
.p2-how li:last-child { border-right: 0; }
.p2-how li strong { margin-top: auto; font-size: 15px; }
.p2-how li span { font-size: 10px; }

.p2-b2b { padding: 42px 48px; background: linear-gradient(112deg, #3d3261, #49386e); }
.p2-b2b::after { content: ''; position: absolute; width: 260px; height: 260px; right: -120px; top: -140px; border-radius: 50%; background: rgba(94,221,230,.07); }
.p2-b2b .p2-kicker { color: #b7edf2; }
.p2-b2b h2 { font-size: clamp(36px, 3vw, 44px); }
.p2-b2b__lead p { max-width: 460px; margin-bottom: 22px; }
.p2-b2b__features { border-color: rgba(255,255,255,.13); }
.p2-b2b__features div { min-height: 126px; padding: 18px; border-color: rgba(255,255,255,.12); }
.p2-b2b__features strong { font-size: 13px; }

.p2-trust { padding: 8px 0; border: 0; background: #fafafa; }
.p2-trust div { position: relative; min-height: 86px; padding: 17px 30px 17px 38px; border-right: 0; }
.p2-trust div::before { content: ''; position: absolute; left: 20px; top: 27px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-cyan); }
.p2-trust div:nth-child(2)::before { background: var(--brand-violet); }
.p2-trust div:nth-child(3)::before { background: var(--brand-magenta); }
.p2-trust div:nth-child(4)::before { background: var(--brand-purple); }
.p2-trust strong { font-size: 20px; }

.p2-content-grid { grid-auto-rows: 270px; }
.p2-content-grid a, .p2-content-grid a:nth-child(2), .p2-content-grid a:nth-child(3), .p2-content-grid a:first-child { min-height: 270px; padding: 30px; border-color: #e3e0e6; }
.p2-content-grid a:first-child { grid-template-columns: 54% 46%; background: #eef2f3; }
.p2-content-grid a:nth-child(2) { background: #f6f0f4; }
.p2-content-grid a:nth-child(3) { background: #f1f2f5; }
.p2-content-grid a::after { content: 'Читать  →'; position: absolute; left: 30px; top: 29px; color: #6a6372; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.p2-content-grid a > div { padding-top: 26px; }
.p2-content-grid span { margin-bottom: 14px; }
.p2-content-grid strong { font-size: 20px; line-height: 1.38; }
.p2-content-grid a img { right: 0; bottom: 5%; width: 45%; height: 83%; }
.p2-content-grid a.p2-media-unavailable::before {
  content: 'PROFLINE 23';
  position: absolute;
  right: 32px;
  bottom: 31px;
  width: 38%;
  padding: 18px 0 15px;
  border-top: 1px solid rgba(65, 54, 77, .2);
  border-bottom: 1px solid rgba(65, 54, 77, .2);
  color: rgba(65, 54, 77, .42);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  z-index: 1;
}
.p2-content-grid a.p2-media-unavailable:nth-child(1)::before { content: 'AUTO CARE'; }
.p2-content-grid a.p2-media-unavailable:nth-child(2)::before { content: 'BEAUTY'; }
.p2-content-grid a.p2-media-unavailable:nth-child(3)::before { content: 'TOOLS'; }
.p2-content-grid img.p2-image-unavailable { display: none; }

.p2-footer { position: relative; padding-top: 58px; }
.p2-footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, var(--brand-cyan), var(--brand-violet) 62%, var(--brand-magenta)); opacity: .75; }
.p2-footer__grid { grid-template-columns: 1.55fr repeat(4, 1fr); gap: 50px; }
.p2-footer__wordmark, .p2-footer__brand .p2-logo--footer { margin-bottom: 13px; font-size: 27px; }
.p2-footer__brand p { max-width: 320px; font-size: 12px; }
.p2-footer__brand::after { content: '18 000+ товаров · Доставка по России'; display: block; margin-top: 18px; color: #8de5ed; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.p2-footer__grid strong { color: #fff; }
.p2-footer__bottom { margin-top: 44px; }

@media (max-width: 900px) {
  .p2-hero__content { padding-right: 42px; }
  .p2-hero__showcase { min-height: 360px; }
  .p2-how { grid-template-columns: 1fr; padding: 30px; }
  .p2-how ol { border-top: 1px solid #e1dde5; border-left: 0; }
  .p2-trust div { padding-left: 34px; }
  .p2-footer__grid { grid-template-columns: 1.45fr repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .p2-section-heading h2 { font-size: 32px; }
  .p2-hero__content { padding-right: 21px; }
  .p2-hero__showcase { min-height: 300px; margin-top: 11px; }
  .p2-category-card { padding: 23px; }
  .p2-category-card::after { left: 23px; }
  .p2-category-card__arrow { left: 23px; }
  .p2-promo__content { padding: 36px 24px; }
  .p2-promo__products { min-height: 235px; }
  .p2-product-card { box-shadow: none; }
  .p2-how { padding: 26px 22px; }
  .p2-how ol { gap: 10px; padding-top: 16px; border-top: 1px solid #e1dde5; }
  .p2-how li { min-height: 140px; border: 1px solid #e1dde5; border-radius: 9px; }
  .p2-b2b { padding: 36px 23px; }
  .p2-trust { padding: 5px; }
  .p2-trust div { padding: 15px 10px 15px 25px; }
  .p2-trust div::before { left: 12px; top: 25px; }
  .p2-content-grid a, .p2-content-grid a:first-child, .p2-content-grid a:nth-child(2), .p2-content-grid a:nth-child(3) { min-height: 245px; padding: 25px; }
  .p2-content-grid a::after { left: 25px; top: 24px; }
  .p2-footer { padding-top: 48px; }
}

/* Discovery-first homepage architecture: search, categories, curated paths. */
.p2-header__main {
  height: 76px;
  grid-template-columns: 148px auto minmax(330px, 1fr) auto;
  gap: 24px;
}
.p2-search--header {
  height: 48px;
  border-color: #d8d6dd;
  background: #f8f8f9;
  box-shadow: 0 3px 14px rgba(30, 25, 42, .035);
}
.p2-search--header input { font-size: 13px; }
.p2-search--header button { color: var(--brand-purple); }

.p2-hero {
  position: relative;
  min-height: 500px;
  height: 500px;
  grid-template-columns: 49% 51%;
  overflow: hidden;
  border: 1px solid #e5e2e8;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 13%, rgba(213, 99, 207, .12), transparent 29%),
    radial-gradient(circle at 88% 82%, rgba(24, 204, 231, .16), transparent 34%),
    radial-gradient(circle at 54% 82%, rgba(122, 86, 232, .09), transparent 32%),
    linear-gradient(118deg, #fbfbfc 0%, #f5f3f8 58%, #f2f8fa 100%);
  box-shadow: none;
  isolation: isolate;
}
.p2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  opacity: .7;
  background: linear-gradient(90deg, rgba(255,255,255,.5), transparent 58%);
  pointer-events: none;
}
.p2-hero__content {
  position: relative;
  z-index: 3;
  padding: 56px 20px 52px 58px;
  color: var(--ink);
  background: transparent;
}
.p2-hero .p2-kicker {
  padding: 0;
  background: transparent;
  color: #514766;
  font-size: 10px;
  letter-spacing: .1em;
}
.p2-hero h1 {
  max-width: 680px;
  margin: 19px 0 17px;
  color: #24222a;
  font-size: clamp(48px, 4.35vw, 64px);
  line-height: 1.01;
  letter-spacing: -.057em;
}
.p2-hero h1 em { display: block; margin-top: 7px; font-size: .78em; letter-spacing: -.045em; white-space: nowrap; }
.p2-hero h1 em { color: #493675; font-style: normal; }
.p2-hero__lead {
  max-width: 550px;
  margin-bottom: 17px;
  color: #5e5a65;
  font-size: 16px;
  line-height: 1.55;
}
.p2-hero__proof {
  margin: 0 0 24px;
  color: #6d6973;
  font-size: 12px;
}
.p2-hero__proof strong { color: #29272f; }
.p2-hero__proof span { background: var(--brand-cyan); }
.p2-hero .p2-button { min-height: 46px; padding-inline: 21px; }
.p2-search--hero { display: none !important; }

.p2-hero__art {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%;
}
.p2-hero__ground {
  position: absolute;
  left: 7%;
  right: 4%;
  bottom: 52px;
  height: 34px;
  border-radius: 50%;
  background: rgba(61, 51, 82, .13);
  filter: blur(18px);
}
.p2-hero__ground::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 15px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66,55,83,.25) 15%, rgba(66,55,83,.25) 85%, transparent);
}
.p2-hero__item {
  position: absolute;
  z-index: 2;
  display: block;
  mix-blend-mode: multiply;
  transition: transform .28s ease;
}
.p2-hero__item:hover { transform: translateY(-5px); }
.p2-hero__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: none;
}
.p2-hero__item--one { left: 6%; bottom: 42px; width: 28%; height: 69%; }
.p2-hero__item--two { left: 2%; top: 34px; width: 35%; height: 46%; }
.p2-hero__item--three { right: 1%; bottom: 40px; width: 30%; height: 70%; }
.p2-hero__item--four { display: none; }
.p2-hero__item--five { left: 36%; bottom: 40px; width: 30%; height: 61%; }
.p2-hero__item.p2-media-unavailable { display: none; }

.p2-directions { margin-top: 64px; }
.p2-directions .p2-section-heading { margin-bottom: 20px; }
.p2-directions .p2-section-heading h2 { font-size: 38px; }

.p2-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid #e1dfe4;
  border-radius: 12px;
  background: #fafafa;
}
.p2-service-strip > div {
  position: relative;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px 16px 38px;
  border-right: 1px solid #e1dfe4;
}
.p2-service-strip > div:last-child { border-right: 0; }
.p2-service-strip > div::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 29px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
}
.p2-service-strip > div:nth-child(2)::before { background: var(--brand-violet); }
.p2-service-strip > div:nth-child(3)::before { background: var(--brand-magenta); }
.p2-service-strip > div:nth-child(4)::before { background: var(--brand-purple); }
.p2-service-strip strong { font-size: 14px; }
.p2-service-strip span { margin-top: 4px; color: #77737c; font-size: 10px; }

@media (max-width: 1200px) {
  .p2-header__main { grid-template-columns: 128px auto minmax(250px, 1fr) auto; gap: 17px; }
  .p2-hero { height: 485px; min-height: 485px; grid-template-columns: 51% 49%; }
  .p2-hero__content { padding-left: 44px; }
  .p2-hero h1 { font-size: clamp(45px, 4.5vw, 56px); }
}

@media (max-width: 900px) {
  .p2-header__main {
    height: auto;
    min-height: 126px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: 56px 46px;
    gap: 8px 12px;
    padding-block: 8px 12px;
  }
  .p2-logo { grid-column: 1; grid-row: 1; width: 122px; margin-right: 0; }
  .p2-actions { grid-column: 2; grid-row: 1; }
  .p2-mobile-toggle { grid-column: 3; grid-row: 1; order: initial; }
  .p2-search--header {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 46px;
    display: flex;
  }
  .p2-mobile-menu { inset: 126px 0 0; padding-top: 12px; }
  .p2-mobile-menu .p2-container { padding-top: 0; }

  .p2-hero {
    width: calc(100% - 32px);
    min-height: 660px;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 280px;
  }
  .p2-hero__content { padding: 42px 38px 10px; }
  .p2-hero__art { min-height: 280px; }
  .p2-hero__item--one { left: 13%; bottom: 28px; width: 19%; height: 66%; }
  .p2-hero__item--two { left: 4%; top: 8px; width: 31%; height: 48%; }
  .p2-hero__item--three { right: 7%; bottom: 27px; width: 22%; height: 59%; }
  .p2-hero__item--four { right: 2%; top: 5px; width: 49%; height: 41%; }
  .p2-hero__item--five { left: 43%; bottom: 27px; width: 22%; height: 52%; }
  .p2-hero__ground { bottom: 29px; }
  .p2-service-strip { grid-template-columns: repeat(2, 1fr); }
  .p2-service-strip > div:nth-child(2) { border-right: 0; }
  .p2-service-strip > div:nth-child(-n+2) { border-bottom: 1px solid #e1dfe4; }
}

@media (max-width: 600px) {
  .p2-header__main { width: calc(100% - 24px); }
  .p2-hero {
    width: calc(100% - 20px);
    min-height: 625px;
    grid-template-rows: auto 250px;
    border-radius: 14px;
  }
  .p2-hero__content { padding: 30px 22px 6px; }
  .p2-hero .p2-kicker { font-size: 9px; }
  .p2-hero h1 { margin: 15px 0 15px; font-size: 41px; line-height: 1.01; }
  .p2-hero__lead { margin-bottom: 14px; font-size: 14px; }
  .p2-hero__proof { margin-bottom: 19px; font-size: 10px; }
  .p2-hero .p2-button { min-height: 44px; }
  .p2-hero__art { min-height: 250px; }
  .p2-directions { margin-top: 54px; }
  .p2-directions .p2-section-heading h2 { font-size: 32px; }
  .p2-service-strip { margin-top: 48px; }
  .p2-service-strip > div { min-height: 74px; padding: 13px 12px 13px 28px; }
  .p2-service-strip > div::before { left: 13px; top: 26px; }
  .p2-service-strip strong { font-size: 12px; }
  .p2-service-strip span { font-size: 9px; }
}

/* Hero reference pass: live commerce content with staged product cut-outs. */
.p2-hero {
  min-height: 540px;
  height: 540px;
  grid-template-columns: 47% 53%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 22%, rgba(163, 147, 255, .19), transparent 29%),
    radial-gradient(circle at 92% 76%, rgba(97, 180, 255, .2), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(24, 204, 231, .08), transparent 28%),
    linear-gradient(112deg, #fdfdfd 0%, #f8f8fc 42%, #f1f0ff 72%, #eaf4ff 100%);
}
.p2-hero::before {
  background: radial-gradient(circle at 38% 52%, rgba(255,255,255,.74), transparent 38%);
  opacity: 1;
}
.p2-hero__content { padding: 58px 16px 52px 58px; }
.p2-hero h1 {
  margin: 20px 0 19px;
  font-size: clamp(47px, 4.1vw, 61px);
  line-height: 1.01;
}
.p2-hero__lead { max-width: 530px; margin-bottom: 23px; font-size: 16px; }
.p2-hero__proof { display: none; }
.p2-hero__trust {
  width: max-content;
  max-width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 15px;
  border: 1px solid rgba(75, 65, 100, .18);
  border-radius: 11px;
  background: rgba(255,255,255,.38);
}
.p2-hero__trust span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.p2-hero__trust svg { width: 20px; height: 20px; fill: none; stroke: #272335; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.p2-hero__trust strong { color: #2b2831; font-size: 11px; font-weight: 700; }
.p2-hero__trust i { width: 3px; height: 3px; flex: 0 0 3px; border-radius: 50%; background: #342d45; }
.p2-hero .p2-button { min-width: 232px; margin-top: 27px; }

.p2-hero__art::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 470px;
  height: 470px;
  top: 31px;
  right: -13px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: 24px 20px 38px rgba(84, 81, 153, .12);
}
.p2-hero__art::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 5%;
  right: -4%;
  bottom: 24px;
  height: 92px;
  border-radius: 50% / 24%;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,239,250,.98));
  box-shadow: 0 25px 30px rgba(76, 68, 128, .15), inset 0 -10px 20px rgba(107, 99, 163, .06);
}
.p2-hero__ground {
  left: 24%;
  right: 9%;
  bottom: 89px;
  z-index: 1;
  height: 65px;
  border-radius: 50% / 25%;
  background: linear-gradient(180deg, #fff, #ececf7);
  filter: none;
  box-shadow: 0 16px 22px rgba(80, 72, 129, .1);
}
.p2-hero__ground::after { display: none; }
.p2-hero__item { z-index: 3; mix-blend-mode: normal; }
.p2-hero__item img { filter: drop-shadow(0 17px 12px rgba(47, 40, 72, .16)); }
.p2-hero__item--one { display: none; }
.p2-hero__item--two { left: 33%; top: auto; bottom: 62px; width: 24%; height: 43%; z-index: 5; }
.p2-hero__item--three { right: 10%; bottom: 87px; width: 25%; height: 57%; z-index: 3; clip-path: polygon(42% 0,58% 0,59% 9%,66% 13%,72% 24%,78% 39%,80% 100%,20% 100%,22% 39%,28% 24%,34% 13%,41% 9%); }
.p2-hero__item--four { right: -4%; bottom: 7px; width: 52%; height: 34%; display: block; z-index: 6; clip-path: polygon(0 20%,48% 20%,100% 0,100% 65%,58% 69%,0 90%); transform: rotate(-8deg); }
.p2-hero__item--four:hover { transform: rotate(-8deg) translateY(-4px); }
.p2-hero__item--five { left: 5%; bottom: 68px; width: 36%; height: 74%; z-index: 4; }
.p2-hero__item--five img { transform: scale(1.2); }
.p2-hero__item--six { left: 45%; top: 24px; width: 38%; height: 78%; z-index: 2; clip-path: inset(14% 12% 8% 12%); }
.p2-hero__item--six img { transform: scale(1.22); }

@media (max-width: 1200px) {
  .p2-hero { height: 520px; min-height: 520px; }
  .p2-hero__content { padding-left: 44px; }
  .p2-hero h1 { font-size: 51px; }
  .p2-hero__trust { gap: 9px; padding-inline: 11px; }
  .p2-hero__trust strong { font-size: 10px; }
  .p2-hero__trust svg { width: 18px; height: 18px; }
}

@media (max-width: 900px) {
  .p2-hero {
    height: auto;
    min-height: 700px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 285px;
  }
  .p2-hero__content { padding: 40px 38px 8px; }
  .p2-hero__art::before { width: 340px; height: 340px; top: -8px; right: -18px; }
  .p2-hero__art::after { bottom: 18px; height: 68px; }
  .p2-hero__ground { bottom: 67px; height: 48px; }
  .p2-hero__item--two { left: 34%; bottom: 42px; width: 22%; height: 45%; }
  .p2-hero__item--three { display: none; }
  .p2-hero__item--four { display: none; }
  .p2-hero__item--five { left: 8%; bottom: 50px; width: 28%; height: 69%; }
  .p2-hero__item--six { left: 54%; top: 0; width: 34%; height: 75%; }
}

@media (max-width: 600px) {
  .p2-hero {
    min-height: 660px;
    grid-template-rows: auto 230px;
    border-radius: 20px;
  }
  .p2-hero__content { padding: 28px 22px 4px; }
  .p2-hero h1 { margin: 15px 0; font-size: 40px; }
  .p2-hero h1 em { margin-top: 0; font-size: 1em; white-space: normal; }
  .p2-hero__lead { margin-bottom: 17px; font-size: 13px; line-height: 1.5; }
  .p2-hero__trust { width: 100%; min-height: 0; flex-wrap: wrap; gap: 8px 12px; padding: 10px 12px; }
  .p2-hero__trust span { gap: 6px; }
  .p2-hero__trust strong { font-size: 9px; }
  .p2-hero__trust svg { width: 16px; height: 16px; }
  .p2-hero__trust i { display: none; }
  .p2-hero .p2-button { min-width: 205px; margin-top: 18px; }
  .p2-hero__art { min-height: 230px; }
  .p2-hero__art::before { width: 270px; height: 270px; }
  .p2-hero__item--two { left: 33%; width: 24%; }
  .p2-hero__item--five { left: 4%; width: 31%; }
  .p2-hero__item--six { left: 55%; width: 38%; }
}

/* Approved hero composition: cropped directly from the signed-off reference. */
.p2-hero__art { overflow: hidden; }
.p2-hero__art::before,
.p2-hero__art::after,
.p2-hero__ground,
.p2-hero__item { display: none !important; }
.p2-hero__composition {
  position: absolute;
  z-index: 2;
  top: -1%;
  right: 0;
  width: auto;
  max-width: none;
  height: 106%;
  display: block;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 5%, #000 11%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 5%, #000 11%, #000 100%);
}

@media (max-width: 900px) {
  .p2-hero__composition {
    top: -10%;
    right: -6%;
    width: 112%;
    height: 122%;
    object-fit: cover;
    object-position: 54% 55%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 100%);
  }
}

@media (max-width: 600px) {
  .p2-hero__composition {
    top: -13%;
    right: -9%;
    width: 118%;
    height: 128%;
    object-position: 56% 56%;
  }
}

/* Commerce architecture pass below the approved hero. */
.p2-product-section--secondary {
  position: relative;
  margin-top: 68px;
  padding-top: 66px;
}
.p2-product-section--secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8e6eb;
}
.p2-product-section--secondary .p2-section-heading p { color: #74717a; }
.p2-footer__bottom { flex-wrap: wrap; }

@media (max-width: 600px) {
  .p2-product-section--secondary {
    margin-top: 48px;
    padding-top: 46px;
  }
}

/* Final staging polish: keep Profline components isolated from Idea widget CSS. */
body.p2-homepage,
body.p2-internal,
body.p2-homepage :is(.p2-header, .p2-main, .p2-footer, button, input, select, textarea),
body.p2-internal :is(.p2-header, .page_layout, .p2-footer, button, input, select, textarea) {
  font-family: Manrope, Arial, sans-serif;
}
body.p2-homepage :is(.p2-header, .p2-main, .p2-footer) :is(h1, h2, h3, h4),
body.p2-internal :is(.p2-header, .page_layout, .p2-footer) :is(h1, h2, h3, h4) {
  font-family: Manrope, Arial, sans-serif;
}
body.p2-homepage :is(.p2-header, .p2-main, .p2-footer) a,
body.p2-internal :is(.p2-header, .page_layout, .p2-footer) a {
  color: inherit;
  text-decoration: none;
}
body.p2-homepage :is(a, button, input, select, textarea, summary):focus-visible,
body.p2-internal :is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(79,126,244,.48);
  outline-offset: 3px;
}
body.p2-homepage :is(.p2-button, .p2-product-card__title, .p2-content-grid a, .p2-footer a),
body.p2-internal :is(.p2-button, .p2-footer a) {
  text-decoration: none !important;
}
body.p2-homepage .p2-button,
body.p2-internal .p2-button {
  min-height: 50px;
  border: 0;
  background: var(--gradient) !important;
  color: #fff !important;
}
body.p2-homepage .p2-button--light,
body.p2-internal .p2-button--light { background: #fff !important; color: var(--brand-purple) !important; }
body.p2-homepage .p2-button--muted,
body.p2-internal .p2-button--muted { background: var(--surface) !important; color: var(--ink-soft) !important; }
body.p2-homepage .p2-mobile-toggle,
body.p2-internal .p2-mobile-toggle { width: 44px; height: 44px; }

/* Internal commerce pages retain InSales widgets and behavior, with a shared shell. */
body.p2-internal {
  margin: 0;
  overflow-x: clip;
  background: #f7f8fb;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body.p2-internal .widget-type_system_widget_v4_page_title_1 { display: block !important; }
body.p2-internal .page_layout {
  width: min(var(--container), calc(100% - 56px));
  min-height: 55vh;
  margin: 0 auto;
  padding: 34px 0 76px;
  display: block;
  background: transparent;
}
body.p2-internal .page_layout > main,
body.p2-internal .page_layout > .page_section_top {
  width: 100%;
  min-width: 0;
  margin: 0;
}
body.p2-internal .page_layout .layout,
body.p2-internal .page_layout .layout__content {
  width: 100%;
  max-width: none;
}
body.p2-internal :is(.page-headding, .product__title, .heading) {
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -.035em;
}
body.p2-internal .page-headding {
  margin: 8px 0 26px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}
body.p2-internal :is(.breadcrumb-wrapper, .breadcrumb) {
  color: #797586;
  font-size: 12px;
}
body.p2-internal .breadcrumb-link { color: #625e6b; }
body.p2-internal .breadcrumb-link:hover { color: var(--brand-violet); }
body.p2-internal :is(.button, button, input[type='submit'], .add-cart-counter__btn) {
  min-height: 44px;
  border-radius: 11px;
  font-family: Manrope, Arial, sans-serif;
  font-weight: 700;
}
body.p2-internal :is(input:not([type='checkbox']):not([type='radio']), select, textarea) {
  min-height: 44px;
  border: 1px solid #dedce7;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
}
body.p2-internal :is(.filter-mobile-controls, .collection-order) .button {
  border: 1px solid #dedce7;
  background: #fff;
  color: var(--ink);
}
body.p2-internal .product-preview {
  height: 100%;
  overflow: hidden;
  border: 1px solid #e7e5ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(24,20,54,.045);
}
body.p2-internal .product-preview__content { padding: 12px 15px 16px; }
body.p2-internal .product-preview__photo { background: #fff; }
body.p2-internal .product-preview__available {
  color: #20875b;
  font-size: 11px;
  font-weight: 700;
}
body.p2-internal .product-preview__title a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
  text-decoration: none !important;
}
body.p2-internal .product-preview__price-cur {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}
body.p2-internal .product-preview .add-cart-counter__btn,
body.p2-internal .product__buy-btn-area .add-cart-counter__btn {
  border: 0;
  background: linear-gradient(115deg, var(--brand-blue), var(--brand-violet));
  color: #fff;
}
body.p2-internal .product {
  overflow: hidden;
  padding: clamp(20px, 3vw, 42px);
  border: 1px solid #e7e5ec;
  border-radius: 16px;
  background: #fff;
}
body.p2-internal .product__title {
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
}
body.p2-internal .product__price-cur { color: var(--ink); font-weight: 800; }
body.p2-internal :is(.pagination-link, .pagination-item) {
  border-radius: 10px;
  text-decoration: none !important;
}
body.p2-internal :is(.page-content, .article, .blog, .editor-content, .text) {
  color: #4f4b5d;
  line-height: 1.7;
}
body.p2-internal :is(.page-content, .article, .blog, .editor-content, .text) a {
  color: var(--brand-violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.p2-internal :is(.cart__area-controls, .cart__area-controls-sticky, .cart__area-count, .cart__area-coupon, .cart-controls, .submit-block) {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
body.p2-internal .cart__area-items { width: calc(100% - 2px); max-width: calc(100% - 2px); }
body.p2-internal .cart-item :is(.item-title, .item-counter, .item-delete) {
  width: calc(100% - 2px);
  max-width: calc(100% - 2px);
}

@media (max-width: 980px) {
  body.p2-internal .page_layout {
    width: min(calc(100% - 32px), var(--container));
    padding-top: 24px;
  }
}
@media (max-width: 600px) {
  body.p2-internal .page_layout {
    width: calc(100% - 24px);
    padding: 18px 0 48px;
  }
  body.p2-internal .cart {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }
  body.p2-internal :is(.cart__area-items, .cart__area-controls, .cart-item) {
    min-width: 0;
  }
  body.p2-internal .page-headding { margin-bottom: 18px; font-size: 28px; }
  body.p2-internal .product { padding: 16px; border-radius: 13px; }
  body.p2-internal .product__title { font-size: 25px; }
  body.p2-internal .product-preview { border-radius: 12px; }
  body.p2-internal :is(.button, button, input[type='submit'], .add-cart-counter__btn) { min-height: 44px; }
  body.p2-homepage .p2-mobile-menu .p2-mobile-taxonomy a,
  body.p2-internal .p2-mobile-menu .p2-mobile-taxonomy a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
