:root {
  --bg: #100b10;
  --bg-2: #1b121a;
  --surface: #fff8fb;
  --surface-2: #f7e8ef;
  --text: #21151d;
  --muted: #7d6472;
  --line: rgba(78, 35, 57, .14);
  --accent: #e85f9f;
  --accent-2: #ffb7d4;
  --accent-3: #6f315b;
  --cream: #fff5e8;
  --danger: #b63652;
  --radius: 34px;
  --shadow: 0 34px 90px rgba(51, 18, 38, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 183, 212, .18) 0 18rem, transparent 34rem),
    radial-gradient(circle at 92% 14%, rgba(232, 95, 159, .12) 0 18rem, transparent 36rem),
    var(--surface);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 14px;
  color: #24141f;
  background: #fff;
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid #ff97c8; outline-offset: 3px; }

.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #ffdfeb, #fff7d8, #ffd6e8);
  color: #5a1d3c;
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.28);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 900;
}
.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { to { transform: translateX(-100%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  backdrop-filter: blur(24px);
  background: rgba(16, 11, 16, .72);
  border-bottom: 1px solid rgba(255, 247, 251, .12);
  color: #fff7fb;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 950; font-size: 22px; letter-spacing: -.04em; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 17px;
  mix-blend-mode: screen;
  box-shadow: 0 12px 34px rgba(232, 95, 159, .16);
}
.brand-name { white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 18px; color: rgba(255, 247, 251, .72); font-weight: 750; }
.main-nav a { white-space: nowrap; transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: #fff; transform: translateY(-1px); }
.cart-link span {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  margin-left: 4px;
  border-radius: 999px;
  color: #321023;
  background: linear-gradient(135deg, #fff4bf, #ff9fcb);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(255, 159, 203, .32);
}

main { min-height: 70vh; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .62fr);
  gap: clamp(20px, 4vw, 50px);
  padding: clamp(40px, 7vw, 104px) max(18px, calc((100vw - 1440px) / 2 + 72px)) clamp(30px, 5vw, 70px);
  max-width: none;
  margin: 0;
  color: #fff7fb;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 183, 212, .34) 0 18rem, transparent 34rem),
    radial-gradient(circle at 92% 14%, rgba(232, 95, 159, .25) 0 18rem, transparent 36rem),
    linear-gradient(155deg, var(--bg), #1f111b 58%, #140d13);
}
.hero-content {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 80px);
  border-radius: 44px;
  background:
    linear-gradient(130deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    radial-gradient(circle at 80% 10%, rgba(255, 184, 216, .36), transparent 28rem);
  box-shadow: 0 40px 120px rgba(0,0,0,.28);
  border: 1px solid rgba(255, 247, 251, .16);
}
.hero-content::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -90px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.88) 0 6%, rgba(255, 158, 201, .55) 7% 32%, rgba(255,255,255,0) 70%);
  filter: blur(.2px);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 239, 247, .12);
  color: #ffd1e4;
  border: 1px solid rgba(255, 211, 229, .22);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1 { font-size: clamp(42px, 7vw, 92px); line-height: .86; margin: 24px 0; letter-spacing: -0.075em; }
.hero p, .lead { color: rgba(255, 247, 251, .72); font-size: 20px; line-height: 1.72; max-width: 810px; }
.hero-actions, .card-actions, .form-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button, .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button {
  color: #351024;
  background: linear-gradient(135deg, #fff3bd, #ff97c8 48%, #e85f9f);
  box-shadow: 0 17px 42px rgba(232, 95, 159, .34);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(232, 95, 159, .42); }
.button:disabled { opacity: .48; cursor: not-allowed; transform: none; box-shadow: none; }
.ghost-button, .ghost {
  color: inherit;
  background: rgba(255,255,255,.08);
  border-color: rgba(255, 247, 251, .18);
  backdrop-filter: blur(12px);
}
.ghost-button:hover { transform: translateY(-2px); background: rgba(255,255,255,.13); }
.big { min-height: 54px; padding: 0 25px; }

.hero-card {
  align-self: stretch;
  display: grid;
  gap: 14px;
}
.hero-card div {
  min-height: 150px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(255, 248, 251, .96), rgba(255, 229, 241, .9));
  color: var(--text);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.hero-card strong { display: block; font-size: 26px; letter-spacing: -.05em; margin-bottom: 10px; }
.hero-card span { color: var(--muted); line-height: 1.55; }

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 78px) clamp(18px, 5vw, 72px);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-head h1, .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.065em;
  line-height: .94;
}
.section-head p { color: var(--muted); margin: 0; max-width: 520px; line-height: 1.6; }
.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: #af3b76;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.category-pill {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(232, 95, 159, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #6f4d61;
  cursor: pointer;
  font-weight: 850;
}
.category-pill.active, .category-pill:hover {
  color: #351024;
  background: linear-gradient(135deg, #fff1bd, #ffd3e6);
  border-color: transparent;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-image {
  display: grid;
  place-items: center;
  min-height: 270px;
  background:
    radial-gradient(circle at 38% 25%, rgba(255,255,255,.88), transparent 9rem),
    linear-gradient(135deg, #ffe5f1, #fff9dc 50%, #f5d8ff);
  border-bottom: 1px solid rgba(78, 35, 57, .09);
}
.product-image img { width: 78%; height: 240px; object-fit: contain; filter: drop-shadow(0 24px 32px rgba(86, 35, 66, .18)); }
.product-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.badges { display: flex; gap: 7px; flex-wrap: wrap; min-height: 26px; }
.badges span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff0f7;
  color: #a72f6d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-brand { margin: 14px 0 5px; color: var(--muted); font-weight: 850; font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.product-card h3 { margin: 0; font-size: 23px; line-height: 1.03; letter-spacing: -.045em; }
.product-card h3 a:hover { color: #c84382; }
.product-card p { color: var(--muted); line-height: 1.55; }
.product-card .availability-note {
  margin: 9px 0 0;
  color: #9c3a6c;
  font-size: 12px;
  font-weight: 850;
}
.price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.price-row strong { font-size: 24px; letter-spacing: -.04em; }
.price-row s { color: #a8909f; }
.card-actions .button, .card-actions .ghost-button { min-height: 42px; padding: 0 14px; font-size: 14px; }
.card-actions .ghost-button { background: #fff; border-color: rgba(232,95,159,.18); color: #8f386b; }

.product-detail {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 86px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
}
.detail-image {
  display: grid;
  place-items: center;
  min-height: 610px;
  border-radius: 50px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.95), transparent 12rem),
    linear-gradient(135deg, #ffe5f1, #fff9dc, #eed7ff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.detail-image img { max-height: 520px; object-fit: contain; filter: drop-shadow(0 40px 54px rgba(91, 34, 67, .22)); }
.detail-content {
  padding: clamp(24px, 4vw, 48px);
  border-radius: 42px;
  background: rgba(255, 248, 251, .94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.detail-content .lead { color: var(--muted); }
.detail-content h1 { color: var(--text); font-size: clamp(40px, 5vw, 72px); }
.detail-price strong { font-size: 34px; }
.stock { color: var(--muted); font-weight: 800; }
.info-block {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(232, 95, 159, .13);
}
.info-block h2 { margin: 0 0 8px; font-size: 20px; }
.info-block p { margin: 0; color: var(--muted); line-height: 1.65; }
.notice {
  max-width: 1296px;
  margin: 20px auto 70px;
  padding: 20px 24px;
  border-radius: 24px;
  color: #6f315b;
  background: linear-gradient(135deg, #fff4c8, #ffe4f1);
  border: 1px solid rgba(232, 95, 159, .15);
  line-height: 1.6;
}
.product-detail .notice { margin: 22px 0 0; }

.routines-section {
  max-width: none;
  padding-left: max(18px, calc((100vw - 1440px) / 2 + 72px));
  padding-right: max(18px, calc((100vw - 1440px) / 2 + 72px));
  background: linear-gradient(145deg, #1a1018, #341527 58%, #1b1018);
  color: #fff7fb;
}
.routines-section .section-head p { color: rgba(255, 247, 251, .66); }
.routines-section .section-kicker { color: #ffc2dc; }
.routine-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.routine-card {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.routine-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.routine-topline span { padding: 7px 10px; border-radius: 999px; color: #45152d; background: #ffd7e8; font-size: 12px; font-weight: 950; text-transform: uppercase; }
.routine-topline strong { color: #ffe9b6; }
.routine-images { display: flex; min-height: 116px; align-items: center; justify-content: center; margin: 24px 0 18px; }
.routine-images img {
  width: 88px;
  height: 108px;
  object-fit: contain;
  margin-left: -18px;
  padding: 7px;
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}
.routine-images img:first-child { margin-left: 0; }
.routine-card h3 { margin: 0; font-size: 31px; letter-spacing: -.055em; }
.routine-card > p:not(.product-brand) { color: rgba(255,247,251,.68); line-height: 1.6; }
.routine-card ol { margin: 0 0 24px; padding-left: 22px; color: rgba(255,247,251,.76); line-height: 1.8; }
.routine-card .button { align-self: flex-start; margin-top: auto; }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.steps-grid article {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}
.steps-grid article > span { display: block; color: #d04d8e; font-size: 13px; font-weight: 950; letter-spacing: .14em; }
.steps-grid h3 { margin: 20px 0 8px; font-size: 27px; letter-spacing: -.045em; }
.steps-grid p { margin: 0; color: var(--muted); line-height: 1.6; }

.contacts-page .section-head { align-items: start; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card span { display: block; color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
.contact-card a, .contact-card strong { font-size: 22px; font-weight: 900; word-break: break-word; }
.contact-card a:hover { color: #c84382; }
.contact-card.primary { color: #fff; background: linear-gradient(135deg, #3b172d, #8f386b); }
.contact-card.primary span, .contact-card.primary p { color: rgba(255,255,255,.7); }

.vacancy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .58fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  padding: clamp(48px, 7vw, 104px) max(18px, calc((100vw - 1440px) / 2 + 72px));
  color: #fff7fb;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 183, 212, .32) 0 16rem, transparent 33rem),
    radial-gradient(circle at 94% 8%, rgba(232, 95, 159, .24) 0 18rem, transparent 36rem),
    linear-gradient(150deg, #100b10, #2b1424 62%, #140c12);
}
.vacancy-hero-copy h1 { max-width: 980px; margin-bottom: 28px; }
.vacancy-hero-copy > p { max-width: 840px; color: rgba(255, 247, 251, .72); font-size: clamp(18px, 2vw, 22px); line-height: 1.7; }
.vacancy-facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; }
.vacancy-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #ffe1ed;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 850;
}
.vacancy-logo-card {
  display: grid;
  justify-items: center;
  padding: 24px 28px 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 40px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 34px 90px rgba(0,0,0,.27);
}
.vacancy-logo-card img {
  width: min(100%, 300px);
  border-radius: 30px;
  mix-blend-mode: screen;
}
.vacancy-logo-card p { margin: 0; color: rgba(255,247,251,.7); line-height: 1.65; text-align: center; }
.vacancy-section { max-width: 1360px; }
.vacancy-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: 20px; align-items: start; }
.vacancy-main-card, .vacancy-side-card {
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.vacancy-main-card h2, .vacancy-side-card h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.06em;
}
.vacancy-main-card > p, .vacancy-side-card > p { color: #66505e; line-height: 1.75; }
.vacancy-main-card .section-kicker:not(:first-child) { margin-top: 44px; }
.vacancy-task-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.vacancy-task-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(232,95,159,.12);
  border-radius: 20px;
  background: #fff8fb;
  line-height: 1.55;
}
.vacancy-task-list li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 15px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #6f315b;
  background: #ffd7e8;
  font-size: 12px;
  font-weight: 950;
}
.vacancy-side-card { position: sticky; top: 112px; }
.vacancy-schedule { display: grid; gap: 12px; margin: 24px 0; }
.vacancy-schedule div { padding: 18px; border-radius: 22px; background: linear-gradient(135deg, #fff5d7, #ffe7f2); }
.vacancy-schedule strong { display: block; margin-bottom: 5px; font-size: 20px; letter-spacing: -.03em; }
.vacancy-schedule span { color: #6f5665; line-height: 1.55; }
.vacancy-apply-box { margin-top: 26px; padding: 24px; border-radius: 28px; color: #fff7fb; background: linear-gradient(145deg, #24121e, #5f2546); }
.vacancy-apply-box h3 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.04em; }
.vacancy-apply-box p { color: rgba(255,247,251,.7); line-height: 1.6; }

.cart-page { max-width: 1360px; margin: 0 auto; padding: clamp(36px, 6vw, 78px) clamp(18px, 5vw, 72px); }
.cart-shell { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 18px; align-items: start; }
.cart-panel, .checkout-panel, .empty {
  padding: 26px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(78, 35, 57, .09);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item img { width: 96px; height: 96px; object-fit: contain; border-radius: 22px; background: #fff0f7; }
.cart-item p { color: var(--muted); margin: 5px 0 12px; }
.qty-controls { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qty-controls button, .remove-button {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(232,95,159,.18);
  background: #fff7fb;
  color: #7a2b59;
  cursor: pointer;
  font-weight: 900;
}
.remove-button { padding: 0 12px; }
.checkout-panel { display: grid; gap: 14px; }
.checkout-panel h2 { margin: 0; font-size: 30px; letter-spacing: -.045em; }
label { display: grid; gap: 7px; font-weight: 850; color: #5f4053; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(232,95,159,.2);
  border-radius: 18px;
  background: #fffafd;
  padding: 13px 14px;
  color: var(--text);
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(232,95,159,.7); box-shadow: 0 0 0 4px rgba(232,95,159,.12); }
.checkout-total { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-top: 1px solid rgba(78, 35, 57, .1); }
.checkout-total strong { font-size: 26px; }
.hint { color: var(--muted); line-height: 1.5; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; font-weight: 700; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: #d74f91; }
.consent-row a { color: #a72f6d; text-decoration: underline; text-underline-offset: 2px; }
.success, .error {
  padding: 13px 15px;
  border-radius: 18px;
  font-weight: 850;
  margin-bottom: 12px;
}
.success { background: #eefbea; color: #28632c; }
.error { background: #ffe7eb; color: #9f2140; }
.empty { text-align: center; max-width: 720px; margin: 48px auto; }
.empty h1, .empty h2 { margin-top: 0; letter-spacing: -.04em; }
.success-card { display: grid; justify-items: center; gap: 10px; }
.success-mark { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #245b2a; background: #dcf7db; font-size: 28px; font-weight: 950; }
.secondary-link { color: #8f386b; border-color: rgba(232,95,159,.2); background: #fff; }
.cart-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff7fb;
  background: #24141f;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .7fr) minmax(190px, .6fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff7fb;
  background: linear-gradient(135deg, #130c12, #2a1424);
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer p { color: rgba(255, 247, 251, .62); max-width: 760px; line-height: 1.55; }
.footer-logo {
  width: 144px;
  height: 144px;
  margin: -20px 0 -14px -22px;
  object-fit: cover;
  border-radius: 28px;
  mix-blend-mode: screen;
}
.footer-main strong { font-size: 20px; }
.footer-note { font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 9px; color: rgba(255,247,251,.72); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-contacts { display: grid; gap: 7px; justify-items: end; color: rgba(255, 247, 251, .75); }
.footer-contacts a:hover { color: #fff; }

.legal-page { max-width: 1120px; }
.legal-page .section-head { align-items: start; }
.legal-card {
  padding: clamp(24px, 5vw, 54px);
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.legal-card section + section { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.legal-card h2 { margin: 0 0 12px; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.045em; }
.legal-card p { color: #66505e; line-height: 1.75; }

.vacancy-modal[hidden] { display: none; }
.vacancy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.vacancy-modal-backdrop { position: absolute; inset: 0; background: rgba(12, 7, 11, .78); backdrop-filter: blur(12px); }
.vacancy-modal-card {
  position: relative;
  width: min(100%, 590px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 36px;
  color: #fff7fb;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 161, 203, .28), transparent 18rem),
    linear-gradient(145deg, #1a0f17, #3d1830);
  box-shadow: 0 40px 120px rgba(0,0,0,.46);
  animation: vacancy-modal-in .28s ease-out both;
}
.vacancy-modal-logo {
  width: 106px;
  height: 106px;
  margin: -18px 0 -10px -16px;
  object-fit: cover;
  border-radius: 24px;
  mix-blend-mode: screen;
}
.vacancy-modal-kicker { display: block; margin-bottom: 10px; color: #ffc5dd; font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.vacancy-modal-card h2 { max-width: 490px; margin: 0; font-size: clamp(31px, 5vw, 47px); line-height: .98; letter-spacing: -.06em; }
.vacancy-modal-card > p { color: rgba(255,247,251,.72); line-height: 1.65; }
.vacancy-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 25px;
}
.vacancy-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
body.modal-open { overflow: hidden; }
@keyframes vacancy-modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .hero, .product-detail, .cart-shell, .vacancy-hero, .vacancy-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .routine-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-column: 1 / -1; }
  .detail-image { min-height: 440px; }
  .vacancy-side-card { position: static; }
  .vacancy-logo-card { justify-self: stretch; }
  .vacancy-logo-card img { width: min(52vw, 270px); }
}
@media (max-width: 920px) and (min-width: 721px) {
  .site-header { flex-wrap: wrap; }
  .main-nav { width: 100%; justify-content: space-between; gap: 10px; overflow-x: auto; padding-bottom: 3px; font-size: 14px; }
}
@media (max-width: 720px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .brand-logo { width: 52px; height: 52px; }
  .brand-name { font-size: 20px; }
  .main-nav { width: 100%; justify-content: flex-start; gap: 16px; overflow-x: auto; padding-bottom: 4px; font-size: 14px; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { display: none; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .product-grid, .contact-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-content, .hero-card div, .detail-content, .cart-panel, .checkout-panel { border-radius: 26px; }
  .cart-item { grid-template-columns: 74px 1fr; }
  .cart-item > div:last-child { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-main { grid-column: auto; }
  .footer-contacts { justify-items: start; }
  .vacancy-main-card, .vacancy-side-card { padding: 24px; border-radius: 28px; }
  .vacancy-modal-card { padding: 26px 22px 24px; border-radius: 28px; }
  .vacancy-modal-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker span { padding-left: 18px; animation: none !important; transform: none !important; }
}
