/* ============================================================



   La Gelateria Italiana — B2B Site



   Design system: editorial monochrome + single accent



   ============================================================ */



:root {



  /* Mono palette — strict B/W system */



  --c-ink:        #0A0A0A;



  --c-paper:      #FAFAFA;



  --c-paper-pure: #FFFFFF;



  --c-mute-1:     #6B6B6B;



  --c-mute-2:     #B5B5B5;



  --c-line:       #E5E5E5;



  --c-fill:       #F2F2F2;



  /* Single brand accent — used in ≤3 places per screen */



  --c-accent:     #DC4405;



  /* Type system */



  --f-display:    'Fraunces', 'Times New Roman', serif;



  --f-body:       'Inter', system-ui, sans-serif;



  --f-mono:       'JetBrains Mono', 'SF Mono', Consolas, monospace;



  /* Scale */



  --t-xs:   12px;



  --t-sm:   14px;



  --t-base: 16px;



  --t-md:   18px;



  --t-lg:   22px;



  --t-xl:   28px;



  --t-2xl:  42px;



  --t-3xl:  64px;



  --t-4xl:  96px;



  --t-hero: clamp(56px, 9vw, 132px);



  --gutter:  clamp(20px, 4vw, 56px);



  --section: clamp(80px, 12vw, 160px);



  --max-w:   1440px;



}



* { box-sizing: border-box; margin: 0; padding: 0; }



html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }



body {



  background: var(--c-paper);



  color: var(--c-ink);



  font-family: var(--f-body);



  font-size: var(--t-base);



  line-height: 1.5;



  font-weight: 400;



  overflow-x: hidden;



}



img { display: block; max-width: 100%; height: auto; }



a { color: inherit; text-decoration: none; }



button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }



input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }



a:focus, button:focus, [role="button"]:focus { outline: none !important; }



/* ============ TYPE PRIMITIVES ============ */



.mono       { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }



.mono-ink   { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink); }



.serif      { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }



.serif-light{ font-family: var(--f-display); font-weight: 300; letter-spacing: -0.015em; line-height: 1.1; }



/* ============ LAYOUT ============ */



.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }



.section { padding: var(--section) 0; }



/* ============ HEADER ============ */



header {



  position: sticky; top: 0; z-index: 100;



  background: rgba(250, 250, 250, 0.94);



  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);



  border-bottom: 1px solid var(--c-line);



}



.nav {



  display: flex; align-items: center;



  padding: 16px var(--gutter); max-width: var(--max-w); margin: 0 auto;



  gap: 20px;



}



.nav-desktop { display: flex; }



.nav-mobile { display: none; }



.nav-logo { display: flex; align-items: center; flex-shrink: 0; }



.nav-logo img { height: 40px; width: auto; filter: brightness(0); }



/* Catalog wrapper — for dropdown */



.nav-catalog-wrapper { position: relative; flex-shrink: 0; }



/* Dropdown panel */



.nav-catalog-dropdown {



  position: absolute; top: calc(100% + 8px); left: 0;



  width: 380px;



  background: var(--c-paper-pure);



  border: 1px solid var(--c-line);



  border-radius: 12px;



  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.12);



  padding: 8px;



  opacity: 0; visibility: hidden; pointer-events: none;



  transform: translateY(-8px);



  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;



  z-index: 200;



}



/* Invisible hover-bridge so cursor doesn't lose :hover when moving from button to panel */



.nav-catalog-dropdown::before {



  content: '';



  position: absolute;



  top: -12px; left: 0; right: 0;



  height: 12px;



}



.nav-catalog-wrapper:hover .nav-catalog-dropdown,



.nav-catalog-wrapper:focus-within .nav-catalog-dropdown {



  opacity: 1; visibility: visible; pointer-events: auto;



  transform: translateY(0);



}



.nav-cat-item {



  display: flex; align-items: center; gap: 14px;



  padding: 12px;



  border-radius: 8px;



  color: var(--c-ink);



  transition: background 0.2s ease;



}



.nav-cat-item:hover { background: var(--c-fill); }



.nav-cat-item:hover .nav-cat-arrow { color: var(--c-accent); transform: translateX(4px); }



.nav-cat-thumb {



  flex-shrink: 0; width: 48px; height: 48px;



  background: var(--c-fill);



  border-radius: 8px; overflow: hidden;



}



.nav-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }



.nav-cat-text {



  flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0;



}



.nav-cat-text strong {



  font-family: var(--f-body); font-size: var(--t-sm);



  font-weight: 600; color: var(--c-ink);



}



.nav-cat-text span {



  font-family: var(--f-mono); font-size: 10px;



  letter-spacing: 0.06em; color: var(--c-mute-1);



}



.nav-cat-arrow {



  width: 16px; height: 16px;



  color: var(--c-mute-2);



  transition: all 0.2s ease;



  flex-shrink: 0;



}



/* Nested structure: Морозиво parent + 3 subs */



.nav-cat-parent { /* base style same as .nav-cat-item, kept for clarity */ }



.nav-cat-arrow-down { transform: rotate(0deg); }



.nav-cat-subitems {



  margin: 2px 0 10px 32px;



  padding-left: 14px;



  border-left: 1px solid var(--c-line);



  display: flex; flex-direction: column; gap: 2px;



}



.nav-cat-sub {



  padding: 8px 10px !important;



  border-radius: 6px;



}



.nav-cat-sub .nav-cat-thumb {



  width: 36px; height: 36px; border-radius: 6px;



}



.nav-cat-sub .nav-cat-text strong { font-size: 13px; }



.nav-cat-sub .nav-cat-text span { font-size: 9px; }



.nav-cat-all {



  display: block; text-align: center;



  margin-top: 8px; padding: 12px;



  background: var(--c-ink); color: var(--c-paper);



  border-radius: 8px;



  font-family: var(--f-mono); font-size: 11px;



  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;



  transition: background 0.2s ease;



}



.nav-cat-all:hover { background: var(--c-accent); }



@media (max-width: 980px) {



  .nav-catalog-dropdown { display: none; } /* hide on mobile, drawer takes over */



}



/* Orange Catalog CTA — primary action with subtle pulse */



.nav-catalog-cta {



  display: inline-flex; align-items: center; gap: 10px;



  background: var(--c-accent); color: var(--c-paper);



  padding: 12px 22px; border-radius: 6px;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 700;



  flex-shrink: 0; cursor: pointer; user-select: none;



  animation: nav-cta-pulse 2.6s ease-in-out infinite;



  transition: background 0.2s ease;



  border: none;



}



.nav-catalog-cta:hover { animation-play-state: paused; background: var(--c-ink); }



.nav-catalog-cta-icon { font-size: 18px; line-height: 1; }



@keyframes nav-cta-pulse {



  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 68, 5, 0.45); }



  50%      { transform: scale(1.035); box-shadow: 0 0 0 10px rgba(220, 68, 5, 0); }



}



/* Main nav — clean text links (no background, just labels) */



.nav-menu {



  display: flex; gap: 28px; list-style: none;



  margin: 0 auto; /* push lang/icons to the right */



  flex-wrap: nowrap;



}



.nav-menu a {



  display: inline-block;



  background: transparent; color: var(--c-ink);



  padding: 8px 0;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em;



  text-transform: uppercase; font-weight: 500;



  position: relative;



  transition: color 0.2s ease;



  white-space: nowrap;



}



.nav-menu a:hover { color: var(--c-accent); }



.nav-menu a.active { color: var(--c-ink); }



.nav-menu a.active::after {



  content: ''; position: absolute; left: 0; right: 0; bottom: 0;



  height: 1px; background: var(--c-accent);



}



/* Secondary CTA — orange request-price button, same style as КАТАЛОГ but without pulse */



.nav-request-cta {



  display: inline-flex; align-items: center; gap: 10px;



  background: var(--c-accent); color: var(--c-paper);



  padding: 12px 22px; border-radius: 6px;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 700;



  flex-shrink: 0; white-space: nowrap;



  transition: background 0.2s ease;



  border: none;



}



.nav-request-cta:hover { background: var(--c-ink); }



.nav-request-cta-icon { display: inline-flex; }



.nav-request-cta-icon svg { width: 16px; height: 16px; }



/* Language switcher */



.nav-lang {



  display: inline-flex; gap: 2px; flex-shrink: 0;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em;



  text-transform: uppercase;



}



.nav-lang button {



  padding: 8px 10px; color: var(--c-mute-2);



  border-radius: 4px; font-weight: 500;



  transition: all 0.2s ease;



}



.nav-lang button:hover { color: var(--c-ink); }



.nav-lang button.active { color: var(--c-ink); background: var(--c-fill); }



/* Utility icons (search · favorites · cart) */



.nav-icons {



  display: inline-flex; gap: 4px; align-items: center; flex-shrink: 0;



  padding-left: 12px; border-left: 1px solid var(--c-line);



}



.nav-icon {



  width: 40px; height: 40px;



  display: inline-flex; align-items: center; justify-content: center;



  color: var(--c-ink); transition: color 0.2s ease;



  position: relative; cursor: pointer;



  background: none; border: none;



}



.nav-icon:hover { color: var(--c-accent); }



.nav-icon svg { width: 19px; height: 19px; }



.nav-icon-count, .cart-count, .wishlist-count {



  position: absolute; top: 2px; right: 2px;



  background: var(--c-accent); color: var(--c-paper);



  font-family: var(--f-mono); font-size: 10px; font-weight: 700;



  min-width: 18px; height: 18px; padding: 0 5px;



  border-radius: 9px;



  display: flex; align-items: center; justify-content: center;



  line-height: 1;



  transition: transform 0.2s ease, opacity 0.2s ease;



}



.cart-count.is-empty, .wishlist-count.is-empty {



  opacity: 0;



  transform: scale(0.5);



  pointer-events: none;



}



.nav-icon-cart, .nav-icon-wishlist { position: relative; }



/* active heart on nav and on cards */



.nav-icon-wishlist.is-active svg, [data-wishlist-toggle].is-active svg {



  fill: var(--c-accent);



  stroke: var(--c-accent);



}



[data-wishlist-toggle] {



  transition: transform .15s ease;



}



[data-wishlist-toggle].is-active { transform: scale(1.1); }



[data-wishlist-toggle].is-bump { animation: heartBump .4s ease; }



@keyframes heartBump {



  0% { transform: scale(1); }



  40% { transform: scale(1.4); }



  100% { transform: scale(1.1); }



}



/* "pulse" коли число змінилося */



.cart-count.is-bump { animation: cartBump 0.4s ease; }



@keyframes cartBump {



  0% { transform: scale(1); }



  40% { transform: scale(1.35); }



  100% { transform: scale(1); }



}



.menu-toggle { display: none; font-size: 24px; padding: 6px; color: var(--c-ink); }



/* Mobile menu drawer */



.mobile-drawer {



  display: none;



  position: fixed; top: 0; right: 0; bottom: 0; width: min(85vw, 380px);



  background: var(--c-paper); z-index: 200;



  padding: 80px 40px 40px; transform: translateX(100%);



  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);



  border-left: 1px solid var(--c-line);



}



.mobile-drawer.open { transform: translateX(0); }



.mobile-drawer-close {



  position: absolute; top: 24px; right: 24px; font-size: 24px;



}



.mobile-drawer nav { display: flex; flex-direction: column; gap: 24px; }



.mobile-drawer nav a {



  font-family: var(--f-display); font-size: 32px; font-weight: 300;



  letter-spacing: -0.02em; color: var(--c-ink);



}



.mobile-drawer nav a:hover { color: var(--c-accent); }



.mobile-drawer .nav-cta-mobile {



  margin-top: 40px; padding: 18px 28px; background: var(--c-accent); color: var(--c-paper);



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;



  text-align: center; border-radius: 6px; font-weight: 600;



  display: flex; align-items: center; justify-content: center; gap: 10px;



}



.mobile-drawer-utility {



  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--c-line);



  display: flex; gap: 12px; align-items: center;



}



.mobile-drawer-utility .nav-icon { width: 44px; height: 44px; border: 1px solid var(--c-line); border-radius: 6px; }



.mobile-drawer-lang {



  margin-top: 16px;



  display: flex; gap: 4px;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;



}



.mobile-drawer-lang button {



  padding: 8px 14px; color: var(--c-mute-2);



  border: 1px solid var(--c-line); border-radius: 4px;



}



.mobile-drawer-lang button.active { color: var(--c-ink); border-color: var(--c-ink); background: var(--c-fill); }



.mobile-backdrop {



  display: none;



  position: fixed; inset: 0; background: rgba(10, 10, 10, 0.4);



  z-index: 150; backdrop-filter: blur(2px);



}



.mobile-backdrop.open { display: block; }



/* ============ BUTTONS ============ */



.btn {



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;



  text-transform: uppercase; padding: 16px 28px;



  border: 1px solid var(--c-ink);



  transition: all 0.25s ease;



  display: inline-flex; align-items: center; gap: 12px; cursor: pointer;



}



.btn-primary { background: var(--c-ink); color: var(--c-paper); }



.btn-primary:hover { background: var(--c-accent); border-color: var(--c-accent); }



.btn-ghost { background: transparent; color: var(--c-ink); }



.btn-ghost:hover { background: var(--c-ink); color: var(--c-paper); }



.btn-on-dark { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }



.btn-on-dark:hover { background: var(--c-accent); color: var(--c-paper); border-color: var(--c-accent); }



.btn-arrow {



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-ink);



  display: inline-flex; align-items: center; gap: 10px; padding: 8px 0;



  border-bottom: 1px solid var(--c-ink); transition: gap 0.25s ease;



}



.btn-arrow:hover { gap: 18px; }



/* ============ SECTION HEAD ============ */



.section-head {



  display: grid; grid-template-columns: 1fr 2fr;



  gap: clamp(40px, 6vw, 100px); align-items: start;



  margin-bottom: clamp(60px, 8vw, 100px);



  padding-bottom: 32px; border-bottom: 1px solid var(--c-line);



}



.section-num {



  font-family: var(--f-mono); font-size: var(--t-sm); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1);



}



.section-title {



  font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px);



  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;



}



.section-title em { font-style: italic; font-weight: 400; }



/* ============ PAGE HEADER (for inner pages) ============ */



.page-head {



  padding: clamp(60px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);



  border-bottom: 1px solid var(--c-line);



}



.page-head .wrap {



  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;



}



.page-head .crumbs {



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 28px;



}



.page-head .crumbs a:hover { color: var(--c-ink); }



.page-head h1 {



  font-family: var(--f-display); font-size: clamp(48px, 7vw, 96px);



  font-weight: 300; line-height: 1; letter-spacing: -0.03em;



}



.page-head h1 em { font-style: italic; font-weight: 400; }



.page-head .lede {



  font-size: var(--t-md); line-height: 1.6; color: var(--c-mute-1);



  max-width: 50ch;



}



/* ============ HERO ============ */



.hero { padding: clamp(60px, 10vw, 120px) 0 var(--section); border-bottom: 1px solid var(--c-line); }



.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }



.hero-content { display: flex; flex-direction: column; gap: 36px; }



.hero-tagline {



  display: flex; align-items: center; gap: 14px;



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.12em;



  text-transform: uppercase; color: var(--c-mute-1);



}



.hero-tagline::before { content: ''; width: 32px; height: 1px; background: var(--c-ink); }



.hero-title {



  font-family: var(--f-display); font-size: var(--t-hero);



  font-weight: 300; line-height: 0.98; letter-spacing: -0.035em; color: var(--c-ink);



}



.hero-title em { font-style: italic; font-weight: 400; }



.hero-sub { font-size: var(--t-md); line-height: 1.55; color: var(--c-mute-1); max-width: 50ch; }



.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }



.hero-visual { position: relative; aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; }



.hero-visual img { width: 100%; height: 100%; object-fit: cover; }



.hero-visual-label {



  position: absolute; top: 24px; left: 24px;



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;



  text-transform: uppercase; color: var(--c-paper);



  background: rgba(10, 10, 10, 0.7); padding: 8px 12px; backdrop-filter: blur(8px);



}



/* ============ META BAR (legacy thin) ============ */



.meta-bar { border-bottom: 1px solid var(--c-line); }



.meta-bar-inner {



  display: flex; justify-content: space-between; align-items: center;



  padding: 28px 0; flex-wrap: wrap; gap: 20px;



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-ink);



}



.meta-bar-inner span { display: flex; align-items: center; gap: 8px; }



.meta-bar-inner span::before {



  content: ''; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%;



}



.meta-bar-inner span:not(:first-child)::before { background: var(--c-mute-2); }



/* ============ HERO — FULL-BLEED SLIDER ============ */



.hero-fullbleed { padding: 0; border-bottom: 1px solid var(--c-line); }



.hero-slider { position: relative; overflow: hidden; }



.hero-slides-container {
  display: flex;
  width: 100%;
  position: relative;
  height: calc(100vh - 72px); /* full viewport minus sticky header */
  min-height: 560px;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  pointer-events: none;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  display: flex; align-items: center;
}

.hero-slide.active { pointer-events: auto; }



/* Dark gradient overlay on left for text readability */



.hero-slide::before {



  content: ''; position: absolute; inset: 0;



  background: linear-gradient(to right,



    rgba(10, 10, 10, 0.72) 0%,



    rgba(10, 10, 10, 0.55) 30%,



    rgba(10, 10, 10, 0.15) 55%,



    rgba(10, 10, 10, 0) 70%);



  z-index: 1;



}



.hero-slide .wrap {



  position: relative; z-index: 2;



  width: 100%;



}



.hero-slide-content {



  max-width: 580px;



  color: var(--c-paper);



  display: flex; flex-direction: column; gap: 28px;



}



.hero-slide-tagline {



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.12em;



  text-transform: uppercase; color: var(--c-paper); opacity: 0.85;



}



.hero-slide-title {



  font-family: var(--f-display);



  font-size: clamp(56px, 8vw, 112px);



  font-weight: 300; line-height: 0.98; letter-spacing: -0.035em;



  color: var(--c-paper);



}



.hero-slide-title em { font-style: italic; font-weight: 400; }



.hero-slide-sub {



  font-size: var(--t-md); line-height: 1.55;



  color: rgba(250, 250, 250, 0.88);



  max-width: 50ch;



}



.hero-slide-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }



/* Orange CTA button (primary) */



.btn-orange {



  display: inline-flex; align-items: center;



  background: var(--c-accent); color: var(--c-paper);



  padding: 18px 32px; border-radius: 6px;



  font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 700;



  transition: background 0.25s ease;



  white-space: nowrap; border: none; cursor: pointer;



}



.btn-orange:hover { background: var(--c-paper); color: var(--c-ink); }



/* Arrow button on dark backgrounds */



.btn-arrow-light {



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-paper);



  display: inline-flex; align-items: center; gap: 10px;



  padding: 8px 0; border-bottom: 1px solid var(--c-paper);



  transition: gap 0.25s ease, border-color 0.25s ease;



}



.btn-arrow-light::after { content: '→'; }



.btn-arrow-light:hover { gap: 18px; border-color: var(--c-accent); }



/* Nav arrows — light style for full-bleed */



.hero-nav {



  position: absolute; top: 50%; transform: translateY(-50%);



  width: 56px; height: 56px; z-index: 30;



  background: transparent;



  border: 1px solid rgba(250, 250, 250, 0.12);



  color: rgba(250, 250, 250, 0.35);



  display: flex; align-items: center; justify-content: center;



  cursor: pointer; transition: all 0.25s ease;



  border-radius: 50%;



}



.hero-nav svg { width: 22px; height: 22px; stroke-width: 1.5; transition: stroke 0.25s ease; }



.hero-nav:hover { background: rgba(250, 250, 250, 0.12); color: #ffffff; border-color: rgba(250, 250, 250, 0.6); }



.hero-nav:hover svg { color: #ffffff; }



.hero-nav-prev { left: 24px; }



.hero-nav-next { right: 24px; }

@media (min-width: 1024px) {
  .hero-nav {
    background: rgba(250, 250, 250, 0.15);
    border: 2px solid rgba(250, 250, 250, 0.65);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  }
  .hero-nav svg {
    stroke-width: 2.2;
  }
}



/* Progress bar — overlaid on the bottom of the hero slide */



.hero-progress {



  position: absolute; bottom: 0; left: 0; right: 0;



  z-index: 25;



  display: flex; justify-content: space-between; align-items: center;



  padding: 24px var(--gutter) 28px;



  gap: 32px; flex-wrap: wrap;



  max-width: var(--max-w); margin: 0 auto;



  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 100%);



}



.hero-progress-info { display: flex; align-items: baseline; gap: 20px; }



.hero-progress-num {



  font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300;



  letter-spacing: -0.02em; color: var(--c-paper);



}



.hero-progress-num em { color: rgba(250,250,250,0.5); font-style: normal; font-weight: 300; margin: 0 4px; }



.hero-progress-name {



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;



  text-transform: uppercase; color: rgba(250,250,250,0.85);



}



.hero-dots { display: flex; gap: 8px; }



.hero-dot {



  width: 40px; height: 2px; background: rgba(250,250,250,0.3);



  cursor: pointer; padding: 0; transition: all 0.3s ease;



  position: relative; border: none;



}



.hero-dot::before { content: ''; position: absolute; inset: -10px 0; }



.hero-dot:hover { background: rgba(250,250,250,0.6); }



.hero-dot.active { background: var(--c-accent); }



/* ============ META BAR STRONG (4-cell stat row) ============ */



.meta-bar-strong { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); background: var(--c-paper); }



.meta-strong-grid {



  display: grid; grid-template-columns: repeat(4, 1fr);



}



.meta-strong-cell {



  padding: 44px 32px; border-right: 1px solid var(--c-line);



  display: flex; align-items: baseline; gap: 24px;



}



.meta-strong-cell:last-child { border-right: none; }



.meta-strong-num {



  font-family: var(--f-display); font-size: clamp(48px, 6vw, 84px);



  font-weight: 300; line-height: 1; letter-spacing: -0.03em; color: var(--c-ink);



}



.meta-strong-num em { font-style: italic; color: var(--c-accent); }



.meta-strong-lbl {



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); line-height: 1.4;



}



/* ============ HERO STACK (3-photo composition) ============ */



.hero-strong { align-items: stretch; }



.hero-stack {



  position: relative;



  min-height: 560px;



}



.hero-stack-item {



  position: absolute;



  overflow: hidden;



  background: var(--c-fill);



  border: 1px solid var(--c-line);



  box-shadow: 0 0 0 1px transparent;



  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);



}



.hero-stack-item img { width: 100%; height: 100%; object-fit: cover; }



.hero-stack-label {



  position: absolute; bottom: 12px; left: 12px;



  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;



  text-transform: uppercase; color: var(--c-paper);



  background: rgba(10, 10, 10, 0.78); padding: 6px 10px;



  backdrop-filter: blur(8px);



}



.hero-stack-1 { top: 0; right: 0; width: 65%; aspect-ratio: 4/5; z-index: 3; }



.hero-stack-2 { top: 18%; left: 0; width: 40%; aspect-ratio: 1/1; z-index: 2; }



.hero-stack-3 { bottom: 0; right: 12%; width: 35%; aspect-ratio: 1/1; z-index: 4; }



.hero-stack-item:hover { transform: translateY(-6px); z-index: 5; }



/* ============ MANIFESTO ============ */



.manifesto-grid {



  display: grid; grid-template-columns: 1fr 2fr;



  gap: clamp(40px, 6vw, 100px); align-items: start;



}



.manifesto-image { aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; }



.manifesto-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }



.manifesto-text { font-size: var(--t-md); line-height: 1.6; color: var(--c-ink); display: flex; flex-direction: column; gap: 24px; }



.manifesto-text p:first-child {



  font-family: var(--f-display); font-size: var(--t-xl); font-weight: 300;



  line-height: 1.3; letter-spacing: -0.015em; color: var(--c-ink);



}



.manifesto-text p { color: var(--c-mute-1); }



.manifesto-text strong { color: var(--c-ink); font-weight: 500; }



/* ============ AUDIENCE LIST ============ */



.audience-list { display: flex; flex-direction: column; }



.audience-row {



  display: grid; grid-template-columns: 80px 1.2fr 2fr 1fr;



  gap: 40px; padding: 40px 0; border-bottom: 1px solid var(--c-line);



  align-items: center; transition: padding 0.3s ease; cursor: pointer;



}



.audience-row:first-child { border-top: 1px solid var(--c-line); }



.audience-row:hover { padding-left: 16px; }



.audience-num { font-family: var(--f-mono); font-size: var(--t-sm); letter-spacing: 0.08em; color: var(--c-mute-1); }



.audience-name {



  font-family: var(--f-display); font-size: clamp(24px, 3vw, 40px);



  font-weight: 300; letter-spacing: -0.02em; line-height: 1;



}



.audience-desc { color: var(--c-mute-1); font-size: var(--t-sm); line-height: 1.6; }



.audience-link {



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;



  text-transform: uppercase; text-align: right; color: var(--c-ink);



}



.audience-link::after { content: ' →'; margin-left: 6px; transition: margin 0.25s ease; }



.audience-row:hover .audience-link::after { margin-left: 14px; }



/* ============ CATALOG 2026 BLOCK (mantinga-style banner + categories) ============ */



.catalog-banner {



  display: grid;



  grid-template-columns: 1fr 1.4fr;



  background: var(--c-ink);



  border-radius: clamp(20px, 3vw, 36px);



  overflow: hidden;



  min-height: 380px;



  margin-bottom: clamp(40px, 5vw, 64px);



}



.catalog-banner-text {



  padding: clamp(40px, 5vw, 64px);



  display: flex; flex-direction: column;



  justify-content: center; align-items: flex-start;



  gap: 40px;



  color: var(--c-paper);



}



.catalog-banner-title {



  font-family: var(--f-display);



  font-size: clamp(40px, 5vw, 64px);



  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;



  color: var(--c-paper);



}



.catalog-banner-title em { font-style: italic; font-weight: 400; }



.catalog-banner-cta {



  display: inline-block;



  background: var(--c-accent); color: var(--c-paper);



  padding: 18px 44px; border-radius: 999px;



  font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 700;



  transition: all 0.25s ease;



}



.catalog-banner-cta:hover { background: var(--c-paper); color: var(--c-ink); }



.catalog-banner-image {



  position: relative; overflow: hidden;



  background: var(--c-fill);



}



.catalog-banner-image img {



  width: 100%; height: 100%; object-fit: cover;



}



/* Categories strip */



.catalog-categories {



  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;



}



.cat-card {



  display: flex; flex-direction: column; gap: 14px;



  padding: 0; transition: transform 0.25s ease;



}



.cat-card:hover { transform: translateY(-4px); }



.cat-card-img {



  aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden;



  border-radius: clamp(12px, 1.5vw, 20px);



}



.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: translate3d(0, 0, 0); }



.cat-card:hover .cat-card-img img { transform: scale(1.04); }



.cat-card-name {



  font-family: var(--f-display); font-size: var(--t-lg);



  font-weight: 400; letter-spacing: -0.015em; line-height: 1.15;



  color: var(--c-ink);



  padding: 0 4px;



}



.cat-card-meta {



  font-family: var(--f-mono); font-size: 10px;



  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1);



  padding: 0 4px;



}



@media (max-width: 980px) {



  .catalog-banner { grid-template-columns: 1fr; min-height: 0; }



  .catalog-banner-image { aspect-ratio: 16/10; order: -1; }



  .catalog-categories { grid-template-columns: repeat(2, 1fr); gap: 12px; }



}



@media (max-width: 560px) {



  .catalog-categories { grid-template-columns: 1fr; }



}



/* ============ НОВИНКИ — carousel with tabs ============ */



.news-head {



  display: flex; justify-content: space-between; align-items: baseline;



  margin-bottom: clamp(24px, 3vw, 32px); gap: 20px; flex-wrap: wrap;



}



.news-title {



  font-family: var(--f-display); font-size: clamp(40px, 5vw, 64px);



  font-weight: 300; line-height: 1; letter-spacing: -0.025em; color: var(--c-ink);



}



.news-all {



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;



  text-transform: uppercase; color: var(--c-ink);



  border-bottom: 1px solid var(--c-ink); padding-bottom: 4px;



  transition: color 0.25s ease, border-color 0.25s ease;



}



.news-all:hover { color: var(--c-accent); border-color: var(--c-accent); }



.news-tabs {



  display: flex; gap: 4px; flex-wrap: wrap;



  margin-bottom: clamp(32px, 4vw, 48px);



  border-bottom: 1px solid var(--c-line);



}



.news-tabs button {



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em;



  text-transform: uppercase; padding: 14px 20px; color: var(--c-mute-1);



  border: none; background: transparent;



  position: relative; transition: color 0.2s ease;



}



.news-tabs button:hover { color: var(--c-ink); }



.news-tabs button.active { color: var(--c-ink); }



.news-tabs button.active::after {



  content: ''; position: absolute; bottom: -1px; left: 16px; right: 16px;



  height: 2px; background: var(--c-accent);



}



.news-carousel {



  position: relative;



}



.news-track {



  display: flex; gap: 24px;



  overflow-x: auto; overflow-y: hidden;



  scroll-snap-type: x mandatory;



  scroll-padding: 0 var(--gutter);



  scrollbar-width: none;



  -ms-overflow-style: none;



  padding-bottom: 8px;



}



.news-track::-webkit-scrollbar { display: none; }



.news-card {



  flex: 0 0 calc((100% - 24px * 3) / 4); /* 4 cards visible */



  scroll-snap-align: start;



  display: flex; flex-direction: column;



  background: var(--c-paper-pure);



  border: 1px solid var(--c-line);



  border-radius: clamp(12px, 1.5vw, 18px);



  overflow: hidden;



  transition: transform 0.25s ease, border-color 0.25s ease;



}



.news-card:hover { transform: translateY(-4px); border-color: var(--c-ink); }



.news-img {



  position: relative; aspect-ratio: 4/5;



  background: #ffffff; overflow: hidden;



}



.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: translate3d(0, 0, 0); }



.news-card:hover .news-img img { transform: scale(1.04); }



.news-badge-new, .prod-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-paper-pure, #ffffff) !important;
  background: #F49E78 !important; /* Lighter brand peach/orange than #DC4405 */
  padding: 5px 9px;
  font-weight: 600;
  line-height: 1;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}



.news-body {



  padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1;



}



.news-cat {



  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1);



}



.news-name {



  font-family: var(--f-display); font-size: var(--t-lg);



  font-weight: 400; letter-spacing: -0.015em; line-height: 1.2;



  min-height: 2.4em;



}



.news-price {



  font-size: var(--t-sm); color: var(--c-mute-1);



  padding-top: 8px; margin-top: auto;



}



.news-price strong { color: var(--c-ink); font-weight: 500; }



.news-actions {



  display: grid; grid-template-columns: 1fr auto; gap: 8px;



  padding-top: 14px; border-top: 1px solid var(--c-line);



}



.news-buy {



  display: inline-flex; align-items: center; justify-content: center;



  background: var(--c-accent); color: var(--c-paper);



  padding: 12px 18px; border-radius: 6px;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.05em;



  text-transform: uppercase; font-weight: 700;



  transition: background 0.2s ease;



}



.news-buy:hover { background: var(--c-ink); }



.news-buy-secondary {



  display: inline-flex; align-items: center; justify-content: center;



  background: var(--c-paper-pure); color: var(--c-ink);



  border: 1px solid var(--c-ink);



  padding: 12px 14px; border-radius: 6px;



  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 500; white-space: nowrap;



  transition: all 0.2s ease;



}



.news-buy-secondary:hover { background: var(--c-ink); color: var(--c-paper); }



/* Carousel nav arrows */



.news-nav {



  position: absolute; top: 35%; transform: translateY(-50%);



  width: 48px; height: 48px; z-index: 10;



  background: var(--c-paper-pure); border: 1px solid var(--c-ink);



  border-radius: 50%;



  color: var(--c-ink);



  display: flex; align-items: center; justify-content: center;



  cursor: pointer; transition: all 0.25s ease;



  box-shadow: 0 2px 12px rgba(0,0,0,0.08);



}



.news-nav svg { width: 18px; height: 18px; stroke-width: 1.8; transition: stroke 0.25s ease; }



.news-nav:hover { background: var(--c-ink); color: var(--c-paper); }



.news-nav:hover svg { color: var(--c-paper); }



.news-prev { left: -16px; }



.news-next { right: -16px; }

@media (min-width: 1024px) {
  .news-nav {
    width: 54px;
    height: 54px;
    border: 2px solid var(--c-ink, #0a0a0a);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  .news-prev { left: -27px; }
  .news-next { right: -27px; }
  .news-nav svg { stroke-width: 2.2; width: 22px; height: 22px; }
}



@media (max-width: 1280px) {



  .news-card { flex: 0 0 calc((100% - 24px * 2) / 3); } /* 3 visible */



}



@media (max-width: 980px) {



  .news-card { flex: 0 0 calc((100% - 24px) / 2); } /* 2 visible */



  .news-nav { width: 40px; height: 40px; }



  .news-prev { left: 4px; }



  .news-next { right: 4px; }



}



@media (max-width: 560px) {



  .news-card { flex: 0 0 78%; } /* 1.2 visible — peek next */



}



/* ============ CONTACTS page (mantinga-style) ============ */



.contacts-info-section { padding: clamp(40px, 5vw, 80px) 0; }



.contacts-info-section .crumbs {



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 20px;



}



.contacts-info-section .crumbs a:hover { color: var(--c-accent); }



.contacts-info-section h1 {



  font-family: var(--f-display); font-size: clamp(40px, 5vw, 64px);



  font-weight: 400; line-height: 1; letter-spacing: -0.025em;



  color: var(--c-ink); margin-bottom: clamp(32px, 4vw, 56px);



}



.contacts-info-grid {



  display: grid; grid-template-columns: 1fr 1.4fr;



  gap: clamp(32px, 4vw, 60px);



  align-items: stretch;



}



.contacts-info-text { display: flex; flex-direction: column; gap: 24px; }



.contact-block { display: flex; flex-direction: column; gap: 6px; }



.contact-block h4 {



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); margin: 0;



}



.contact-block-icon {



  display: flex; align-items: center; gap: 8px;



  color: var(--c-accent);



}



.contact-block-icon svg { width: 14px; height: 14px; }



.contact-block p {



  font-size: var(--t-md); line-height: 1.55; color: var(--c-ink); margin: 0;



}



.contact-phone {



  display: inline-flex; align-items: center; gap: 12px;



  font-family: var(--f-display);



  font-size: var(--t-xl); font-weight: 500;



  letter-spacing: -0.01em; color: var(--c-ink);



  margin: 4px 0;



  transition: color 0.2s ease;



}



.contact-phone:hover { color: var(--c-accent); }



.contact-line {



  display: inline-flex; align-items: center; gap: 12px;



  font-size: var(--t-sm);



  color: var(--c-mute-1); margin: 2px 0;



  transition: color 0.2s ease;



}



.contact-icon {



  width: 18px; height: 18px;



  color: var(--c-accent); flex-shrink: 0;



}



.contact-phone .contact-icon { width: 20px; height: 20px; }



.contact-block-icon {



  display: inline-flex; align-items: center; gap: 10px;



}



.contact-block-icon svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }



.contact-address.contact-block-icon { font-size: var(--t-md); }



.contact-line:hover { color: var(--c-accent); }



.contact-address {



  font-family: var(--f-display); font-size: var(--t-md);



  font-weight: 500; color: var(--c-ink);



}



.contacts-info-map {



  border-radius: 16px; overflow: hidden;



  background: var(--c-fill);



  min-height: 480px;



  border: 1px solid var(--c-line);



  display: block;



  position: relative;



}



.contacts-info-map iframe { width: 100%; height: 100%; min-height: 480px; display: block; }



.map-placeholder {



  position: absolute; inset: 0;



  display: flex; flex-direction: column;



  align-items: center; justify-content: center;



  text-align: center; padding: 32px;



  gap: 12px;



  /* subtle map-like grid */



  background-image:



    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),



    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);



  background-size: 40px 40px;



}



.map-marker {



  width: 56px; height: 56px;



  color: var(--c-accent);



  filter: drop-shadow(0 4px 12px rgba(220, 68, 5, 0.4));



}



.map-label {



  font-family: var(--f-display); font-size: var(--t-xl);



  font-weight: 500; color: var(--c-ink);



  margin-top: 4px;



}



.map-address {



  font-size: var(--t-sm); color: var(--c-mute-1);



}



.map-cta {



  font-family: var(--f-mono); font-size: 11px;



  letter-spacing: 0.08em; text-transform: uppercase;



  color: var(--c-accent); font-weight: 600;



  margin-top: 12px;



  padding: 8px 16px;



  border: 1px solid var(--c-accent); border-radius: 999px;



}



.contacts-info-cta {



  display: flex; justify-content: center;



  margin-top: clamp(48px, 6vw, 80px);



}



/* Orange pill CTA (used on contacts) */



.btn-orange-pill {



  display: inline-flex; align-items: center; justify-content: center;



  background: var(--c-accent); color: var(--c-paper);



  padding: 22px 60px; border-radius: 999px;



  font-family: var(--f-mono); font-size: 15px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 800;



  transition: all 0.25s ease; border: none; cursor: pointer;



  box-shadow: 0 4px 20px rgba(220, 68, 5, 0.25);



}



.btn-orange-pill:hover { background: var(--c-ink); box-shadow: 0 4px 20px rgba(10,10,10,0.25); }



/* Form section */



.contacts-form-head {



  text-align: center; margin-bottom: clamp(32px, 4vw, 56px);



}



.contacts-form-head h2 {



  font-family: var(--f-display); font-size: clamp(36px, 4vw, 56px);



  font-weight: 400; line-height: 1; letter-spacing: -0.025em;



  margin-bottom: 16px;



}



.contacts-form-head h2 em { font-style: italic; }



.contacts-form-head p {



  font-size: var(--t-md); color: var(--c-mute-1); line-height: 1.55;



  max-width: 60ch; margin: 0 auto;



}



.contacts-form {



  max-width: 760px; margin: 0 auto;



  padding: clamp(32px, 4vw, 56px);



  background: var(--c-paper-pure);



  border: 1px solid var(--c-line);



  border-radius: 16px;



}



.form-submit-btn { margin: 16px auto 0; }



@media (max-width: 980px) {



  .contacts-info-grid { grid-template-columns: 1fr; gap: 32px; }



  .contacts-info-map { min-height: 320px; }



  .contacts-info-map iframe { min-height: 320px; }



}



/* ============ DELIVERY & PAYMENT page (cooperation.html) ============ */



.delivery-title-section { padding: clamp(40px, 5vw, 80px) 0 clamp(28px, 3vw, 48px); }



.delivery-title-section .wrap { text-align: center; }



.delivery-title-section .crumbs {



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 20px;



}



.delivery-title-section .crumbs a:hover { color: var(--c-accent); }



.delivery-title-section h1 {



  font-family: var(--f-display); font-size: clamp(40px, 5vw, 72px);



  font-weight: 400; line-height: 1; letter-spacing: -0.025em;



  color: var(--c-ink);



}



.delivery-cards {



  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px);



}



.delivery-card {



  background: var(--c-paper-pure);



  border: 1px solid #d4b896; /* warm cream border like on sketch */



  border-radius: 16px;



  padding: clamp(40px, 4vw, 56px) clamp(28px, 3.5vw, 48px);



  display: flex; flex-direction: column; gap: 20px;



}



.delivery-icon {



  width: 56px; height: 56px;



  margin: 0 auto;



  background: var(--c-fill);



  border-radius: 50%;



  display: flex; align-items: center; justify-content: center;



  color: var(--c-accent);



}



.delivery-icon svg { width: 28px; height: 28px; }



.delivery-card-title {



  font-family: var(--f-display); font-size: var(--t-xl);



  font-weight: 400; letter-spacing: -0.015em; line-height: 1.2;



  text-align: center; color: var(--c-ink);



}



.delivery-card-body {



  display: flex; flex-direction: column; gap: 12px;



  font-size: var(--t-sm); line-height: 1.6; color: var(--c-ink);



}



.delivery-card-body p { margin: 0; }



.delivery-card-body strong { font-weight: 600; color: var(--c-ink); }



.delivery-subtitle {



  font-family: var(--f-mono); font-size: 11px;



  letter-spacing: 0.08em; text-transform: uppercase;



  color: var(--c-ink); font-weight: 600;



  padding-bottom: 8px; border-bottom: 1px solid var(--c-line);



  margin-bottom: 4px;



}



.delivery-block-title {



  font-family: var(--f-display); font-size: var(--t-md);



  font-weight: 600; color: var(--c-ink);



  margin: 12px 0 4px;



}



/* Payment single card centered */



.payment-card-wrap {



  display: flex; justify-content: center;



}



.payment-card {



  background: var(--c-paper-pure);



  border: 1px solid #d4b896;



  border-radius: 16px;



  padding: clamp(32px, 4vw, 48px) clamp(48px, 6vw, 80px);



  display: flex; flex-direction: column; gap: 20px;



  align-items: center; text-align: center;



  max-width: 580px;



}



.payment-icon {



  width: 56px; height: 56px;



  background: var(--c-fill); border-radius: 8px;



  display: flex; align-items: center; justify-content: center;



  color: var(--c-accent);



}



.payment-icon svg { width: 28px; height: 28px; }



.payment-card-title {



  font-family: var(--f-display); font-size: var(--t-lg);



  font-weight: 400; letter-spacing: -0.015em; line-height: 1.3;



  color: var(--c-ink);



}



/* Delivery info block — image + dark panel */



.delivery-info-block {



  display: grid; grid-template-columns: 1fr 1fr;



  align-items: stretch; gap: 0;



}



.delivery-info-photo {



  overflow: hidden; min-height: 460px;



  border-radius: 0;



}



.delivery-info-photo img { width: 100%; height: 100%; object-fit: cover; }



.delivery-info-panel {



  background: var(--c-ink); color: var(--c-paper);



  padding: clamp(40px, 5vw, 72px);



  border-top-right-radius: 16px; border-bottom-right-radius: 16px;



  display: flex; flex-direction: column; gap: 16px;



}



.info-line {



  font-size: var(--t-md); line-height: 1.5;



  color: var(--c-paper);



  padding-bottom: 12px;



  border-bottom: 1px solid rgba(250,250,250,0.15);



}



.info-prices { display: flex; flex-direction: column; gap: 4px; }



.info-prices p { font-size: var(--t-sm); color: rgba(250,250,250,0.85); margin: 0; }



.delivery-info-panel h4 {



  font-family: var(--f-display); font-size: var(--t-md);



  font-weight: 500; color: var(--c-paper);



  margin: 16px 0 4px;



}



.info-list {



  list-style: none; padding-left: 0; margin: 0;



  display: flex; flex-direction: column; gap: 10px;



}



.info-list li {



  font-size: var(--t-sm); line-height: 1.5;



  color: rgba(250,250,250,0.85);



  padding-left: 24px; position: relative;



}



.info-list li::before {



  content: '•'; position: absolute; left: 4px;



  color: var(--c-accent); font-size: 16px; top: -3px;



}



.info-warning {



  font-size: var(--t-md); color: var(--c-accent);



  font-weight: 600; margin-top: 12px;



  padding-top: 12px; border-top: 1px solid rgba(250,250,250,0.15);



}



@media (max-width: 980px) {



  .delivery-cards { grid-template-columns: 1fr; }



  .delivery-info-block { grid-template-columns: 1fr; }



  .delivery-info-panel { border-radius: 0 0 16px 16px; }



  .delivery-info-photo { min-height: 280px; border-radius: 16px 16px 0 0; }



}



/* ============ ABOUT US — mantinga-style page ============ */



.about-title {



  padding: clamp(40px, 5vw, 80px) 0 clamp(32px, 4vw, 64px);



  text-align: center;



}



.about-title h1 {



  font-family: var(--f-display); font-size: clamp(48px, 6vw, 96px);



  font-weight: 300; line-height: 1; letter-spacing: -0.03em;



  color: var(--c-ink);



}



.about-grid {



  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);



  gap: clamp(40px, 6vw, 96px);



  align-items: flex-start;



}



/* Sticky video column */



.about-video-col {



  position: sticky; top: 88px;



  align-self: start;



}



.about-video {



  background: var(--c-fill);



  border-radius: 12px;



  overflow: hidden;



}



.about-video-frame {



  position: relative;



  aspect-ratio: 4/3;



  cursor: pointer;



  overflow: hidden;



}



.about-video-frame img {



  width: 100%; height: 100%; object-fit: cover;



  transition: transform 0.5s ease;



}



.about-video-frame:hover img { transform: scale(1.03); }



.about-video-overlay {



  position: absolute; inset: 0;



  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);



  display: flex; flex-direction: column;



  align-items: center; justify-content: space-between;



  padding: 20px;



}



.about-video-badge {



  align-self: flex-start;



  display: flex; align-items: center; gap: 8px;



  background: rgba(220, 68, 5, 0.95);



  padding: 6px 12px; border-radius: 4px;



  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-paper); font-weight: 600;



}



.about-video-play {



  width: 88px; height: 88px;



  border-radius: 50%;



  background: rgba(220, 68, 5, 0.95);



  border: none; color: var(--c-paper);



  display: flex; align-items: center; justify-content: center;



  cursor: pointer; margin: auto;



  box-shadow: 0 4px 24px rgba(0,0,0,0.3);



  transition: all 0.25s ease;



}



.about-video-play:hover { background: var(--c-accent); transform: scale(1.08); }



.about-video-play svg { width: 32px; height: 32px; margin-left: 4px; }



.about-video-caption {



  font-family: var(--f-display); font-size: clamp(28px, 3vw, 44px);



  font-weight: 600; line-height: 1.05; letter-spacing: -0.02em;



  color: var(--c-paper); text-align: center;



  text-shadow: 0 2px 16px rgba(0,0,0,0.5);



  align-self: stretch;



}



/* Right text column */



.about-text-col { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 80px); }



.about-section {



  display: flex; flex-direction: column; gap: 20px;



}



.about-section h2 {



  font-family: var(--f-display); font-size: clamp(28px, 3.6vw, 44px);



  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;



  color: var(--c-ink);



  padding-bottom: 12px;



  border-bottom: 1px solid var(--c-line);



}



.about-section h3 {



  font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 28px);



  font-weight: 500; letter-spacing: -0.015em;



  color: var(--c-ink); margin-top: 16px;



}



.about-section p {



  font-size: var(--t-md); line-height: 1.65; color: var(--c-ink);



}



.about-section strong { color: var(--c-ink); font-weight: 600; }



.about-section em { font-style: italic; color: var(--c-mute-1); }



.about-principles {



  display: flex; flex-direction: column; gap: 16px;



  margin-top: 8px;



}



.about-principles dt {



  font-family: var(--f-display); font-size: var(--t-md);



  font-weight: 500; color: var(--c-ink);



  padding-top: 16px; border-top: 1px solid var(--c-line);



  position: relative; padding-left: 28px;



}



.about-principles dt::before {



  content: '—'; position: absolute; left: 0; color: var(--c-accent); font-weight: 600;



}



.about-principles dd {



  font-size: var(--t-sm); line-height: 1.55; color: var(--c-mute-1);



  margin-left: 28px; margin-top: 4px;



}



.about-mission {



  font-family: var(--f-display); font-style: italic;



  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4;



  color: var(--c-ink); padding: 24px 28px;



  border-left: 3px solid var(--c-accent);



  background: var(--c-fill);



  margin-top: 8px;



}



/* Big orange CTA */



.about-cta {



  display: inline-flex; align-self: flex-start;



  background: var(--c-accent); color: var(--c-paper);



  padding: 22px 60px; border-radius: 999px;



  font-family: var(--f-mono); font-size: 15px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 800;



  transition: all 0.25s ease;



  margin-top: 16px;



  box-shadow: 0 4px 20px rgba(220, 68, 5, 0.25);



}



.about-cta:hover { background: var(--c-ink); box-shadow: 0 4px 20px rgba(10, 10, 10, 0.25); }



@media (max-width: 980px) {



  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .about-video-col { position: static; }
  .about-video-playlist-container { width: 100%; max-width: 100%; overflow: hidden; box-sizing: border-box; }
  .about-video-playlist { width: 100%; max-width: 100%; box-sizing: border-box; }
  .about-video-item { width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }



}



/* ============ ПЕРЕВАГИ ПРОДУКЦІЇ ============ */



.benefits-head {



  display: grid; grid-template-columns: 1fr 1.5fr;



  gap: clamp(40px, 6vw, 100px); align-items: end;



  margin-bottom: clamp(48px, 6vw, 80px);



  padding-bottom: 32px; border-bottom: 1px solid var(--c-line);



}



.benefits-head h2 {



  font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px);



  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;



}



.benefits-head h2 em { font-style: italic; font-weight: 400; }



.benefits-lede {



  font-size: var(--t-md); line-height: 1.6; color: var(--c-mute-1);



  max-width: 60ch;



}



.benefits-grid {



  display: grid; grid-template-columns: repeat(2, 1fr);



  gap: clamp(32px, 4vw, 56px) clamp(40px, 5vw, 80px);



}



.benefit-block {



  display: flex; flex-direction: column; gap: 16px;



  padding-top: 28px; border-top: 2px solid var(--c-ink);



}



.benefit-title {



  font-family: var(--f-display); font-size: var(--t-xl);



  font-weight: 400; letter-spacing: -0.02em; line-height: 1.15;



}



.benefit-block p {



  font-size: var(--t-base); line-height: 1.6; color: var(--c-ink);



}



.benefit-list {



  list-style: none; display: flex; flex-direction: column; gap: 10px;



  padding-left: 0; margin-top: 4px;



}



.benefit-list li {



  font-size: var(--t-sm); line-height: 1.5; color: var(--c-mute-1);



  padding-left: 24px; position: relative;



}



.benefit-list li::before {



  content: '—'; position: absolute; left: 0; color: var(--c-accent); font-weight: 600;



}



@media (max-width: 980px) {



  .benefits-head { grid-template-columns: 1fr; gap: 20px; }



  .benefits-grid { grid-template-columns: 1fr; }



}



/* ============ НАШІ ПАРТНЕРИ — marquee strip ============ */



.partners-marquee {



  padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 5vw, 72px);



  background: var(--c-paper);



  overflow: hidden;



  position: relative;



}



.partners-marquee-title {



  font-family: var(--f-display); font-size: clamp(40px, 5.5vw, 72px);



  font-weight: 300; line-height: 1; letter-spacing: -0.025em;



  text-align: center; color: var(--c-ink);



  margin-bottom: clamp(32px, 4vw, 56px);



}



.partners-marquee-title em { font-style: italic; font-weight: 400; }



.marquee-wrap {



  width: 100%;



  overflow: hidden;



  position: relative;



  /* fade edges so logos slide in/out softly */



  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);



          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);



}



.marquee-track {



  display: flex;



  align-items: center;



  gap: clamp(48px, 6vw, 96px);



  width: max-content;



  animation: marquee-slide 60s linear infinite;



  will-change: transform;



}



.marquee-wrap:hover .marquee-track { animation-play-state: paused; }



@keyframes marquee-slide {



  from { transform: translate3d(0, 0, 0); }



  to   { transform: translate3d(-50%, 0, 0); }



}



.m-logo {



  flex: 0 0 auto;



  height: 56px;



  min-width: 110px;



  display: flex; align-items: center; justify-content: center;



  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;



}



.m-logo img {



  max-height: 100%; max-width: 180px;



  width: auto; height: auto;



  object-fit: contain;



  opacity: 0.95;



  transition: opacity 0.3s ease, transform 0.3s ease;



}



.m-logo:hover img {



  opacity: 1;



  transform: scale(1.08);



}



.m-logo-text {



  font-family: var(--f-display); font-size: 22px;



  font-weight: 500; letter-spacing: -0.01em;



  color: var(--c-mute-1); white-space: nowrap;



  padding: 0 8px;



}



.m-logo-text:hover { color: var(--c-ink); }



/* ============ QTY CONTROL (used on cart, product, etc) ============ */



.qty-control {



  display: inline-flex; align-items: stretch;



  border: 1px solid var(--c-line); border-radius: 8px;



  overflow: hidden; background: var(--c-paper-pure);



}



.qty-btn {



  width: 36px; height: 40px; padding: 0;



  background: transparent; border: none; cursor: pointer;



  font-family: var(--f-mono); font-size: 18px;



  color: var(--c-ink);



  transition: background 0.15s ease;



}



.qty-btn:hover { background: var(--c-fill); }



.qty-btn:disabled { color: var(--c-mute-2); cursor: not-allowed; }



.qty-input {



  width: 52px; height: 40px;



  border: none;



  border-left: 1px solid var(--c-line); border-right: 1px solid var(--c-line);



  text-align: center;



  font-family: var(--f-mono); font-size: 15px; font-weight: 600;



  color: var(--c-ink);



  background: var(--c-paper-pure);



  -moz-appearance: textfield;



  appearance: textfield;



}



/* Прибрати native spinner arrows у Webkit/Blink/Safari */



.qty-input::-webkit-outer-spin-button,



.qty-input::-webkit-inner-spin-button {



  -webkit-appearance: none;



  appearance: none;



  margin: 0;



}



.qty-input:focus { outline: none; }



/* ============ LGI MODAL (custom confirm) ============ */



.lgi-modal-root {



  position: fixed; inset: 0;



  pointer-events: none;



  z-index: 10000;



}



.lgi-modal-backdrop {



  position: fixed; inset: 0;



  background: rgba(10, 10, 10, 0.55);



  backdrop-filter: blur(4px);



  -webkit-backdrop-filter: blur(4px);



  pointer-events: auto;



  display: flex; align-items: center; justify-content: center;



  padding: 24px;



  opacity: 0;



  transition: opacity 0.2s ease;



}



.lgi-modal-backdrop.is-in { opacity: 1; }



.lgi-modal-backdrop.is-out { opacity: 0; }



.lgi-modal {



  background: var(--c-paper-pure);



  border-radius: 16px;



  padding: 32px 32px 24px;



  max-width: 440px; width: 100%;



  box-shadow: 0 20px 60px rgba(0,0,0,0.25);



  transform: scale(0.95) translateY(8px);



  transition: transform 0.2s ease;



}



.lgi-modal-backdrop.is-in .lgi-modal { transform: scale(1) translateY(0); }



.lgi-modal-title {



  font-family: var(--f-display); font-size: 24px;



  font-weight: 500; letter-spacing: -0.015em; line-height: 1.2;



  color: var(--c-ink); margin-bottom: 10px;



}



.lgi-modal-text {



  font-size: 15px; color: var(--c-mute-1); line-height: 1.5;



  margin-bottom: 24px;



}



.lgi-modal-actions {



  display: flex; gap: 10px; justify-content: flex-end;



  flex-wrap: wrap;



}



.lgi-modal-btn {



  padding: 12px 22px; border-radius: 10px;



  font-family: var(--f-mono); font-size: 12px; font-weight: 700;



  letter-spacing: 0.06em; text-transform: uppercase;



  cursor: pointer; border: 1px solid transparent;



  transition: all 0.2s ease;



  min-width: 120px;



}



.lgi-modal-cancel {



  background: transparent; color: var(--c-mute-1);



  border-color: var(--c-line);



}



.lgi-modal-cancel:hover {



  color: var(--c-ink); border-color: var(--c-ink);



  background: var(--c-fill);



}



.lgi-modal-confirm {



  background: var(--c-accent); color: var(--c-paper);



  box-shadow: 0 4px 14px rgba(220, 68, 5, 0.25);



}



.lgi-modal-confirm:hover {



  background: var(--c-ink);



  box-shadow: 0 4px 14px rgba(10,10,10,0.2);



}



.lgi-modal-danger {



  background: #e74c3c; color: #fff;



  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3);



}



.lgi-modal-danger:hover {



  background: #c0392b;



}



.lgi-modal-btn:focus { outline: 2px solid var(--c-accent); outline-offset: 2px; }



@media (max-width: 480px) {



  .lgi-modal-actions { flex-direction: column-reverse; }



  .lgi-modal-btn { width: 100%; }



}



/* ============ TOAST (cart confirmations) ============ */



.lgi-toast-root {



  position: fixed; bottom: 24px; right: 24px;



  display: flex; flex-direction: column; gap: 10px;



  z-index: 9999; pointer-events: none;



}



.lgi-toast {



  pointer-events: auto;



  display: flex; align-items: center; gap: 12px;



  background: var(--c-ink); color: var(--c-paper);



  padding: 14px 22px; border-radius: 12px;



  font-family: var(--f-body); font-size: 14px; font-weight: 500;



  box-shadow: 0 8px 28px rgba(0,0,0,0.25);



  opacity: 0; transform: translateY(10px) scale(0.96);



  transition: opacity 0.25s ease, transform 0.25s ease;



  min-width: 260px; max-width: 380px;



}



.lgi-toast.is-in { opacity: 1; transform: translateY(0) scale(1); }



.lgi-toast.is-out { opacity: 0; transform: translateY(-6px) scale(0.96); }



.lgi-toast svg {



  width: 20px; height: 20px; flex: 0 0 20px;



  color: var(--c-accent);



}



.lgi-toast-action {



  margin-left: auto;



  font-family: var(--f-mono); font-size: 11px; font-weight: 700;



  letter-spacing: 0.06em; text-transform: uppercase;



  color: var(--c-accent); white-space: nowrap;



  padding: 6px 10px; border: 1px solid var(--c-accent); border-radius: 6px;



  transition: all 0.2s ease;



}



.lgi-toast-action:hover { background: var(--c-accent); color: var(--c-paper); }



@media (max-width: 600px) {



  .lgi-toast-root { left: 16px; right: 16px; bottom: 16px; }



  .lgi-toast { min-width: 0; width: 100%; }



}



/* Плашка-візитка для PNG з блакитним/світлим фоном (AllMall, Лоток тощо).



   Темна плашка створює контрастну рамку, в якій кольоровий фон логотипа



   виглядає інтегрованим, а не "артефактом скріншоту". */



.m-logo-tile {



  background: #1a1a1a;



  border-radius: 14px;



  padding: 12px 22px;



  height: 72px;



  min-width: 140px;



  box-shadow: 0 4px 14px rgba(0,0,0,0.12);



  display: flex; align-items: center; justify-content: center;



  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;



}



.m-logo-tile:hover {



  background: #2a2a2a;



  transform: scale(1.05);



  box-shadow: 0 6px 18px rgba(0,0,0,0.18);



}



.m-logo-tile img {



  max-height: 100%; max-width: 160px;



  opacity: 1;



}



.m-logo-tile:hover img { transform: none; opacity: 1; }



/* Slower / smaller on mobile */



@media (max-width: 768px) {



  .marquee-track { gap: 40px; animation-duration: 45s; }



  .m-logo { height: 44px; min-width: 90px; }



  .m-logo img { max-width: 140px; }



  .m-logo-text { font-size: 18px; }



}



/* @media (prefers-reduced-motion: reduce) {



  .marquee-track { animation: none; transform: translate3d(0,0,0); }



  .marquee-wrap { overflow-x: auto; }



} */



/* ============ PRODUCT LINES ============ */



.lines-grid {



  display: grid; grid-template-columns: repeat(5, 1fr);



  gap: 1px; background: var(--c-line); border: 1px solid var(--c-line);



}



.line-card {



  background: var(--c-paper-pure); padding: 32px;



  display: flex; flex-direction: column; gap: 24px;



  min-height: 480px; transition: background 0.25s ease; cursor: pointer;



}



.line-card:hover { background: var(--c-paper); }



.line-image { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }



.line-image img { width: 100%; height: 100%; object-fit: cover; }



.line-meta { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }



.line-name { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }



.line-desc { font-size: var(--t-sm); line-height: 1.55; color: var(--c-mute-1); margin-top: auto; }



.line-spec {



  display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid var(--c-line);



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.05em;



  text-transform: uppercase; color: var(--c-ink);



}



.line-spec span { display: flex; flex-direction: column; gap: 2px; }



.line-spec span small { color: var(--c-mute-1); font-size: 10px; }



/* ============ FEATURED PRODUCTS ============ */



.featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }



.feat {



  background: var(--c-paper-pure); border: 1px solid var(--c-line);



  display: flex; flex-direction: column; transition: border-color 0.25s ease;



}



.feat:hover { border-color: var(--c-ink); }



.feat-img { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }



.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }



.feat:hover .feat-img img { transform: scale(1.03); }



.feat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }



.feat-meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); }



.feat-name { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; letter-spacing: -0.015em; line-height: 1.15; }



.feat-spec {



  font-family: var(--f-mono); font-size: 11px; color: var(--c-ink);



  padding-top: 12px; margin-top: auto; border-top: 1px solid var(--c-line);



  display: flex; justify-content: space-between; align-items: center;



}



.feat-spec button {



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;



  text-transform: uppercase; color: var(--c-ink);



  padding: 6px 10px; border: 1px solid var(--c-ink); transition: all 0.2s ease;



}



.feat-spec button:hover { background: var(--c-ink); color: var(--c-paper); }



.feat-3 { grid-column: span 3; }



.feat-4 { grid-column: span 4; }



.feat-6 { grid-column: span 6; }



/* ============ CATALOG (sidebar + grid layout) ============ */



.cat-title-section { padding: clamp(40px, 5vw, 80px) 0 clamp(32px, 4vw, 60px); }



.cat-title-section .wrap { text-align: center; }



.cat-title-section .crumbs {



  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 20px;



}



.cat-title-section .crumbs a:hover { color: var(--c-accent); }



.cat-title-section h1 {



  font-family: var(--f-display); font-size: clamp(48px, 6vw, 88px);



  font-weight: 400; line-height: 1; letter-spacing: -0.025em;



  color: var(--c-ink);



}



.cat-layout {



  display: grid; grid-template-columns: 260px 1fr;



  gap: clamp(32px, 4vw, 56px); align-items: start;



}



/* Sidebar */



.cat-sidebar {



  position: sticky; top: 88px;



  padding: 24px; border: 1px solid var(--c-line);



  border-radius: 16px; background: var(--c-paper-pure);



}



.cat-sidebar-title {



  font-family: var(--f-display); font-size: var(--t-xl);



  font-weight: 400; letter-spacing: -0.015em;



  margin: 0 0 16px;



  padding-bottom: 16px;



  border-bottom: 1px solid var(--c-line);



}



.cat-tree { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }



.cat-tree-parent {



  display: flex; align-items: center; justify-content: space-between;



  padding: 10px 12px; border-radius: 8px;



  font-family: var(--f-body); font-size: var(--t-sm);



  font-weight: 500; color: var(--c-ink);



  cursor: pointer; transition: background 0.2s ease;



}



.cat-tree-parent:hover { background: var(--c-fill); }



.cat-tree-parent.active { background: var(--c-ink); color: var(--c-paper); }



.cat-tree-parent.active .cat-tree-count { background: var(--c-accent); color: var(--c-paper); }



.cat-tree-count {



  font-family: var(--f-mono); font-size: 10px; font-weight: 600;



  padding: 2px 8px; border-radius: 99px;



  background: var(--c-fill); color: var(--c-mute-1);



}



.cat-tree-sub { list-style: none; margin: 4px 0 8px 12px; padding: 0; display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--c-line); padding-left: 12px; }



.cat-tree-sub a {



  display: flex; align-items: center; justify-content: space-between;



  padding: 8px 12px; border-radius: 6px;



  font-size: var(--t-sm); color: var(--c-mute-1);



  cursor: pointer; transition: all 0.2s ease;



}



.cat-tree-sub a:hover { background: var(--c-fill); color: var(--c-ink); }



.cat-tree-sub a.active { background: var(--c-fill); color: var(--c-ink); font-weight: 500; }



.cat-tree-sub a.active .cat-tree-count { color: var(--c-accent); font-weight: 700; }



/* Main */



.cat-main { min-width: 0; }



.cat-toolbar {



  display: flex; justify-content: space-between; align-items: center;



  gap: 16px; flex-wrap: wrap;



  padding: 0 0 24px;



  margin-bottom: 24px;



  border-bottom: 1px solid var(--c-line);



}



.cat-toolbar-left { font-size: var(--t-sm); color: var(--c-mute-1); }



.cat-toolbar-left strong { color: var(--c-ink); font-weight: 600; font-size: var(--t-md); }



.cat-toolbar-right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }



.cat-search {



  display: flex; align-items: center; gap: 10px;



  background: var(--c-fill);



  padding: 10px 16px; border-radius: 8px;



  min-width: 240px;



}



.cat-search svg { width: 16px; height: 16px; color: var(--c-mute-1); }



.cat-search input {



  background: transparent; border: none; outline: none;



  font-size: var(--t-sm); flex: 1;



}



.cat-sort {



  padding: 10px 16px; border-radius: 8px;



  border: 1px solid var(--c-line); background: var(--c-paper-pure);



  font-family: var(--f-body); font-size: var(--t-sm); color: var(--c-ink);



  cursor: pointer;



}



/* Product grid */



.prod-grid {



  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;



}



.prod-card {



  background: var(--c-paper-pure);



  border: 1px solid var(--c-line);



  border-radius: 16px; overflow: hidden;



  display: flex; flex-direction: column;



  transition: border-color 0.25s ease, transform 0.25s ease;



}



.prod-card:hover { border-color: var(--c-ink); transform: translateY(-3px); }



.prod-card-img {



  position: relative; aspect-ratio: 1/1;



  background: #ffffff; overflow: hidden;



}



.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: translate3d(0, 0, 0); }



.prod-card:hover .prod-card-img img { transform: scale(1.04); }



.prod-card-wishlist {



  position: absolute; top: 12px; right: 12px;



  width: 36px; height: 36px;



  background: var(--c-paper-pure); border: 1px solid var(--c-line);



  border-radius: 50%;



  display: inline-flex; align-items: center; justify-content: center;



  color: var(--c-mute-1); cursor: pointer;



  transition: all 0.2s ease;



}



.prod-card-wishlist:hover { color: var(--c-accent); border-color: var(--c-accent); }



.prod-card-wishlist svg { width: 16px; height: 16px; }



.prod-card-body {



  padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1;



}



.prod-card-line {



  font-family: var(--f-mono); font-size: 10px;



  letter-spacing: 0.08em; text-transform: uppercase;



  color: var(--c-mute-1);



}



.prod-card-name {



  font-family: var(--f-display); font-size: var(--t-lg);



  font-weight: 400; line-height: 1.2; letter-spacing: -0.015em;



  color: var(--c-ink); cursor: pointer; min-height: 2.4em;



  margin: 0;



}



.prod-card-name:hover { color: var(--c-accent); }



.prod-card-spec {



  font-family: var(--f-mono); font-size: 11px;



  color: var(--c-mute-1); letter-spacing: 0.04em;



  padding-bottom: 8px;



}



.prod-card-price {



  font-size: var(--t-sm); color: var(--c-mute-1);



  padding-top: 8px; margin-top: auto;



  border-top: 1px solid var(--c-line);



}



.prod-card-price strong { color: var(--c-ink); font-weight: 600; }



.prod-card-actions {



  display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 12px;



}



.prod-buy {



  background: var(--c-accent); color: var(--c-paper);



  padding: 12px 18px; border: none; border-radius: 8px;



  font-family: var(--f-mono); font-size: 13px;



  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;



  cursor: pointer; transition: background 0.2s ease;



}



.prod-buy:hover { background: var(--c-ink); }



.prod-details {



  background: var(--c-paper-pure); color: var(--c-ink);



  border: 1px solid var(--c-line);



  width: 40px; padding: 0; border-radius: 8px;



  display: inline-flex; align-items: center; justify-content: center;



  cursor: pointer; transition: all 0.2s ease;



}



.prod-details:hover { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }



.prod-details svg { width: 16px; height: 16px; }



@media (max-width: 1100px) {



  .cat-layout { grid-template-columns: 220px 1fr; gap: 24px; }



  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }



}



@media (max-width: 768px) {



  .cat-layout { grid-template-columns: 1fr; }



  .cat-sidebar { display: none !important; }



  .catalog-categories { display: none !important; }



  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }



}



@media (max-width: 480px) {



  .prod-grid { grid-template-columns: 1fr; }



}



/* ============ CATALOG GRID (legacy — kept for compat) ============ */



.catalog-toolbar {



  display: flex; justify-content: space-between; align-items: center;



  gap: 24px; flex-wrap: wrap; padding: 28px 0;



  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);



  margin-bottom: 48px;



}



.catalog-tabs { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }



.catalog-tabs button {



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;



  text-transform: uppercase; padding: 10px 16px; color: var(--c-mute-1);



  border: 1px solid transparent; transition: all 0.2s ease;



}



.catalog-tabs button:hover { color: var(--c-ink); }



.catalog-tabs button.active { color: var(--c-ink); border-color: var(--c-ink); }



.catalog-search {



  display: flex; align-items: center; gap: 12px;



  border-bottom: 1px solid var(--c-ink); padding: 8px 0; min-width: 240px;



}



.catalog-search input {



  background: transparent; border: none; outline: none; flex: 1;



  font-size: var(--t-sm); color: var(--c-ink);



}



.catalog-search input::placeholder { color: var(--c-mute-2); }



.catalog-count { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; color: var(--c-mute-1); }



.catalog-grid {



  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;



  background: var(--c-line); border: 1px solid var(--c-line);



}



.catalog-card {



  background: var(--c-paper-pure); display: flex; flex-direction: column;



  cursor: pointer; transition: background 0.25s ease;



}



.catalog-card:hover { background: var(--c-paper); }



.catalog-card-img { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }



.catalog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }



.catalog-card:hover .catalog-card-img img { transform: scale(1.04); }



.catalog-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }



.catalog-card-line { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }



.catalog-card-name { font-family: var(--f-display); font-size: var(--t-md); font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; }



.catalog-card-foot {



  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--c-line);



  display: flex; justify-content: space-between; align-items: center;



  font-family: var(--f-mono); font-size: 11px; color: var(--c-ink);



}



.catalog-card-foot button {



  font-family: var(--f-mono); font-size: 11px; padding: 4px 10px;



  border: 1px solid var(--c-ink); color: var(--c-ink); transition: all 0.2s;



}



.catalog-card-foot button:hover { background: var(--c-ink); color: var(--c-paper); }



/* ============ HOOK BANNERS ============ */



.hooks { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }



.hook {



  background: var(--c-paper-pure); padding: clamp(40px, 5vw, 64px);



  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;



}



.hook-image { aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; }



.hook-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); transition: filter 0.4s ease; }



.hook:hover .hook-image img { filter: grayscale(0) contrast(1); }



.hook-content { display: flex; flex-direction: column; gap: 20px; }



.hook-badge { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); }



.hook-title { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }



.hook-desc { color: var(--c-mute-1); font-size: var(--t-sm); line-height: 1.6; }



/* ============ CALCULATOR ============ */



.calc-wrap { border: 1px solid var(--c-ink); background: var(--c-paper-pure); }



.calc-head { padding: 40px 48px 32px; border-bottom: 1px solid var(--c-line); }



.calc-head-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 16px; }



.calc-head h3 { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300; letter-spacing: -0.025em; line-height: 1.1; }



.calc-body { display: grid; grid-template-columns: 1fr 1fr; }



.calc-controls { padding: 40px 48px; border-right: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 36px; }



.slider-block { display: flex; flex-direction: column; gap: 14px; }



.slider-label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-mute-1); }



.slider-label-val { font-size: var(--t-lg); color: var(--c-ink); letter-spacing: 0; }



input[type="range"] { -webkit-appearance: none; width: 100%; height: 1px; background: var(--c-ink); outline: none; }



input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--c-ink); border-radius: 50%; cursor: pointer; transition: transform 0.2s ease; }



input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); background: var(--c-accent); }



input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; background: var(--c-ink); border: none; border-radius: 50%; cursor: pointer; }



.calc-results { padding: 40px 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; background: var(--c-fill); }



.calc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--c-line); }



.calc-row:last-child { border-bottom: none; padding-top: 24px; }



.calc-row-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-mute-1); }



.calc-row-val { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; color: var(--c-ink); letter-spacing: -0.01em; }



.calc-row.highlight .calc-row-label { color: var(--c-ink); font-weight: 500; }



.calc-row.highlight .calc-row-val { font-size: var(--t-2xl); color: var(--c-accent); font-weight: 600; }



.calc-foot { padding: 20px 48px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.05em; color: var(--c-mute-1); border-top: 1px solid var(--c-line); }



/* ============ PARTNER CTA (DARK BAND) ============ */



.partner-cta { background: var(--c-ink); color: var(--c-paper); padding: var(--section) 0; }



.partner-cta .wrap { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }



.partner-cta-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-mute-2); margin-bottom: 32px; }



.partner-cta h2 { font-family: var(--f-display); font-size: clamp(48px, 7vw, 96px); font-weight: 300; line-height: 1; letter-spacing: -0.03em; }



.partner-cta h2 em { font-style: italic; }



.partner-cta-right { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }



.partner-cta-right p { color: var(--c-mute-2); font-size: var(--t-sm); line-height: 1.6; }



/* ============ EDITORIAL TEXT PAGES (about, cooperation) ============ */



.editorial { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 100px); margin-bottom: clamp(80px, 10vw, 140px); }



.editorial-label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); padding-top: 12px; }



.editorial-body { display: flex; flex-direction: column; gap: 28px; max-width: 65ch; }



.editorial-body h2 { font-family: var(--f-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; letter-spacing: -0.025em; }



.editorial-body h2 em { font-style: italic; }



.editorial-body p { font-size: var(--t-md); line-height: 1.65; color: var(--c-ink); }



.editorial-body p.muted { color: var(--c-mute-1); }



.editorial-body ul { list-style: none; display: flex; flex-direction: column; gap: 14px; padding-left: 0; }



.editorial-body ul li { font-size: var(--t-md); line-height: 1.5; padding-left: 28px; position: relative; color: var(--c-ink); }



.editorial-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-accent); font-weight: 500; }



/* ============ STATS STRIP ============ */



.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); margin: clamp(60px, 8vw, 100px) 0; }



.stat { padding: 40px 32px; border-right: 1px solid var(--c-line); }



.stat:last-child { border-right: none; }



.stat-num { font-family: var(--f-display); font-size: clamp(48px, 6vw, 80px); font-weight: 300; line-height: 1; letter-spacing: -0.025em; }



.stat-num em { font-style: italic; color: var(--c-accent); }



.stat-label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); margin-top: 14px; }



/* ============ TEAM / PEOPLE CARDS ============ */



.team-grid {



  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;



  background: var(--c-line); border: 1px solid var(--c-line);



}



.team-card {



  background: var(--c-paper-pure); padding: 0;



  display: grid; grid-template-columns: 1fr 1fr; gap: 0;



  min-height: 420px;



}



.team-card-photo { aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; height: 100%; }



.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }



.team-card-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; }



.team-card-role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); }



.team-card-name {



  font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300;



  line-height: 1.05; letter-spacing: -0.025em; color: var(--c-ink);



}



.team-card-name em { font-style: italic; }



.team-card-quote {



  font-family: var(--f-display); font-style: italic; font-weight: 300;



  font-size: var(--t-md); line-height: 1.45; color: var(--c-ink); margin-top: auto;



  padding-top: 16px; border-top: 1px solid var(--c-line);



}



.team-card-quote::before { content: '«'; color: var(--c-accent); font-style: normal; margin-right: 2px; }



.team-card-quote::after  { content: '»'; color: var(--c-accent); font-style: normal; margin-left: 2px; }



/* ============ MANAGER CONTACT CARD (contacts page) ============ */



.manager-card {



  background: var(--c-paper-pure); border: 1px solid var(--c-ink);



  display: grid; grid-template-columns: 140px 1fr; gap: 0;



  margin-bottom: 28px;



}



.manager-card-photo { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }



.manager-card-photo img { width: 100%; height: 100%; object-fit: cover; }



.manager-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }



.manager-card-role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); }



.manager-card-name { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }



.manager-card-contacts { font-size: var(--t-sm); margin-top: auto; padding-top: 10px; border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 4px; }



.manager-card-contacts a { color: var(--c-ink); }



.manager-card-contacts a:hover { color: var(--c-accent); }



.manager-card-contacts .label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }



/* ============ FORM (contacts) ============ */



.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }



.form-aside { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }



.form-aside h3 { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }



.form-aside p { color: var(--c-mute-1); font-size: var(--t-md); line-height: 1.6; }



.form-contact-block { display: flex; flex-direction: column; gap: 6px; padding-top: 20px; border-top: 1px solid var(--c-line); }



.form-contact-block .label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }



.form-contact-block .value { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; letter-spacing: -0.01em; }



.form-contact-block .value a:hover { color: var(--c-accent); }



form.request-form { display: flex; flex-direction: column; gap: 24px; }



.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }



.form-field { display: flex; flex-direction: column; gap: 8px; }



.form-field label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }



.form-field label .req { color: var(--c-accent); }



.form-field input, .form-field select, .form-field textarea {



  background: transparent; border: none; border-bottom: 1px solid var(--c-line);



  padding: 12px 0; font-size: var(--t-md); color: var(--c-ink);



  transition: border-color 0.2s ease; outline: none;



}



.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--c-ink); }



.form-field textarea { resize: vertical; min-height: 100px; }



.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230A0A0A' fill='none' stroke-width='1.2'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }



.form-checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: var(--t-sm); color: var(--c-mute-1); line-height: 1.5; }



.form-checkbox input { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--c-ink); }



.form-checkbox a { color: var(--c-ink); border-bottom: 1px solid var(--c-line); }



.form-submit { align-self: flex-start; margin-top: 8px; }



/* ============ FOOTER (dark, brand-aligned) ============ */



footer {



  background: var(--c-ink); /* brand black #0A0A0A */



  color: var(--c-paper);



  padding: 64px 0 24px;



  margin-top: clamp(60px, 8vw, 100px);



}



.foot-grid {



  display: grid; grid-template-columns: 1.4fr 0.7fr 1.4fr 1fr;



  gap: clamp(32px, 4vw, 64px);



  margin-bottom: 48px;



}



.foot-col {



  display: flex; flex-direction: column; gap: 18px;



}



.foot-col h4 {



  font-family: var(--f-display); font-size: var(--t-xl);



  font-weight: 400; letter-spacing: -0.015em;



  color: var(--c-paper); margin: 0 0 8px;



}



/* Menu — 2-column list */



.foot-menu {



  list-style: none; display: grid;



  grid-template-columns: 1fr 1fr; gap: 14px 20px;



  padding: 0; margin: 0;



}



.foot-menu li a {



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;



  text-transform: uppercase;



  color: rgba(250,250,250,0.7);



  transition: color 0.2s ease;



  white-space: nowrap;



}



.foot-menu li a:hover { color: var(--c-accent); }



/* Catalog column — simple link */



.foot-catalog a {



  font-family: var(--f-display); font-size: var(--t-xl);



  font-weight: 400; letter-spacing: -0.015em;



  color: rgba(250,250,250,0.75);



  transition: color 0.2s ease;



}



.foot-catalog a:hover { color: var(--c-accent); }



/* Contacts column */



.foot-contacts { display: flex; flex-direction: column; gap: 12px; }



.foot-contacts a, .foot-contacts span {



  font-size: var(--t-sm); line-height: 1.4;



  color: rgba(250,250,250,0.78);



  display: inline-flex; align-items: center; gap: 8px;



}



.foot-contacts a:hover { color: var(--c-accent); }



.foot-contacts .icon { width: 14px; height: 14px; color: var(--c-accent); flex-shrink: 0; }



.foot-contacts .phone { font-weight: 500; color: var(--c-paper); }



.foot-contacts .address {



  margin-top: 8px; font-size: var(--t-sm); line-height: 1.5;



  color: rgba(250,250,250,0.65);



  align-items: flex-start;



}



.foot-contacts .address .icon { margin-top: 2px; }



/* Questions column */



.foot-ask {



  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;



}



.foot-ask-btn {



  display: inline-flex; align-items: center;



  padding: 14px 28px; border-radius: 6px;



  border: 1px solid var(--c-accent); color: var(--c-accent);



  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;



  text-transform: uppercase; font-weight: 600;



  background: transparent;



  transition: all 0.25s ease; cursor: pointer;



}



.foot-ask-btn:hover { background: var(--c-accent); color: var(--c-paper); }



.foot-socials { display: flex; gap: 16px; align-items: center; }



.foot-socials a {



  width: 36px; height: 36px;



  border-radius: 50%;



  display: inline-flex; align-items: center; justify-content: center;



  background: rgba(250,250,250,0.08);



  color: rgba(250,250,250,0.85);



  transition: all 0.2s ease;



}



.foot-socials a:hover { background: var(--c-accent); color: var(--c-paper); }



.foot-socials svg { width: 16px; height: 16px; }



/* Bottom strip */



.foot-bottom {



  padding-top: 24px; border-top: 1px solid rgba(250,250,250,0.12);



  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;



  color: rgba(250,250,250,0.55);



}



.foot-bottom em {



  font-style: italic; font-family: var(--f-display);



  font-size: var(--t-sm); letter-spacing: 0;



  color: rgba(250,250,250,0.8); text-transform: none;



}



.foot-brand-mini { display: flex; align-items: center; gap: 12px; }



.foot-brand-mini img { height: 24px; filter: brightness(0) invert(1); opacity: 0.85; }



@media (max-width: 980px) {



  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }



}



@media (max-width: 560px) {



  .foot-grid { grid-template-columns: 1fr; }



  .foot-bottom { flex-direction: column; align-items: flex-start; }



}



/* ============ MODAL (product detail / quick view) ============ */



.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.5); z-index: 300; backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }



.modal-backdrop.open { display: flex; }



.modal { background: var(--c-paper-pure); max-width: 920px; width: 100%; max-height: 90vh; overflow-y: auto; border: 1px solid var(--c-ink); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }



.modal-img-col { background: var(--c-fill); display: flex; align-items: center; justify-content: center; padding: 32px; }



.modal-img-col img { width: 100%; max-width: 360px; height: auto; }



.modal-body { padding: 40px; display: flex; flex-direction: column; gap: 18px; }



.modal-body .mono { color: var(--c-mute-1); }



.modal-body h3 { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }



.modal-body .desc { color: var(--c-mute-1); font-size: var(--t-sm); line-height: 1.6; }



.modal-body .comp { font-size: var(--t-xs); color: var(--c-mute-1); line-height: 1.55; padding-top: 16px; border-top: 1px solid var(--c-line); }



.modal-body .actions { display: flex; gap: 12px; margin-top: 8px; }



.modal-close { position: absolute; top: 16px; right: 16px; font-size: 22px; padding: 8px 12px; background: var(--c-paper-pure); border: 1px solid var(--c-line); }



/* ============ RESPONSIVE ============ */



@media (max-width: 1280px) {



  .nav-menu { gap: 20px; }



  .nav-menu a { font-size: 12px; }



  .nav-lang button { padding: 8px 8px; }



  .nav-request-cta { padding: 10px 14px; font-size: 10px; }



}



@media (max-width: 1280px) {



  .lines-grid { grid-template-columns: repeat(3, 1fr); }



}



@media (max-width: 1100px) {



  .lines-grid { grid-template-columns: repeat(2, 1fr); }



  .catalog-grid { grid-template-columns: repeat(3, 1fr); }



  .nav-lang { display: none; } /* move to drawer */



  .nav-catalog-cta { padding: 10px 16px; font-size: 11px; }



  .nav-request-cta { padding: 10px 14px; font-size: 10px; }



}



@media (max-width: 980px) {



  .nav-desktop { display: none !important; }



  .nav-mobile {



    display: flex !important;



    flex-direction: column;



    gap: 12px;



    padding: 14px 16px;



  }



  .nav-mobile-top {



    display: flex;



    align-items: center;



    justify-content: space-between;



    width: 100%;



    gap: 12px;



  }



  .nav-mobile-top .nav-logo img {



    height: 38px;



  }



  .nav-mobile-top .nav-mobile-actions {



    display: inline-flex;



    align-items: center;



    gap: 12px;



    margin-left: auto;



  }



  .nav-mobile-top .nav-mobile-actions .menu-toggle,



  .nav-mobile-top .nav-mobile-actions .nav-icon {



    width: 36px;



    height: 36px;



    display: inline-flex;



    align-items: center;



    justify-content: center;



    color: var(--c-ink);



    background: none;



    border: none;



    padding: 0;



    cursor: pointer;



  }



  .nav-mobile-top .nav-mobile-actions .menu-toggle svg,



  .nav-mobile-top .nav-mobile-actions .nav-icon svg {



    width: 18px;



    height: 18px;



  }



  .nav-mobile-bottom {



    display: block;



    width: 100%;



    margin-top: 4px;



  }



  .nav-catalog-cta-large {



    display: flex;



    align-items: center;



    justify-content: center;



    gap: 10px;



    background: var(--c-accent);



    color: var(--c-paper);



    width: 100%;



    padding: 12px 24px;



    border-radius: 30px;



    font-family: var(--f-mono);



    font-size: 13px;



    font-weight: 700;



    text-transform: uppercase;



    letter-spacing: 0.08em;



    text-decoration: none;



    transition: background 0.2s ease, transform 0.15s ease;



    border: none;



    box-shadow: 0 4px 12px rgba(220, 68, 5, 0.15);



  }



  .nav-catalog-cta-large:hover {



    background: var(--c-ink);



    color: var(--c-paper);



    box-shadow: 0 4px 12px rgba(10, 10, 10, 0.15);



  }



  .nav-catalog-cta-large:active {



    transform: scale(0.98);



  }



  .nav-catalog-cta-icon-svg {



    stroke-width: 2.2;



  }



  .mobile-drawer { display: block; }



  .mobile-drawer-lang-wrapper {



    margin-top: 32px;



    padding-top: 24px;



    border-top: 1px solid var(--c-line);



    margin-bottom: 24px;



  }



  .mobile-drawer-lang-wrapper .nav-lang {



    display: flex !important;



    gap: 8px;



  }



  .mobile-drawer-lang-wrapper button {



    font-family: var(--f-mono);



    font-size: 13px;



    text-transform: uppercase;



    padding: 8px 14px;



    color: var(--c-mute-1);



    border: 1px solid var(--c-line);



    border-radius: 6px;



    background: var(--c-paper-pure);



    transition: all 0.2s;



  }



  .mobile-drawer-lang-wrapper button:hover {



    color: var(--c-ink);



    border-color: var(--c-ink);



  }



  .mobile-drawer-lang-wrapper button.active {



    color: var(--c-paper);



    background: var(--c-accent);



    border-color: var(--c-accent);



  }



  .mobile-drawer-contacts {



    margin-top: 32px;



    padding-top: 24px;



    border-top: 1px solid var(--c-line);



    display: flex;



    flex-direction: column;



    gap: 14px;



  }



  .mobile-drawer-contacts .contact-title {



    font-family: var(--f-mono);



    font-size: 11px;



    letter-spacing: 0.08em;



    text-transform: uppercase;



    color: var(--c-mute-1);



    font-weight: 600;



  }



  .mobile-drawer-contacts .phone-link {



    display: flex;



    align-items: center;



    gap: 10px;



    font-family: var(--f-mono);



    font-size: 15px;



    font-weight: 500;



    color: var(--c-ink);



    transition: color 0.2s ease;



    text-decoration: none;



  }



  .mobile-drawer-contacts .phone-link:hover {



    color: var(--c-accent);



  }



  .mobile-drawer-contacts .phone-link svg {



    width: 18px;



    height: 18px;



    color: var(--c-mute-2);



  }



  .mobile-drawer-contacts .phone-link:hover svg {



    color: var(--c-accent);



  }



}



@media (max-width: 400px) {



  .nav-mobile { padding: 10px 12px; gap: 8px; }



  .nav-mobile-top .nav-logo img { height: 32px; }



  .nav-mobile-top .nav-mobile-actions { gap: 6px; }



  .nav-mobile-top .nav-mobile-actions .menu-toggle,



  .nav-mobile-top .nav-mobile-actions .nav-icon { width: 30px; height: 30px; }



  .nav-mobile-top .nav-mobile-actions .menu-toggle svg,



  .nav-mobile-top .nav-mobile-actions .nav-icon svg { width: 16px; height: 16px; }



  .nav-mobile-bottom .nav-catalog-cta-large {



    padding: 10px 20px;



    font-size: 11px;



    gap: 8px;



  }



}



  .hero-grid { grid-template-columns: 1fr; gap: 56px; }



  .hero-visual { aspect-ratio: 4/3; }



  .hero-slides-container { min-height: 480px; height: calc(100dvh - 114px); height: calc(100vh - 114px); }
  .hero-slide { background-position: 75% center; }



  .hero-slide-content { max-width: 480px; gap: 22px; }



  .hero-slide-title { font-size: clamp(48px, 7vw, 80px); }



  .hero-nav { width: 44px; height: 44px; border-radius: 50%; }



  .hero-nav svg { width: 18px; height: 18px; }



  .hero-nav-prev { left: 16px; }



  .hero-nav-next { right: 16px; }



  .hero-progress { gap: 16px; padding: 20px var(--gutter); }



  .hero-dot { width: 30px; }



  /* darker overlay since photos take more visual space on tablets */



  .hero-slide::before {



    background: linear-gradient(to right,



      rgba(10, 10, 10, 0.78) 0%,



      rgba(10, 10, 10, 0.6) 35%,



      rgba(10, 10, 10, 0.2) 65%,



      rgba(10, 10, 10, 0) 80%);



  }



  .meta-strong-grid { grid-template-columns: repeat(2, 1fr); }



  .meta-strong-cell:nth-child(2) { border-right: none; }



  .meta-strong-cell:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }



  .meta-strong-cell { padding: 32px 24px; gap: 16px; }



  .section-head { grid-template-columns: 1fr; gap: 24px; }



  .page-head .wrap { grid-template-columns: 1fr; gap: 24px; }



  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }



  .audience-row { grid-template-columns: 60px 1fr; row-gap: 16px; column-gap: 16px; }



  .audience-row .audience-desc, .audience-row .audience-link { grid-column: 2; text-align: left; }



  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }



  .feat-3, .feat-4, .feat-6 { grid-column: span 1; }



  .catalog-grid { grid-template-columns: repeat(2, 1fr); }



  .hooks { grid-template-columns: 1fr; }



  .hook { grid-template-columns: 1fr; }



  .calc-body { grid-template-columns: 1fr; }



  .calc-controls { border-right: none; border-bottom: 1px solid var(--c-line); }



  .partner-cta .wrap { grid-template-columns: 1fr; gap: 40px; }



  .editorial { grid-template-columns: 1fr; gap: 16px; }



  .stats { grid-template-columns: repeat(2, 1fr); }



  .stat:nth-child(2) { border-right: none; }



  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }



  .form-grid { grid-template-columns: 1fr; }



  .form-row { grid-template-columns: 1fr; }



  .team-grid { grid-template-columns: 1fr; }



  .team-card { grid-template-columns: 1fr; }



  .team-card-photo { aspect-ratio: 4/3; }



  .modal { grid-template-columns: 1fr; max-height: 95vh; }



  .modal-img-col { padding: 24px; }



  .modal-body { padding: 28px; }



  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }



@media (max-width: 560px) {



  .lines-grid, .catalog-grid { grid-template-columns: 1fr; }



  .foot-grid { grid-template-columns: 1fr; }



  .foot-bottom { flex-direction: column; align-items: flex-start; }



  .stats { grid-template-columns: 1fr; }



  .stat { border-right: none; border-bottom: 1px solid var(--c-line); }



  .stat:last-child { border-bottom: none; }



  .meta-strong-grid { grid-template-columns: 1fr; }



  .meta-strong-cell { border-right: none; border-bottom: 1px solid var(--c-line); }



  .meta-strong-cell:last-child { border-bottom: none; }



  .hero-nav-prev { left: 8px; }



  .hero-nav-next { right: 8px; }



  .hero-nav { width: 38px; height: 38px; border-radius: 50%; }



  .hero-nav svg { width: 16px; height: 16px; }



  .hero-slides-container { min-height: 440px; height: calc(100dvh - 114px); height: calc(100vh - 114px); }



  .hero-slide-content { max-width: 100%; gap: 18px; }



  .hero-slide-title { font-size: clamp(40px, 10vw, 56px); }



  /* on mobile: darken whole background so left text reads even on busy backgrounds */



  .hero-slide::before {



    background: linear-gradient(to bottom,



      rgba(10, 10, 10, 0.4) 0%,



      rgba(10, 10, 10, 0.8) 100%);



  }



  .hero-slide { background-position: 75% center; }



  .hero-progress { flex-direction: column; align-items: flex-start; gap: 12px; }



}



/* ============ PRODUCT PAGE STYLES (was inline in product.html) ============ */



/* === from product.html === */



/* ============ PRODUCT PAGE ============ */



  .product-page-head {



    padding: clamp(28px, 4vw, 56px) 0 clamp(16px, 2vw, 28px);



  }



  .product-page-head .crumbs {



    font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1);



  }



  .product-page-head .crumbs a { color: var(--c-mute-1); transition: color .2s; }



  .product-page-head .crumbs a:hover { color: var(--c-accent); }



  .product-layout {



    display: grid; grid-template-columns: 1.1fr 1fr;



    gap: clamp(32px, 5vw, 80px);



    padding-bottom: clamp(40px, 5vw, 72px);



    align-items: start;



  }



  @media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } }



  /* gallery */



  .product-gallery {



    background: var(--c-paper-pure);



    border: 1px solid var(--c-line);



    border-radius: 18px;



    aspect-ratio: 4 / 5;



    display: flex; align-items: center; justify-content: center;



    overflow: hidden;



    padding: 36px;



  }



  .product-gallery img {



    max-width: 100%; max-height: 100%;



    width: auto; height: auto; object-fit: contain;



  }



  /* info column (right) */



  .product-info {



    position: sticky; top: 100px;



    display: flex; flex-direction: column; gap: 20px;



  }



  .product-info-line {



    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;



    text-transform: uppercase; color: var(--c-accent); font-weight: 600;



  }



  .product-info-name {



    font-family: var(--f-display); font-size: clamp(36px, 5vw, 60px);



    font-weight: 400; line-height: 1.05; letter-spacing: -0.025em;



    color: var(--c-ink);



  }



  .product-info-sku {



    font-family: var(--f-mono); font-size: 12px;



    color: var(--c-mute-1); letter-spacing: 0.04em;



  }



  .product-info-desc-short {



    font-size: var(--t-md); color: var(--c-mute-1); line-height: 1.55;



    border-top: 1px solid var(--c-line);



    padding-top: 18px;



  }



  /* prices block */



  .product-prices {



    background: var(--c-paper-pure);



    border: 1px solid var(--c-line); border-radius: 14px;



    padding: 22px 24px;



    display: flex; flex-direction: column; gap: 10px;



  }



  .price-row {



    display: flex; justify-content: space-between; align-items: baseline;



  }



  .price-row-label {



    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;



    text-transform: uppercase; color: var(--c-mute-1);



  }



  .price-row-value {



    font-family: var(--f-display); font-size: 26px;



    font-weight: 500; color: var(--c-ink); letter-spacing: -0.015em;



  }



  .price-row-value em {



    font-style: normal; font-size: 13px; color: var(--c-mute-1);



    font-weight: 400; margin-left: 2px;



  }



  .price-row-value-small {



    font-family: var(--f-display); font-size: 18px;



    color: var(--c-mute-1); font-weight: 400;



  }



  /* qty + add */



  .add-row {



    display: flex; gap: 12px; align-items: stretch;



  }



  .add-row .qty-control { height: 56px; border-radius: 10px; }



  .add-row .qty-btn { width: 44px; height: 100%; font-size: 22px; }



  .add-row .qty-input { width: 60px; height: 100%; font-size: 17px; }



  .add-btn {



    flex: 1;



    background: var(--c-accent); color: var(--c-paper);



    border: none; cursor: pointer;



    border-radius: 10px;



    padding: 0 28px; height: 56px;



    font-family: var(--f-mono); font-size: 13px; font-weight: 700;



    letter-spacing: 0.08em; text-transform: uppercase;



    transition: background .2s ease, transform .1s ease;



    box-shadow: 0 4px 16px rgba(220, 68, 5, 0.22);



    display: flex; align-items: center; justify-content: center; gap: 10px;



  }



  .add-btn:hover { background: var(--c-ink); box-shadow: 0 4px 16px rgba(10,10,10,0.2); }



  .add-btn:active { transform: translateY(1px); }



  .add-btn svg { width: 16px; height: 16px; }



  /* big heart button — у вибране */



  .wishlist-btn-big {



    width: 56px; height: 56px;



    background: transparent; border: 1px solid var(--c-line);



    border-radius: 10px; cursor: pointer;



    display: flex; align-items: center; justify-content: center;



    color: var(--c-mute-1);



    transition: all .2s ease;



  }



  .wishlist-btn-big:hover { color: var(--c-accent); border-color: var(--c-accent); }



  .wishlist-btn-big.is-active { color: var(--c-accent); border-color: var(--c-accent); }



  .wishlist-btn-big.is-active svg { fill: var(--c-accent); }



  .wishlist-btn-big svg { width: 22px; height: 22px; }



  .wishlist-btn-big.is-bump { animation: heartBump .4s ease; }



  .min-order-note {



    font-family: var(--f-mono); font-size: 11px;



    color: var(--c-mute-1); letter-spacing: 0.04em;



    padding-top: 4px;



  }



  .min-order-note strong { color: var(--c-ink); font-weight: 600; }



  /* — sections below — */



  .product-section {



    padding: clamp(28px, 4vw, 56px) 0;



    border-top: 1px solid var(--c-line);



  }



  .product-section h2 {



    font-family: var(--f-display); font-size: clamp(26px, 3vw, 38px);



    font-weight: 400; letter-spacing: -0.02em;



    margin-bottom: 24px;



  }



  .product-section p {



    font-size: var(--t-md); color: var(--c-mute-1); line-height: 1.7;



    max-width: 75ch;



  }



  /* characteristics table-like grid */



  .char-list {



    display: grid; grid-template-columns: 1fr 1fr;



    gap: 0; max-width: 880px;



    border: 1px solid var(--c-line); border-radius: 12px;



    overflow: hidden;



  }



  .char-row {



    display: grid; grid-template-columns: 1fr 1fr;



    border-bottom: 1px solid var(--c-line);



  }



  .char-row:last-child { border-bottom: none; }



  .char-key, .char-val {



    padding: 16px 20px;



    font-size: 14px;



  }



  .char-key {



    background: var(--c-fill);



    font-family: var(--f-mono); letter-spacing: 0.03em;



    color: var(--c-mute-1);



    border-right: 1px solid var(--c-line);



  }



  .char-val { color: var(--c-ink); font-weight: 500; }



  @media (max-width: 700px) {



    .char-list { grid-template-columns: 1fr; }



    .char-row { grid-template-columns: 1fr; }



    .char-key { border-right: none; border-bottom: 1px solid var(--c-line); padding-bottom: 6px; }



    .char-val { padding-top: 8px; }



  }



  /* nutrition — 4 cells like screenshot */



  .nutrition-grid {



    display: grid; grid-template-columns: repeat(4, 1fr);



    gap: 14px; max-width: 880px;



  }



  .nutri-cell {



    background: var(--c-paper-pure);



    border: 1px solid var(--c-line); border-radius: 12px;



    padding: 22px 18px;



    text-align: center;



  }



  .nutri-label {



    font-family: var(--f-mono); font-size: 10px;



    letter-spacing: 0.1em; text-transform: uppercase;



    color: var(--c-mute-1); margin-bottom: 12px; font-weight: 500;



  }



  .nutri-value {



    font-family: var(--f-display); font-size: 24px;



    font-weight: 500; letter-spacing: -0.01em;



    color: var(--c-accent); line-height: 1.2;



  }



  @media (max-width: 700px) {



    .nutrition-grid { grid-template-columns: repeat(2, 1fr); }



  }



  /* simple alert if product not found */



  .product-404 {



    padding: 80px 24px; text-align: center;



  }



  .product-404 h1 {



    font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px);



    margin-bottom: 18px;



  }



/* === from cart.html === */



/* ============ CART PAGE STYLES ============ */



  .cart-page-head {



    padding: clamp(40px, 5vw, 72px) 0 clamp(24px, 3vw, 40px);



    border-bottom: 1px solid var(--c-line);



  }



  .cart-page-head .crumbs {



    font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 16px;



  }



  .cart-page-head .crumbs a:hover { color: var(--c-accent); }



  .cart-page-head h1 {



    font-family: var(--f-display); font-size: clamp(40px, 6vw, 80px);



    font-weight: 400; line-height: 1; letter-spacing: -0.025em;



  }



  .cart-summary-bar {



    margin-top: 18px;



    display: flex; gap: 28px; flex-wrap: wrap;



    font-family: var(--f-mono); font-size: 13px;



    color: var(--c-mute-1); letter-spacing: 0.04em;



  }



  .cart-summary-bar strong { color: var(--c-ink); font-weight: 700; }



  .cart-layout {



    display: grid; grid-template-columns: 1fr 380px;



    gap: clamp(28px, 4vw, 64px);



    padding: clamp(36px, 4vw, 60px) 0 clamp(72px, 9vw, 120px);



    align-items: start;



  }



  @media (max-width: 900px) {
    .cart-layout {
      grid-template-columns: 1fr;
      padding-bottom: 80px;
    }
  }



  /* --- empty state --- */



  .cart-empty {



    grid-column: 1 / -1;



    text-align: center;



    padding: clamp(48px, 8vw, 120px) 24px;



    border: 1px dashed var(--c-line);



    border-radius: 16px;



    background: var(--c-paper);



  }



  .cart-empty-icon {



    width: 72px; height: 72px; margin: 0 auto 22px;



    color: var(--c-mute-2);



  }



  .cart-empty-icon svg { width: 100%; height: 100%; }



  .cart-empty h2 {



    font-family: var(--f-display); font-size: clamp(28px, 3.5vw, 42px);



    font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px;



  }



  .cart-empty p {



    color: var(--c-mute-1); font-size: var(--t-md); line-height: 1.55;



    max-width: 50ch; margin: 0 auto 32px;



  }



  /* --- items list --- */



  .cart-list {



    display: flex; flex-direction: column; gap: 0;



    border: 1px solid var(--c-line); border-radius: 12px; overflow: hidden;



    background: var(--c-paper-pure);



  }



  .cart-item {



    display: grid;



    grid-template-columns: 90px 1fr auto auto auto;



    gap: 20px; align-items: center;



    padding: 20px 22px;



    border-bottom: 1px solid var(--c-line);



    transition: background 0.2s ease;



  }



  .cart-item:last-child { border-bottom: none; }



  .cart-item:hover { background: var(--c-fill); }



  .cart-item-img {



    width: 90px; height: 90px;



    background: var(--c-fill); border-radius: 8px;



    overflow: hidden;



    display: flex; align-items: center; justify-content: center;



  }



  .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }



  .cart-item-body { min-width: 0; }



  .cart-item-line {



    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;



    text-transform: uppercase; color: var(--c-accent);



    margin-bottom: 6px;



  }



  .cart-item-name {



    font-family: var(--f-display); font-size: 20px;



    font-weight: 500; letter-spacing: -0.01em; line-height: 1.2;



    color: var(--c-ink); margin-bottom: 4px;



  }



  .cart-item-spec {



    font-size: 13px; color: var(--c-mute-1);



  }



  .cart-item-units {



    font-family: var(--f-mono); font-size: 11px;



    color: var(--c-mute-1); letter-spacing: 0.03em;



    margin-top: 6px;



  }



  .cart-item-units strong { color: var(--c-ink); font-weight: 700; }



  /* qty column wrap with label */



  .qty-col {



    display: flex; flex-direction: column; align-items: center; gap: 6px;



  }



  .qty-label {



    font-family: var(--f-mono); font-size: 9px;



    color: var(--c-mute-2); letter-spacing: 0.1em; text-transform: uppercase;



  }



  /* price column */



  .cart-item-price {



    display: flex; flex-direction: column; align-items: flex-end;



    min-width: 120px;



  }



  .cart-item-price-unit {



    font-family: var(--f-mono); font-size: 11px;



    color: var(--c-mute-1); letter-spacing: 0.03em;



    margin-bottom: 4px;



  }



  .cart-item-price-sum {



    font-family: var(--f-display); font-size: 22px;



    font-weight: 500; color: var(--c-ink); letter-spacing: -0.01em;



    line-height: 1;



  }



  .cart-item-price-sum em { font-style: normal; font-size: 13px; color: var(--c-mute-1); font-weight: 400; margin-left: 2px; }



  /* qty controls */



  .qty-control {



    display: inline-flex; align-items: stretch;



    border: 1px solid var(--c-line); border-radius: 8px;



    overflow: hidden; background: var(--c-paper-pure);



  }



  .qty-btn {



    width: 36px; height: 40px; padding: 0;



    background: transparent; border: none; cursor: pointer;



    font-family: var(--f-mono); font-size: 18px;



    color: var(--c-ink);



    transition: background 0.15s ease;



  }



  .qty-btn:hover { background: var(--c-fill); }



  .qty-btn:disabled { color: var(--c-mute-2); cursor: not-allowed; }



  .qty-input {



    width: 52px; height: 40px;



    border: none; border-left: 1px solid var(--c-line); border-right: 1px solid var(--c-line);



    text-align: center; font-family: var(--f-mono); font-size: 15px;



    font-weight: 600; color: var(--c-ink);



    -moz-appearance: textfield;



  }



  .qty-input::-webkit-outer-spin-button,



  .qty-input::-webkit-inner-spin-button {



    -webkit-appearance: none; margin: 0;



  }



  .cart-item-remove {



    width: 36px; height: 36px; border-radius: 50%;



    background: transparent; border: 1px solid var(--c-line);



    color: var(--c-mute-1); cursor: pointer;



    display: flex; align-items: center; justify-content: center;



    transition: all 0.2s ease;



  }



  .cart-item-remove:hover {



    background: #e74c3c; color: #fff; border-color: #e74c3c;



  }



  .cart-item-remove svg { width: 16px; height: 16px; }



  @media (max-width: 760px) {



    .cart-item {



      grid-template-columns: 72px 1fr auto;



      grid-template-rows: auto auto auto;



      gap: 12px 14px;



      padding: 16px;



    }



    .cart-item-img { width: 72px; height: 72px; grid-row: 1 / 3; }



    .cart-item-body { grid-column: 2 / 4; grid-row: 1; }



    .qty-col { grid-column: 2; grid-row: 2; align-items: flex-start; }



    .cart-item-price { grid-column: 3; grid-row: 2; min-width: 0; white-space: nowrap; }



    .cart-item-remove {



      grid-column: 1 / 4; grid-row: 3;



      justify-self: end; width: auto; height: 28px;



      padding: 0 12px; border-radius: 6px;



      font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em;



      text-transform: uppercase;



    }



    .cart-item-remove svg { display: none; }



    html[lang="ru-ru"] .cart-item-remove::before { content: 'Удалить'; }
    html[lang="en-gb"] .cart-item-remove::before { content: 'Remove'; }
    html:not([lang]) .cart-item-remove::before,
    html[lang="uk-ua"] .cart-item-remove::before { content: 'Видалити'; }

    .cart-actions-bar {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
      margin-bottom: 80px;
    }
    .cart-actions-bar .cart-continue,
    .cart-actions-bar .cart-clear-btn {
      text-align: center;
      width: 100%;
      padding: 12px 0;
      display: block;
    }
  }



  /* clear-all bar under list */



  .cart-actions-bar {



    margin-top: 18px;



    display: flex; justify-content: space-between; align-items: center;



    flex-wrap: wrap; gap: 14px;



  }



  .cart-clear-btn {



    font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1);



    background: transparent; border: none; cursor: pointer;



    padding: 8px 0;



    transition: color 0.2s ease;



  }



  .cart-clear-btn:hover { color: #e74c3c; }



  .cart-continue {



    font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1);



    text-decoration: underline; text-decoration-color: var(--c-line);



    text-underline-offset: 4px;



    transition: color 0.2s ease;



  }



  .cart-continue:hover { color: var(--c-accent); text-decoration-color: var(--c-accent); }



  /* --- right column (form) --- */



  .cart-aside {



    position: sticky; top: 100px;



    background: var(--c-paper-pure);



    border: 1px solid var(--c-line); border-radius: 12px;



    padding: clamp(24px, 3vw, 36px);



  }



  .cart-aside h3 {



    font-family: var(--f-display); font-size: 26px;



    font-weight: 400; letter-spacing: -0.015em;



    margin-bottom: 8px;



  }



  .cart-aside-lede {



    font-size: 13px; color: var(--c-mute-1); line-height: 1.5;



    margin-bottom: 24px;



  }



  /* Totals block inside aside */



  .cart-totals {



    background: var(--c-fill);



    border-radius: 10px;



    padding: 18px 20px;



    margin-bottom: 24px;



    display: flex; flex-direction: column; gap: 8px;



  }



  .cart-totals-row {



    display: flex; justify-content: space-between; align-items: center;



    font-family: var(--f-mono); font-size: 13px;



    color: var(--c-mute-1);



  }



  .cart-totals-row strong { color: var(--c-ink); font-weight: 600; }



  .cart-totals-divider { height: 1px; background: var(--c-line); margin: 4px 0; }



  .cart-totals-grand {



    display: flex; justify-content: space-between; align-items: baseline;



    margin-top: 4px;



  }



  .cart-totals-grand-label {



    font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1); font-weight: 600;



  }



  .cart-totals-grand-value {



    font-family: var(--f-display); font-size: 30px;



    font-weight: 500; color: var(--c-ink); letter-spacing: -0.02em;



    line-height: 1;



  }



  .cart-totals-grand-value em {



    font-style: normal; font-size: 14px;



    color: var(--c-mute-1); font-weight: 400; margin-left: 4px;



  }



  .cart-totals-prelim {



    font-size: 11px; color: var(--c-mute-1);



    line-height: 1.4; text-align: center;



    margin-top: 6px; padding-top: 8px;



    border-top: 1px dashed var(--c-line);



  }



  .cart-form { display: flex; flex-direction: column; gap: 14px; }



  .cart-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }



  .cart-form label {



    display: flex; flex-direction: column; gap: 6px;



    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1); font-weight: 500;



  }



  .cart-form label.required::after { content: ' *'; color: var(--c-accent); }



  .cart-form input,



  .cart-form textarea {



    border: 1px solid var(--c-line); border-radius: 8px;



    padding: 12px 14px; font-family: var(--f-body); font-size: 14px;



    color: var(--c-ink); background: var(--c-paper-pure);



    transition: border-color 0.2s ease, box-shadow 0.2s ease;



    width: 100%;



  }



  .cart-form input:focus,



  .cart-form textarea:focus {



    outline: none; border-color: var(--c-ink);



    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);



  }



  .cart-form textarea { resize: vertical; min-height: 80px; }



  .cart-form .form-consent {



    display: flex; gap: 10px; align-items: flex-start;



    font-family: var(--f-body); font-size: 12px;



    color: var(--c-mute-1); line-height: 1.4;



    text-transform: none; letter-spacing: 0;



    margin-top: 4px;



  }



  .cart-form .form-consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }



  .cart-form .form-consent a { color: var(--c-ink); text-decoration: underline; }



  .cart-submit-btn {



    margin-top: 8px;



    width: 100%;



    background: var(--c-accent); color: var(--c-paper);



    border: none; cursor: pointer;



    padding: 18px 24px; border-radius: 10px;



    font-family: var(--f-mono); font-size: 14px; font-weight: 700;



    letter-spacing: 0.05em; text-transform: uppercase;



    transition: background 0.2s ease, transform 0.1s ease;



    box-shadow: 0 4px 16px rgba(220, 68, 5, 0.2);



  }



  .cart-submit-btn:hover { background: var(--c-ink); box-shadow: 0 4px 16px rgba(10,10,10,0.2); }



  .cart-submit-btn:active { transform: translateY(1px); }



  .cart-submit-btn:disabled {



    background: var(--c-mute-2); cursor: not-allowed;



    box-shadow: none;



  }



  .cart-aside-note {



    margin-top: 16px;



    font-size: 12px; color: var(--c-mute-1); line-height: 1.5;



    text-align: center;



  }



  .cart-aside-note strong { color: var(--c-ink); }



  /* --- success state --- */



  .cart-success {



    grid-column: 1 / -1;



    text-align: center;



    padding: clamp(48px, 8vw, 120px) 24px;



    background: var(--c-paper);



    border: 1px solid var(--c-line); border-radius: 16px;



  }



  .cart-success-icon {



    width: 96px; height: 96px; margin: 0 auto 24px;



    border-radius: 50%;



    background: var(--c-accent);



    display: flex; align-items: center; justify-content: center;



    color: var(--c-paper);



  }



  .cart-success-icon svg { width: 48px; height: 48px; stroke-width: 2.5; }



  .cart-success h2 {



    font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px);



    font-weight: 400; letter-spacing: -0.025em; margin-bottom: 16px;



  }



  .cart-success-id {



    display: inline-block; padding: 8px 18px;



    background: var(--c-fill); border-radius: 999px;



    font-family: var(--f-mono); font-size: 14px; font-weight: 600;



    color: var(--c-ink); letter-spacing: 0.04em;



    margin-bottom: 24px;



  }



  .cart-success p {



    color: var(--c-mute-1); font-size: var(--t-md); line-height: 1.6;



    max-width: 55ch; margin: 0 auto 32px;



  }



  .cart-success-actions {



    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;



  }



/* === from wishlist.html === */



.wish-page-head {



    padding: clamp(40px, 5vw, 72px) 0 clamp(24px, 3vw, 40px);



    border-bottom: 1px solid var(--c-line);



  }



  .wish-page-head .crumbs {



    font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 16px;



  }



  .wish-page-head .crumbs a:hover { color: var(--c-accent); }



  .wish-page-head h1 {



    font-family: var(--f-display); font-size: clamp(40px, 6vw, 80px);



    font-weight: 400; line-height: 1; letter-spacing: -0.025em;



  }



  .wish-summary-bar {



    margin-top: 18px;



    font-family: var(--f-mono); font-size: 13px;



    color: var(--c-mute-1); letter-spacing: 0.04em;



  }



  .wish-summary-bar strong { color: var(--c-ink); font-weight: 700; }



  .wish-toolbar {



    display: flex; justify-content: space-between; align-items: center;



    flex-wrap: wrap; gap: 14px;



    padding: clamp(24px, 3vw, 36px) 0;



  }



  .wish-toolbar-actions {



    display: flex; gap: 12px; flex-wrap: wrap;



  }



  .wish-add-all-btn {



    background: var(--c-accent); color: var(--c-paper);



    border: none; cursor: pointer;



    padding: 12px 22px; border-radius: 8px;



    font-family: var(--f-mono); font-size: 12px; font-weight: 700;



    letter-spacing: 0.06em; text-transform: uppercase;



    transition: background .2s ease, transform .1s ease;



    display: inline-flex; align-items: center; gap: 8px;



  }



  .wish-add-all-btn:hover { background: var(--c-ink); }



  .wish-add-all-btn svg { width: 14px; height: 14px; }



  .wish-clear-btn {



    background: transparent; border: 1px solid var(--c-line);



    color: var(--c-mute-1); cursor: pointer;



    padding: 12px 22px; border-radius: 8px;



    font-family: var(--f-mono); font-size: 12px; font-weight: 600;



    letter-spacing: 0.06em; text-transform: uppercase;



    transition: all .2s ease;



  }



  .wish-clear-btn:hover { color: #e74c3c; border-color: #e74c3c; }



  .wish-continue {



    font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em;



    text-transform: uppercase; color: var(--c-mute-1);



    text-decoration: underline; text-decoration-color: var(--c-line);



    text-underline-offset: 4px;



    transition: color .2s ease;



  }



  .wish-continue:hover { color: var(--c-accent); }



  .wish-grid {



    display: grid;



    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));



    gap: 20px;



    margin-bottom: clamp(72px, 9vw, 120px);



  }



  .wish-card {



    background: var(--c-paper-pure);



    border: 1px solid var(--c-line);



    border-radius: 12px;



    overflow: hidden;



    display: flex; flex-direction: column;



    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;



    position: relative;



  }



  .wish-card:hover {



    border-color: var(--c-ink);



    transform: translateY(-3px);



    box-shadow: 0 8px 20px rgba(0,0,0,0.06);



  }



  .wish-card-img {



    aspect-ratio: 4 / 5;



    background: var(--c-paper-pure);



    overflow: hidden;



    display: flex; align-items: center; justify-content: center;



    padding: 16px;



    border-bottom: 1px solid var(--c-line);



  }



  .wish-card-img a {



    display: contents;



  }



  .wish-card-img img {



    max-width: 100%; max-height: 100%;



    width: auto; height: auto; object-fit: contain;



    transition: transform .35s ease;



  }



  .wish-card:hover .wish-card-img img { transform: scale(1.04); }



  .wish-card-remove {



    position: absolute; top: 10px; right: 10px;



    width: 32px; height: 32px; border-radius: 50%;



    background: var(--c-paper-pure); border: 1px solid var(--c-line);



    color: var(--c-mute-1); cursor: pointer;



    display: flex; align-items: center; justify-content: center;



    transition: all .2s ease;



    z-index: 2;



  }



  .wish-card-remove:hover { background: #e74c3c; color: #fff; border-color: #e74c3c; }



  .wish-card-remove svg { width: 14px; height: 14px; }



  .wish-card-body {



    padding: 18px 20px 20px;



    display: flex; flex-direction: column; gap: 6px;



    flex: 1;



  }



  .wish-card-line {



    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;



    text-transform: uppercase; color: var(--c-accent); font-weight: 600;



  }



  .wish-card-name {



    font-family: var(--f-display); font-size: 22px;



    font-weight: 500; line-height: 1.15; letter-spacing: -0.01em;



    color: var(--c-ink);



  }



  .wish-card-name a { color: inherit; transition: color .15s ease; }



  .wish-card-name a:hover { color: var(--c-accent); }



  .wish-card-spec {



    font-size: 13px; color: var(--c-mute-1); margin-bottom: 8px;



  }



  .wish-card-price {



    font-family: var(--f-mono); font-size: 14px;



    color: var(--c-mute-1); margin-top: auto;



  }



  .wish-card-price strong { color: var(--c-ink); font-weight: 700; font-size: 16px; }



  .wish-card-actions {



    margin-top: 14px;



    display: flex; gap: 8px;



  }



  .wish-card-buy {



    flex: 1;



    background: var(--c-ink); color: var(--c-paper);



    border: none; cursor: pointer;



    padding: 12px 14px; border-radius: 8px;



    font-family: var(--f-mono); font-size: 11px; font-weight: 700;



    letter-spacing: 0.06em; text-transform: uppercase;



    transition: background .2s ease;



    display: inline-flex; align-items: center; justify-content: center; gap: 6px;



  }



  .wish-card-buy:hover { background: var(--c-accent); }



  .wish-card-buy svg { width: 12px; height: 12px; }



  .wish-card-details {



    width: 42px; padding: 0; border-radius: 8px;



    background: transparent; border: 1px solid var(--c-line);



    color: var(--c-ink); cursor: pointer;



    display: inline-flex; align-items: center; justify-content: center;



    transition: all .2s ease;



  }



  .wish-card-details:hover { background: var(--c-fill); border-color: var(--c-ink); }



  .wish-card-details svg { width: 14px; height: 14px; }



  /* empty state */



  .wish-empty {



    text-align: center;



    padding: clamp(48px, 8vw, 120px) 24px;



    border: 1px dashed var(--c-line); border-radius: 16px;



    background: var(--c-paper);



    margin-bottom: clamp(72px, 9vw, 120px);



  }



  .wish-empty-icon {



    width: 72px; height: 72px; margin: 0 auto 22px;



    color: var(--c-mute-2);



  }



  .wish-empty-icon svg { width: 100%; height: 100%; }



  .wish-empty h2 {



    font-family: var(--f-display); font-size: clamp(28px, 3.5vw, 42px);



    font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px;



  }



  .wish-empty p {



    color: var(--c-mute-1); font-size: var(--t-md); line-height: 1.55;



    max-width: 50ch; margin: 0 auto 32px;



  }



/* === from price-lists.html === */



/* Простий 3-картковий layout як на mantinga */



  .price-title-section { padding: clamp(40px, 5vw, 80px) 0 clamp(32px, 4vw, 60px); }



  .price-title-section .crumbs {



    font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;



    text-transform: uppercase; color: var(--c-mute-1);



    text-align: center; margin-bottom: 20px;



  }



  .price-title-section .crumbs a:hover { color: var(--c-accent); }



  .price-title-section h1 {



    font-family: var(--f-display); font-size: clamp(48px, 6vw, 88px);



    font-weight: 400; line-height: 1; letter-spacing: -0.025em;



    color: var(--c-ink); text-align: center;



  }



  .price-cards-grid {



    display: grid; grid-template-columns: repeat(3, 1fr);



    gap: clamp(20px, 2.5vw, 36px);



    margin-bottom: clamp(80px, 10vw, 140px);



  }



  .price-card {



    background: var(--c-paper-pure);



    border: 1px solid var(--c-line);



    border-radius: 16px;



    padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 40px);



    display: flex; flex-direction: column;



    align-items: center; text-align: center; gap: 28px;



    min-height: 360px;



    transition: border-color 0.25s ease, transform 0.25s ease;



  }



  .price-card:hover { border-color: var(--c-ink); transform: translateY(-4px); }



  /* Spreadsheet-style icon-table with category name */



  .price-icon-table {



    display: inline-grid;



    grid-template-columns: 14px 1fr 14px;



    grid-template-rows: 14px auto 14px;



    border: 1px solid var(--c-line);



    border-collapse: collapse;



    min-width: 260px;



  }



  .price-icon-table div {



    border: 1px solid var(--c-line);



  }



  .price-icon-table .cell-empty { background: var(--c-fill); min-height: 14px; }



  .price-icon-table .cell-name {



    background: var(--c-paper-pure);



    grid-column: 2; grid-row: 2;



    padding: 16px 24px;



    font-family: var(--f-body); font-size: var(--t-md);



    font-weight: 600; color: var(--c-ink);



    white-space: nowrap;



  }



  .price-date {



    font-family: var(--f-mono); font-size: 14px;



    color: var(--c-mute-1); letter-spacing: 0.02em;



    margin-top: -8px;



  }



  .price-download-btn {



    display: inline-flex; align-items: center; justify-content: center; gap: 10px;



    background: var(--c-accent); color: var(--c-paper);



    padding: 20px 36px; border-radius: 999px;



    font-family: var(--f-mono); font-size: 15px; letter-spacing: 0.06em;



    text-transform: uppercase; font-weight: 800;



    transition: all 0.25s ease;



    min-width: 240px; cursor: pointer; border: none;



    box-shadow: 0 4px 16px rgba(220, 68, 5, 0.2);



  }



  .price-download-btn:hover { background: var(--c-ink); box-shadow: 0 4px 16px rgba(10,10,10,0.2); }



  .price-download-btn svg { width: 14px; height: 14px; }



  @media (max-width: 980px) {



    .price-cards-grid { grid-template-columns: 1fr; gap: 20px; }



  }



.pm-backdrop {



  display: none;



  position: fixed; inset: 0;



  background: rgba(10,10,10,0.55);



  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);



  z-index: 500;



  align-items: center; justify-content: center;



  padding: 24px;



  animation: pmFadeIn 0.2s ease;



}



.pm-backdrop.open { display: flex; }



@keyframes pmFadeIn { from { opacity: 0; } to { opacity: 1; } }



.pm {



  position: relative;



  background: var(--c-paper-pure);



  border-radius: 16px;



  padding: clamp(28px, 4vw, 44px);



  width: 100%; max-width: 440px;



  box-shadow: 0 24px 60px rgba(0,0,0,0.25);



  animation: pmSlideIn 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);



}



@keyframes pmSlideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }



.pm-close {



  position: absolute; top: 14px; right: 14px;



  width: 36px; height: 36px; border-radius: 50%;



  background: transparent; border: none;



  font-size: 24px; color: var(--c-mute-1); cursor: pointer;



  transition: background 0.2s ease;



}



.pm-close:hover { background: var(--c-fill); color: var(--c-ink); }



.pm-tag {



  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;



  text-transform: uppercase; color: var(--c-accent); font-weight: 600;



  margin-bottom: 12px;



}



.pm h3 {



  font-family: var(--f-display); font-size: clamp(22px, 2.6vw, 30px);



  font-weight: 400; letter-spacing: -0.02em; line-height: 1.15;



  color: var(--c-ink); margin-bottom: 12px;



}



.pm-lede {



  font-size: var(--t-sm); color: var(--c-mute-1); line-height: 1.55;



  margin-bottom: 22px;



}



.pm-form { display: flex; flex-direction: column; gap: 16px; }



.pm-form label { display: flex; flex-direction: column; gap: 6px; }



.pm-form label span {



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1);



}



.pm-form label em { color: var(--c-accent); font-style: normal; }



.pm-form input {



  background: transparent; border: none;



  border-bottom: 1px solid var(--c-line);



  padding: 10px 0; font-size: var(--t-md); color: var(--c-ink);



  outline: none; transition: border-color 0.2s ease;



}



.pm-form input:focus { border-color: var(--c-ink); }



.pm-submit {



  background: var(--c-accent); color: var(--c-paper);



  padding: 16px 28px; border-radius: 999px; border: none;



  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.06em;



  text-transform: uppercase; font-weight: 800;



  cursor: pointer; transition: background 0.2s ease;



  margin-top: 8px;



}



.pm-submit:hover { background: var(--c-ink); }



.pm-success { display: none; text-align: center; }



.pm.success .pm-form { display: none; }



.pm.success .pm-success { display: block; }



.pm-success-icon {



  width: 64px; height: 64px; margin: 4px auto 16px;



  border-radius: 50%; background: var(--c-accent); color: var(--c-paper);



  display: flex; align-items: center; justify-content: center;



}



.pm-success-icon svg { width: 28px; height: 28px; }



.pm-success p { color: var(--c-mute-1); line-height: 1.55; margin-bottom: 20px; }



.pm-success .pm-submit { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }



.pm-pdf-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }



.pm-submit-ghost {



  background: transparent !important; color: var(--c-ink) !important;



  border: 1px solid var(--c-ink) !important;



}



.pm-submit-ghost:hover { background: var(--c-ink) !important; color: var(--c-paper) !important; }



/* ============ B2B MODALS (Callback + Price Request from popular dev) ============ */



.b2b-modal {



  display: none;



  position: fixed; inset: 0;



  background: rgba(10, 10, 10, 0.55);



  backdrop-filter: blur(4px);



  -webkit-backdrop-filter: blur(4px);



  align-items: center; justify-content: center;



  padding: 24px;



  z-index: 10000;



}



.b2b-modal-content {



  background: var(--c-paper-pure);



  border-radius: 16px;



  max-width: 460px; width: 100%;



  box-shadow: 0 20px 60px rgba(0,0,0,0.25);



  overflow: hidden;



}



.b2b-modal-header {



  display: flex; justify-content: space-between; align-items: center;



  padding: 22px 28px;



  border-bottom: 1px solid var(--c-line);



}



.b2b-modal-header h3 {



  font-family: var(--f-display); font-size: 22px; font-weight: 500;



  margin: 0; color: var(--c-ink); letter-spacing: -0.015em;



}



.b2b-close {



  width: 36px; height: 36px; border-radius: 50%;



  background: transparent; border: 1px solid var(--c-line);



  color: var(--c-mute-1); cursor: pointer;



  font-size: 20px; line-height: 1;



  display: flex; align-items: center; justify-content: center;



  transition: all 0.2s ease;



}



.b2b-close:hover { color: var(--c-ink); border-color: var(--c-ink); background: var(--c-fill); }



.b2b-modal-body { padding: 24px 28px 28px; }



.b2b-form-group { margin-bottom: 14px; }



.b2b-form-group label {



  display: block;



  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;



  text-transform: uppercase; color: var(--c-mute-1); font-weight: 500;



  margin-bottom: 6px;



}



.b2b-form-control {



  width: 100%; padding: 12px 14px;



  border: 1px solid var(--c-line); border-radius: 8px;



  font-family: var(--f-body); font-size: 14px;



  color: var(--c-ink); background: var(--c-paper-pure);



  transition: border-color 0.2s ease, box-shadow 0.2s ease;



  box-sizing: border-box;



}



.b2b-form-control:focus {



  outline: none; border-color: var(--c-ink);



  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);



}



textarea.b2b-form-control { resize: vertical; min-height: 80px; }



.b2b-modal .btn-primary {



  width: 100%; margin-top: 8px;



  background: var(--c-accent); color: var(--c-paper);



  border: none; cursor: pointer;



  padding: 14px 24px; border-radius: 10px;



  font-family: var(--f-mono); font-size: 13px; font-weight: 700;



  letter-spacing: 0.05em; text-transform: uppercase;



  transition: background 0.2s ease;



  box-shadow: 0 4px 14px rgba(220, 68, 5, 0.25);



}



.b2b-modal .btn-primary:hover { background: var(--c-ink); }



.alert-b2b-success {



  display: none;



  padding: 16px 18px; border-radius: 10px;



  background: #d4edda; color: #155724;



  font-size: 14px; line-height: 1.5;



  margin-bottom: 18px;



}



/* Floating callback widget */



.floating-callback {



  position: fixed; bottom: 24px; right: 24px;



  z-index: 9999;
  pointer-events: none;



}



.floating-callback .callback-btn {



  width: 56px; height: 56px; border-radius: 50%;



  background: var(--c-accent); color: #fff;



  display: flex; align-items: center; justify-content: center;



  cursor: pointer; font-size: 22px;



  box-shadow: 0 8px 22px rgba(220, 68, 5, 0.4);



  transition: transform 0.2s ease, box-shadow 0.2s ease;



  pointer-events: auto;
}



.floating-callback .callback-btn:hover {



  transform: scale(1.08);



  box-shadow: 0 10px 26px rgba(220, 68, 5, 0.5);



}



@media (max-width: 500px) {



  .b2b-modal { padding: 16px; }



  .b2b-modal-header { padding: 18px 20px; }



  .b2b-modal-body { padding: 20px; }



}



/* ============================================================



   B2B Search Modal Premium Overlay Styling



   ============================================================ */



.search-modal-overlay {



  position: fixed;



  inset: 0;



  background: rgba(10, 10, 10, 0.6);



  backdrop-filter: blur(8px);



  -webkit-backdrop-filter: blur(8px);



  z-index: 11000;



  align-items: center;



  justify-content: center;



  padding: 24px;



  opacity: 0;



  pointer-events: none;



  transition: opacity 0.25s ease;



  display: flex;



}



.search-modal-overlay.open {



  opacity: 1;



  pointer-events: auto;



}



.search-modal-container {



  position: relative;



  background: var(--c-paper-pure, #fff);



  border: 1px solid var(--c-line, #e0e0e0);



  border-radius: 20px;



  padding: clamp(28px, 4vw, 44px);



  width: 100%;



  max-width: 580px;



  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);



  transform: translateY(20px);



  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);



}



.search-modal-overlay.open .search-modal-container {



  transform: translateY(0);



}



.search-modal-close {



  position: absolute;



  top: 20px;



  right: 20px;



  width: 40px;



  height: 40px;



  border-radius: 50%;



  background: transparent;



  border: 1px solid var(--c-line, #e0e0e0);



  color: var(--c-mute-1, #6b6b6b);



  font-size: 24px;



  cursor: pointer;



  display: flex;



  align-items: center;



  justify-content: center;



  transition: all 0.2s ease;



}



.search-modal-close:hover {



  color: var(--c-ink, #0a0a0a);



  border-color: var(--c-ink, #0a0a0a);



  background: var(--c-fill, #fafafa);



}



.search-modal-title {



  font-family: var(--f-display, serif);



  font-size: clamp(22px, 3.5vw, 30px);



  font-weight: 400;



  color: var(--c-ink, #0a0a0a);



  margin: 0 0 20px;



}



.search-input-wrapper {



  position: relative;



  display: flex;



  align-items: center;



  border: 1.5px solid var(--c-line, #e0e0e0);



  border-radius: 12px;



  background: var(--c-paper-pure, #fff);



  transition: border-color 0.2s ease, box-shadow 0.2s ease;



  overflow: hidden;



}



.search-input-wrapper:focus-within {



  border-color: var(--c-ink, #0a0a0a);



  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);



}



.search-input-wrapper input {



  width: 100%;



  border: none;



  padding: 16px 64px 16px 20px;



  font-family: var(--f-body, sans-serif);



  font-size: 16px;



  color: var(--c-ink, #0a0a0a);



  background: transparent;



  outline: none;



  box-sizing: border-box;



}



.search-modal-submit {



  position: absolute;



  right: 10px;



  width: 44px;



  height: 44px;



  border-radius: 8px;



  background: var(--c-accent, #DC4405);



  border: none;



  color: #fff;



  cursor: pointer;



  display: flex;



  align-items: center;



  justify-content: center;



  transition: background 0.2s ease;



}



.search-modal-submit:hover {



  background: var(--c-ink, #0a0a0a);



}



.search-modal-submit svg {



  width: 20px;



  height: 20px;



}



/* ============ COOKIE CONSENT BANNER ============ */



.cookie-banner {



  position: fixed;



  bottom: 24px;



  left: 24px;



  z-index: 9998;



  max-width: 420px;



  background: rgba(255, 255, 255, 0.85);



  backdrop-filter: blur(20px);



  -webkit-backdrop-filter: blur(20px);



  border: 1px solid var(--c-line, #e0e0e0);



  border-radius: 12px;



  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.08);



  padding: 18px 20px;



  transform: translateY(40px) scale(0.95);



  opacity: 0;



  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;



  box-sizing: border-box;



}



.cookie-banner.visible {



  transform: translateY(0) scale(1);



  opacity: 1;



}



.cookie-banner-content {



  display: flex;



  flex-direction: column;



  gap: 14px;



}



.cookie-banner-text {



  font-family: var(--f-body, sans-serif);



  font-size: 13px;



  line-height: 1.55;



  color: var(--c-ink, #0a0a0a);



  margin: 0;



}



.cookie-banner-text a {



  color: var(--c-accent, #DC4405);



  text-decoration: none;



  font-weight: 600;



  border-bottom: 1.5px solid rgba(220, 68, 5, 0.15);



  transition: all 0.2s ease;



}



.cookie-banner-text a:hover {



  border-color: var(--c-accent, #DC4405);



  background: rgba(220, 68, 5, 0.05);



}



.cookie-banner-btn {



  align-self: flex-end;



  background: var(--c-ink, #0a0a0a);



  color: var(--c-paper, #f5f5f7);



  border: none;



  border-radius: 6px;



  padding: 8px 20px;



  font-family: var(--f-mono, monospace);



  font-size: 11px;



  font-weight: 700;



  text-transform: uppercase;



  letter-spacing: 0.08em;



  cursor: pointer;



  transition: all 0.2s ease;



  outline: none;



}



.cookie-banner-btn:hover {



  background: var(--c-accent, #DC4405);



  color: #fff;



  box-shadow: 0 4px 12px rgba(220, 68, 5, 0.2);



}



.cookie-banner-btn:active {



  transform: scale(0.96);



}



@media (max-width: 600px) {

  .cookie-banner {

    left: 16px;

    right: 16px;

    bottom: 16px;

    max-width: none;

  }

  .cart-form .form-row {

    grid-template-columns: 1fr;

  }

}



/* ============ SUBCATEGORIES GRID ============ */



.subcat-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 24px;



  margin-top: 24px;



  width: 100%;



}



.subcat-card {



  display: flex;



  flex-direction: column;



  background: var(--c-paper-pure, #FFFFFF);



  border: 1px solid var(--c-line, #E5E5E5);



  border-radius: 24px;



  overflow: hidden;



  text-decoration: none;



  transition: transform 0.2s ease, box-shadow 0.2s ease;



  width: 100%;



}



.subcat-card:hover {



  transform: translateY(-2px);



  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);



  border-color: var(--c-accent, #DC4405);



}



.subcat-card-img {



  width: 100%;



  aspect-ratio: 1/1;



  overflow: hidden;



  padding: 12px 12px 0 12px;



}



.subcat-card-img img {



  width: 100%;



  height: 100%;



  object-fit: cover;



  border-radius: 20px;



}



.subcat-card-name {



  padding: 16px 12px;



  text-align: center;



  font-family: var(--f-body, sans-serif);



  font-size: 15px;



  font-weight: 600;



  color: var(--c-ink, #0A0A0A);



  line-height: 1.35;



  transition: color 0.2s ease;



}



.subcat-card:hover .subcat-card-name {



  color: var(--c-accent, #DC4405);



}



@media (max-width: 768px) {



  .subcat-grid {



    grid-template-columns: repeat(2, 1fr);



    gap: 16px;



  }



  .subcat-card {



    border-radius: 20px;



  }



  .subcat-card-img {



    padding: 10px 10px 0 10px;



  }



  .subcat-card-img img {



    border-radius: 16px;



  }



  .subcat-card-name {



    padding: 12px 10px;



    font-size: 13px;



  }



}





/* --- Main Categories Grid Full-Width support for OpenCart --- */
.cat-layout.cat-layout-full {
  grid-template-columns: 1fr;
}
.cat-layout-full .subcat-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .cat-layout-full .subcat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .cat-layout-full .subcat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* === Mantinga Style Category Sections Grid === */
.sections-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px -22px -11px;
  width: calc(100% + 22px);
}
@media (max-width: 767px) {
  .sections-wrap {
    margin: 0 -7px -14px -7px;
    width: calc(100% + 14px);
  }
}

.sections-wrap .sections-item {
  width: calc(33.33% - 22px);
  margin: 0 11px 22px 11px;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid rgba(56, 69, 77, 0.15);
  background: var(--c-paper-pure, #ffffff);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}
.sections-wrap .sections-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: var(--c-accent, #DC4405);
}

@media (max-width: 767px) {
  .sections-wrap .sections-item {
    width: calc(50% - 14px);
    margin: 0 7px 14px 7px;
  }
}

.sections-wrap .sections-item .image {
  width: 100%;
  padding-top: 100%;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
  position: relative;
  background: var(--c-fill, #f9f9f9);
}
.sections-wrap .sections-item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sections-wrap .sections-item:hover .image img {
  transform: translate(-50%, -50%) scale(1.05);
}

.sections-wrap .sections-item .title {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  text-align: center;
  display: block;
  margin: 15px 0;
  color: #38454d;
  font-family: var(--f-body, sans-serif);
  transition: color 0.2s ease;
  line-height: 1.3;
  padding: 0 12px;
}
.sections-wrap .sections-item:hover .title {
  color: var(--c-accent, #DC4405);
}

@media (max-width: 1024px) {
  .sections-wrap .sections-item .title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .sections-wrap .sections-item .title {
    font-size: 16px;
    margin: 12px 0;
  }
}
@media (max-width: 450px) {
  .sections-wrap .sections-item .title {
    font-size: 14px;
    margin: 10px 0;
  }
}

/* Fix nested wrap double padding on dynamic storefront info pages */
.info-page > .wrap {
  padding: 0 !important;
  max-width: none !important;
}

