:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #f0f3f7;
  --text: #0b0d11;
  --muted: #687284;
  --line: #e1e6ed;
  --blue: #347ff2;
  --blue-soft: #eaf2ff;
  --green: #109352;
  --shadow: 0 24px 70px rgba(18, 27, 43, .09);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
img { max-width: 100%; }
.wrap { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  padding: 12px 0 0;
  background: linear-gradient(to bottom, rgba(246,247,249,.96) 0%, rgba(246,247,249,.78) 70%, rgba(246,247,249,0) 100%);
  transition: padding .25s ease, background .25s ease;
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(220,226,235,.92);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 35px rgba(16,24,40,.06);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: min-height .25s ease, box-shadow .25s ease, background .25s ease, border-radius .25s ease;
}
.site-header.scrolled { padding-top: 7px; }
.site-header.scrolled .nav {
  min-height: 60px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 38px rgba(16,24,40,.11);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 146px; height: auto; transition: width .25s ease; }
.site-header.scrolled .brand img { width: 136px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links > a:not(.nav-contact) {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 11px;
  transition: color .2s ease, background .2s ease;
}
.nav-links > a:not(.nav-contact):hover,
.nav-links > a:not(.nav-contact):focus-visible,
.nav-links > a:not(.nav-contact).active {
  color: #1766dd;
  background: var(--blue-soft);
  outline: none;
}
.nav-contact {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  margin-left: 6px;
  padding: 13px 19px;
  color: #fff !important;
  background: #111317;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17,19,23,.14);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-contact:hover { transform: translateY(-1px); background: #20242a; box-shadow: 0 11px 24px rgba(17,19,23,.18); }
.nav-contact svg { width: 18px; height: 18px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  place-items: center;
}

.hero { padding-top: 18px; }
.hero-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-copy { padding: 68px 44px 58px 58px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.eyebrow {
  align-self: flex-start;
  padding: 9px 13px;
  margin-bottom: 25px;
  border-radius: 999px;
  color: #1766dd;
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.063em;
}
.hero-copy > p { margin: 26px 0 30px; max-width: 570px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 10px 24px rgba(52,127,242,.24); }
.button.secondary { background: #fff; }
.button svg { width: 18px; height: 18px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 29px; color: #596477; font-size: 13px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { width: 17px; height: 17px; color: var(--blue); }
.hero-visual { position: relative; min-width: 0; background: #e9edf3; }
.hero-visual > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.stock-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  min-width: 138px;
  padding: 18px 20px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(225,230,237,.95);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(12,18,30,.12);
}
.stock-card strong { display: block; font-size: 29px; line-height: 1; }
.stock-card span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.stock-card b { position: absolute; right: 14px; top: 14px; width: 7px; height: 7px; border-radius: 50%; background: #55c985; }

.catalog { padding: 94px 0 88px; }
.section-kicker { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.catalog-title h2, .buying-head h2 { margin: 7px 0 10px; font-size: clamp(38px, 4vw, 52px); line-height: 1.05; letter-spacing: -.05em; }
.catalog-title p, .buying-head p { margin: 0; color: var(--muted); font-size: 16px; }
.filter-bar {
  display: grid;
  grid-template-columns: minmax(250px, 1.3fr) minmax(205px, .75fr) minmax(205px, .75fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: 0 12px 36px rgba(18,27,43,.05);
}
.search-control, .select-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  height: 56px;
  padding: 0 15px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.search-control:focus-within, .select-control:focus-within { border-color: #9fc0fb; box-shadow: 0 0 0 4px rgba(52,127,242,.09); }
.search-control > svg, .select-control > svg:first-child { flex: 0 0 auto; width: 20px; height: 20px; color: #697487; }
.search-control input, .select-control select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}
.search-control input::placeholder { color: #8791a1; }
.select-control select { appearance: none; cursor: pointer; padding-right: 30px; }
.select-arrow { position: absolute; right: 14px; width: 17px !important; height: 17px !important; pointer-events: none; }
.result-count { min-width: 105px; padding: 0 12px; color: #525d6e; font-size: 14px; font-weight: 800; text-align: center; white-space: nowrap; }

.section-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 42px 0 18px; }
.section-row h3 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
.section-row span { color: var(--muted); font-size: 13px; }
.featured-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.featured-card {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(210px,.95fr);
  min-height: 310px;
  overflow: hidden;
  color: #fff;
  background: #111419;
  border-radius: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .2s ease;
}
.featured-card:hover { transform: translateY(-4px); }
.featured-copy { padding: 31px; min-width: 0; }
.featured-copy h4 { margin: 20px 0 10px; font-size: 28px; line-height: 1.12; letter-spacing: -.04em; }
.featured-description, .product-description { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.featured-description { color: #b4bdcb; line-height: 1.65; }
.featured-price { margin-top: 25px; font-size: 26px; font-weight: 850; }

.badge-row, .modal-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.category-badge, .product-badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: #eef2f7; color: #3e4857; font-size: 11px; font-weight: 800; }
.category-badge svg { width: 13px; height: 13px; }
.featured-card .category-badge { color: #fff; background: rgba(255,255,255,.12); }
.product-badge.new { color: #167a48; background: #e6f8ee; }
.product-badge.opened { color: #2167cc; background: #e8f1ff; }
.product-badge.used { color: #7251a0; background: #f0ebf8; }
.product-badge.showroom { color: #8a5a00; background: #fff3d6; }
.product-badge.sold { color: #b42318; background: #feeceb; }
.product-image { min-width: 0; min-height: 220px; overflow: hidden; background: #e9edf3; }
.product-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.product-placeholder { position: relative; width: 100%; height: 100%; min-height: 220px; background: linear-gradient(145deg,#edf1f6,#dbe2eb); }
.product-placeholder::after { content: "ZV"; position: absolute; inset: 0; display: grid; place-items: center; color: #b2bdcc; font-size: 48px; font-weight: 850; letter-spacing: -.06em; }
.featured-card .product-image { min-height: 100%; }

.product-list { display: grid; gap: 15px; margin-top: 26px; }
.product-card {
  display: grid;
  grid-template-columns: 270px minmax(0,1fr) 230px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(18,27,43,.08); }
.product-card .product-image { height: 215px; }
.product-body { min-width: 0; padding: 25px 29px; display: flex; flex-direction: column; justify-content: center; }
.product-card h4 { margin: 12px 0 9px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.product-description { margin: 0; color: var(--muted); line-height: 1.65; white-space: pre-line; }
.product-side { padding: 27px 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.price { font-size: 27px; font-weight: 850; letter-spacing: -.035em; }
.status, .modal-status { margin-top: 11px; color: var(--green); font-size: 13px; font-weight: 800; }
.status::before, .modal-status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: currentColor; vertical-align: 1px; }
.status.sold, .modal-status.sold { color: #d92d20; }
.detail-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; font-size: 13px; font-weight: 800; }
.detail-link svg { width: 17px; height: 17px; }

.empty-state { display: none; place-items: center; gap: 10px; padding: 70px 20px; color: var(--muted); text-align: center; }
.empty-state.show { display: grid; }
.loading-state { display: flex; justify-content: center; align-items: center; gap: 13px; padding: 44px; background: #fff; border: 1px solid var(--line); border-radius: 19px; }
.loading-state span { width: 20px; height: 20px; border: 2px solid #d9e0e9; border-top-color: var(--blue); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.api-error { display: flex; gap: 12px; margin-top: 22px; padding: 17px; color: #8b3030; background: #fff0f0; border-radius: 15px; }
.api-error[hidden] { display: none; }
.api-error div { display: grid; gap: 3px; }

.buying { padding: 84px 0 108px; }
.buying-head { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; margin-top: 36px; }
.step-card { position: relative; min-height: 255px; padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 21px; }
.step-number { position: absolute; right: 23px; top: 20px; color: #d5dbe4; font-size: 35px; font-weight: 850; }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 16px; }
.step-card h3 { margin: 45px 0 9px; font-size: 20px; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.question-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 17px; padding: 23px 27px; color: #fff; background: #111317; border-radius: 21px; }
.question-strip > div:first-child { display: flex; align-items: center; gap: 15px; }
.question-icon { width: 47px; height: 47px; display: grid; place-items: center; background: #272b31; border-radius: 14px; }
.question-strip strong { display: block; }
.question-strip p { margin: 4px 0 0; color: #aab3c1; }
.question-actions { display: flex; gap: 10px; }
.question-strip .button.secondary { color: #fff; background: #24282f; border-color: #343941; }

footer { padding: 55px 0 21px; color: #fff; background: #10141d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr 1fr; gap: 65px; }
.footer-brand img { width: 145px; }
.footer-brand p { color: #9ca7b6; }
.footer-grid h4 { margin: 0 0 15px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid span { color: #adb7c5; text-decoration: none; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 39px; padding-top: 17px; color: #7e8998; border-top: 1px solid #28303c; font-size: 11px; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; overflow: auto; background: rgba(8,10,14,.68); backdrop-filter: blur(9px); }
.modal.open { display: grid; }
.modal-dialog { position: relative; width: min(1120px,100%); overflow: hidden; background: #fff; border-radius: 25px; box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.modal-close { position: absolute; right: 16px; top: 16px; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer; }
.modal-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
.modal-gallery { padding: 26px; background: #f0f3f7; }
.modal-photo { height: 500px; overflow: hidden; background: #e4e9ef; border-radius: 17px; }
.modal-photo img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 9px; margin-top: 11px; overflow: auto; }
.thumb { width: 70px; height: 56px; padding: 0; overflow: hidden; background: #fff; border: 2px solid transparent; border-radius: 10px; cursor: pointer; }
.thumb.active { border-color: var(--blue); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-photo-count { display: block; margin-top: 8px; color: var(--muted); font-size: 11px; }
.modal-info { padding: 49px 43px; }
.modal-info h2 { margin: 22px 0 13px; font-size: 35px; line-height: 1.08; letter-spacing: -.045em; }
.modal-price { font-size: 31px; font-weight: 850; }
.modal-section { margin-top: 31px; padding-top: 24px; border-top: 1px solid var(--line); }
.modal-section h3 { margin: 0 0 11px; font-size: 14px; }
.modal-description { color: #566171; line-height: 1.75; white-space: pre-line; }
.inspection-note { display: flex; gap: 11px; margin-top: 25px; padding: 15px; color: #3d587e; background: #f1f7ff; border-radius: 13px; }
.inspection-note svg { flex: 0 0 auto; }
.inspection-note span { display: grid; gap: 3px; font-size: 12px; }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
.modal-actions .button { padding-inline: 12px; font-size: 12px; }

@media (max-width: 1050px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-copy { padding: 58px 48px; }
  .hero-visual { min-height: 430px; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .search-control { grid-column: 1 / -1; }
  .result-count { text-align: right; }
  .featured-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 230px minmax(0,1fr); }
  .product-side { grid-column: 2; padding-top: 0; border-left: 0; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-photo { height: 390px; }
}

@media (max-width: 760px) {
  .wrap { width: calc(100% - 24px); }
  .nav { min-height: 68px; }
  .brand img { width: 137px; }
  .menu-toggle { display: grid; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px; }
  .nav-contact { justify-content: center; border-radius: 13px; }
  .hero { padding-top: 12px; }
  .hero-card { min-height: 0; border-radius: 22px; }
  .hero-copy { padding: 39px 22px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero-copy > p { font-size: 16px; }
  .hero-points { flex-direction: column; gap: 11px; }
  .hero-visual { min-height: 315px; }
  .stock-card { right: 14px; bottom: 14px; }
  .catalog { padding-top: 68px; }
  .filter-bar { grid-template-columns: 1fr; padding: 10px; }
  .search-control { grid-column: auto; }
  .result-count { min-width: 0; padding: 8px; text-align: left; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-copy { order: 2; }
  .featured-card .product-image { min-height: 235px; height: 235px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card .product-image { height: 235px; }
  .product-body { padding: 22px; }
  .product-side { grid-column: auto; padding: 21px 22px; border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .question-strip { align-items: flex-start; flex-direction: column; }
  .question-actions { width: 100%; flex-direction: column; }
  .question-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 8px; }
  .modal-dialog { border-radius: 19px; }
  .modal-gallery { padding: 13px; }
  .modal-photo { height: 300px; }
  .modal-info { padding: 31px 20px; }
  .modal-actions { grid-template-columns: 1fr; }
}

/* v5.2 — rounded custom filters, light featured cards and richer contact section */
.custom-select { position: relative; min-width: 0; }
.custom-select-button {
  width: 100%; height: 54px; padding: 0 16px; display: flex; align-items: center; gap: 11px;
  color: #1f2937; background: #fff; border: 1px solid var(--line); border-radius: 15px; cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.custom-select-button:hover { background: #fbfcfe; }
.custom-select.open .custom-select-button { border-color: #9fc0fb; box-shadow: 0 0 0 4px rgba(52,127,242,.09); }
.custom-select-button > svg:first-child { width: 20px; height: 20px; color: #697487; flex: 0 0 auto; }
.custom-select-button span { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left; font-weight: 650; }
.custom-select-chevron { width: 17px !important; height: 17px !important; flex: 0 0 auto; transition: transform .18s ease; }
.custom-select.open .custom-select-chevron { transform: rotate(180deg); }
.custom-select-menu {
  position: absolute; z-index: 35; left: 0; right: 0; top: calc(100% + 9px); display: none; padding: 7px;
  background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 48px rgba(16,24,40,.14); backdrop-filter: blur(16px);
}
.custom-select.open .custom-select-menu { display: grid; gap: 3px; animation: selectIn .14s ease-out; }
@keyframes selectIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.custom-select-menu button {
  width: 100%; min-height: 42px; padding: 9px 12px; color: #344054; background: transparent; border: 0;
  border-radius: 11px; text-align: left; cursor: pointer; font-weight: 650;
}
.custom-select-menu button:hover { background: #f2f6fc; }
.custom-select-menu button.selected { color: var(--blue); background: var(--blue-soft); }

.featured-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.featured-card {
  color: var(--text); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.featured-card .category-badge { color: #3e4857; background: #eef2f7; }
.featured-description { color: var(--muted); }
.featured-card .product-image { background: #f1f4f8; }
.featured-card:hover { box-shadow: 0 20px 52px rgba(18,27,43,.10); }

.rich-step { min-height: 405px; padding: 24px 26px 28px; text-align: center; display: flex; flex-direction: column; }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-top > span, .step-mini { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; }
.step-top > span:first-child { color: var(--blue); background: var(--blue-soft); font-weight: 850; }
.step-mini { color: #344054; background: #f5f6f8; }
.step-mini svg { width: 21px; height: 21px; }
.whatsapp-mini { color: #159447; background: #e9f9ef; }
.step-main-image { height: 185px; display: grid; place-items: center; margin: 10px 0 2px; overflow: hidden; }
.step-main-image img { width: min(210px, 88%); height: 165px; object-fit: contain; }
.rich-step h3 { margin: 5px 0 9px; font-size: 19px; }
.rich-step p { margin: 0 auto; max-width: 350px; }

.contact-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 18px; padding: 22px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: 21px; box-shadow: 0 12px 36px rgba(18,27,43,.05);
}
.contact-panel-copy { display: flex; align-items: center; gap: 15px; min-width: 250px; }
.contact-panel-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 15px; }
.contact-panel-copy strong { display: block; font-size: 16px; }
.contact-panel-copy p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.contact-panel-actions { display: flex; align-items: stretch; gap: 9px; }
.contact-method {
  min-width: 145px; min-height: 58px; padding: 9px 13px; display: flex; align-items: center; gap: 10px;
  color: #202630; background: #f7f9fc; border: 1px solid #e1e6ed; border-radius: 15px; text-decoration: none; font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.contact-method:hover { transform: translateY(-2px); border-color: #cbd5e1; background: #fff; }
.contact-method svg { width: 20px; height: 20px; }
.contact-method span { display: grid; line-height: 1.18; }
.contact-method small { color: #7b8492; font-size: 10px; font-weight: 650; }
.contact-method b { font-weight: 800; }
.contact-method.whatsapp { color: #0f6d39; background: #ecfbf2; border-color: #c7efd6; }

.trust-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 17px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 21px; }
.trust-item { min-height: 180px; padding: 24px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid #eef1f4; }
.trust-item:last-child { border-right: 0; }
.trust-item > div { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 13px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; }
.trust-item svg { width: 25px; height: 25px; }
.trust-item strong { font-size: 14px; }
.trust-item span { max-width: 210px; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.55; }

@media (max-width: 1050px) {
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-panel-actions { width: 100%; }
  .contact-method { flex: 1; }
  .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid #eef1f4; }
}
@media (max-width: 760px) {
  .custom-select-menu { position: fixed; left: 14px; right: 14px; top: auto; bottom: 14px; border-radius: 20px; padding: 10px; }
  .custom-select-menu button { min-height: 48px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .product-image { min-height: 230px; order: -1; }
  .contact-panel-actions { flex-direction: column; }
  .contact-method { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #eef1f4; }
  .trust-item:last-child { border-bottom: 0; }
  .rich-step { min-height: auto; }
  .step-main-image { height: 145px; }
  .step-main-image img { height: 130px; }
}

/* v5.9 — skutečně plynulý přechod fotografie bez viditelné svislé hrany */
.hero-copy { position: relative; z-index: 3; }
.hero-visual {
  isolation: isolate;
  overflow: visible;
  margin-left: -110px;
  background: #fff;
}
.hero-visual::before { content: none; }
.hero-visual > img {
  position: relative;
  z-index: 1;
  width: calc(100% + 110px);
  max-width: none;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0,0,0,.08) 8%,
    rgba(0,0,0,.30) 18%,
    rgba(0,0,0,.62) 30%,
    rgba(0,0,0,.90) 42%,
    #000 54%);
  mask-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0,0,0,.08) 8%,
    rgba(0,0,0,.30) 18%,
    rgba(0,0,0,.62) 30%,
    rgba(0,0,0,.90) 42%,
    #000 54%);
}
.stock-card { z-index: 3; }

#modalWhatsapp.button.primary {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 10px 24px rgba(37,211,102,.24);
}
#modalWhatsapp.button.primary:hover {
  background: #1fbd5a;
  border-color: #1fbd5a;
  box-shadow: 0 14px 30px rgba(37,211,102,.28);
}
.inspection-note {
  margin-top: 20px;
  padding: 12px 13px;
  border: 1px solid #dceafe;
  background: #f7faff;
  border-radius: 12px;
}
.inspection-note svg { width: 19px; height: 19px; }
.inspection-note span { font-size: 11.5px; line-height: 1.45; }
.modal-section h3 { font-size: 15px; }
.stock-card span { font-weight: 600; }

@media (max-width: 1050px) {
  .hero-visual {
    margin-left: 0;
    margin-top: -76px;
    background: #fff;
  }
  .hero-visual > img {
    width: 100%;
    height: calc(100% + 76px);
    -webkit-mask-image: linear-gradient(180deg,
      transparent 0%,
      rgba(0,0,0,.10) 10%,
      rgba(0,0,0,.42) 24%,
      rgba(0,0,0,.78) 38%,
      #000 52%);
    mask-image: linear-gradient(180deg,
      transparent 0%,
      rgba(0,0,0,.10) 10%,
      rgba(0,0,0,.42) 24%,
      rgba(0,0,0,.78) 38%,
      #000 52%);
  }
}

/* v5.6 — unified two-column offer cards, contained product photos and scroll-safe detail */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.catalog-grid .featured-card {
  min-height: 360px;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, .95fr);
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(18,27,43,.045);
}
.catalog-grid .featured-card .featured-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catalog-grid .featured-card .featured-copy h4 {
  margin: 18px 0 10px;
  font-size: clamp(24px, 2vw, 30px);
}
.catalog-grid .featured-card .featured-description {
  color: var(--muted);
}
.catalog-grid .featured-card .category-badge {
  color: #3e4857;
  background: #eef2f7;
}
.catalog-grid .featured-card .product-image {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #f1f4f8;
}
.catalog-grid .featured-card .product-image img {
  width: 100%;
  height: 100%;
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
  object-position: center;
}
.catalog-grid .featured-card .product-placeholder {
  min-height: 270px;
  border-radius: 16px;
}

/* Keep every product image fully visible in cards. */
.product-image {
  display: grid;
  place-items: center;
}
.product-image img {
  object-fit: contain;
  object-position: center;
}

/* The overlay scrolls from the top; the dialog never becomes unreachable. */
.modal {
  place-items: start center;
  overscroll-behavior: contain;
  padding-block: max(20px, 3vh);
}
.modal-dialog {
  margin: auto 0;
  max-height: calc(100dvh - max(40px, 6vh));
  overflow: auto;
  overscroll-behavior: contain;
}
.modal-grid { min-height: 0; }
.modal-gallery { min-width: 0; }
.modal-photo {
  height: min(500px, 58vh);
  display: grid;
  place-items: center;
}
.modal-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1050px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-grid .featured-card { min-height: 330px; }
}

@media (max-width: 760px) {
  .catalog-grid { gap: 14px; margin-top: 22px; }
  .catalog-grid .featured-card { grid-template-columns: 1fr; min-height: 0; }
  .catalog-grid .featured-card .product-image {
    order: -1;
    min-height: 260px;
    height: 260px;
    padding: 12px;
  }
  .catalog-grid .featured-card .featured-copy { padding: 24px; }
  .modal { padding: 8px; }
  .modal-dialog { max-height: calc(100dvh - 16px); }
  .modal-photo { height: min(340px, 48vh); }
}

/* v6.1 — kompaktnější poptávkový panel a telefon v jednom řádku */
@media (min-width: 1051px) {
  .contact-panel-copy {
    flex: 1 1 auto;
    max-width: 560px;
    min-width: 0;
  }
  .contact-panel-copy > div { min-width: 0; }
  .contact-panel-copy p {
    max-width: 520px;
    line-height: 1.55;
  }
  .contact-panel-actions {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .contact-method {
    min-width: 138px;
    padding-inline: 12px;
  }
  .contact-method [data-phone-label] {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: -.01em;
  }
}

/* v7.0 — živé statistiky, stránkování a jemné přechody katalogu */
.catalog-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 16px;
}
.catalog-stats article {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 28px rgba(18,27,43,.035);
}
.catalog-stats article > svg {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
}
.catalog-stats strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.04em;
}
.catalog-stats span {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-grid {
  transition: opacity .18s ease, transform .18s ease;
}
.catalog-grid.is-changing {
  opacity: .22;
  transform: translateY(6px);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 34px 0 4px;
}
.pagination[hidden] { display: none; }
.page-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #fff;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(18,27,43,.035);
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.page-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #bdd3fb;
  box-shadow: 0 10px 24px rgba(52,127,242,.10);
}
.page-button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(52,127,242,.22);
}
.page-button:disabled {
  opacity: .38;
  cursor: not-allowed;
}
.page-button svg { width: 18px; height: 18px; }
.page-ellipsis {
  width: 24px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .catalog-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .catalog-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 20px;
  }
  .catalog-stats article {
    grid-template-columns: 34px 1fr;
    padding: 13px;
    border-radius: 15px;
  }
  .catalog-stats article:first-child { grid-column: 1 / -1; }
  .catalog-stats article > svg { width: 34px; height: 34px; padding: 8px; }
  .catalog-stats strong { font-size: 19px; }
  .catalog-stats span { font-size: 11px; }
  .pagination { gap: 6px; margin-top: 26px; }
  .page-button { width: 39px; height: 39px; border-radius: 11px; }
}

/* v7.1 — operator identification in footer */
.footer-grid {
  grid-template-columns: 1.25fr .65fr .9fr 1fr;
  gap: 48px;
}
.footer-operator address {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  font-style: normal;
}
.footer-operator strong {
  color: #fff;
  font-size: 13px;
}
.footer-operator span {
  display: block;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* v7.2 — lokalita, právní odkazy a finální kontakty */
.nav-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-location svg { width: 15px; height: 15px; color: var(--blue); }
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 650;
}
.footer-location svg { width: 16px; height: 16px; }
.legal-page { min-height: 70vh; padding: 72px 0 96px; }
.legal-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18,27,43,.06);
}
.legal-card h1 { margin: 10px 0 20px; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.05em; }
.legal-card h2 { margin: 34px 0 10px; font-size: 20px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.legal-card ul { padding-left: 20px; }
.legal-contact { margin-top: 28px; padding: 20px; border-radius: 18px; background: var(--blue-soft); }
.legal-contact strong, .legal-contact span, .legal-contact a { display: block; }
.legal-contact a { margin-top: 8px; color: var(--blue); font-weight: 750; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 750; }
.legal-back svg { width: 17px; height: 17px; }
@media (max-width: 1120px) { .nav-location { display: none; } }


/* Individuální poptávka */
.sourcing { padding: 74px 0 0; }
.sourcing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(18,27,43,.075);
}
.sourcing-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -190px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,127,242,.14) 0%, rgba(52,127,242,0) 70%);
  pointer-events: none;
}
.sourcing-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.sourcing-copy { max-width: 820px; }
.sourcing-copy h2 {
  margin: 8px 0 15px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.sourcing-copy > p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.sourcing-mark {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe8ff;
  border-radius: 20px;
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 12px 30px rgba(52,127,242,.12);
}
.sourcing-mark svg { width: 28px; height: 28px; }
.sourcing-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .75fr);
  gap: 24px;
  margin-top: 30px;
}
.sourcing-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.sourcing-points article {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e1e8f2;
  border-radius: 20px;
  background: #f9fbfe;
}
.sourcing-points article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-soft);
}
.sourcing-points svg { width: 21px; height: 21px; }
.sourcing-points strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}
.sourcing-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.sourcing-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 26px;
  border: 1px solid #cfe0ff;
  border-radius: 22px;
  background: linear-gradient(145deg, #f5f9ff 0%, #edf4ff 100%);
}
.sourcing-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 15px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(52,127,242,.23);
}
.sourcing-icon svg { width: 24px; height: 24px; }
.sourcing-action strong { display: block; font-size: 18px; }
.sourcing-action p { margin: 8px 0 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.sourcing-buttons { display: grid; width: 100%; gap: 10px; }
.sourcing-buttons .button { width: 100%; justify-content: center; }
.sourcing-buttons .secondary { background: rgba(255,255,255,.82); }
.sourcing + .catalog { padding-top: 82px; }

@media (max-width: 1040px) {
  .sourcing-content { grid-template-columns: 1fr; }
  .sourcing-action { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; }
  .sourcing-icon { grid-row: 1 / 3; margin: 0; }
  .sourcing-buttons { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; margin-top: 20px; }
}
@media (max-width: 760px) {
  .sourcing { padding-top: 52px; }
  .sourcing-card { padding: 27px 20px; border-radius: 24px; }
  .sourcing-header { padding-bottom: 24px; }
  .sourcing-copy h2 { font-size: 34px; }
  .sourcing-mark { width: 52px; height: 52px; border-radius: 16px; }
  .sourcing-points { grid-template-columns: 1fr; }
  .sourcing-points article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 17px; }
  .sourcing-points article > span { margin: 0; }
  .sourcing-buttons { grid-template-columns: 1fr; }
  .sourcing + .catalog { padding-top: 64px; }
}
@media (max-width: 520px) {
  .sourcing-header { display: block; }
  .sourcing-mark { display: none; }
  .sourcing-action { display: flex; padding: 22px; }
  .sourcing-icon { margin-bottom: 16px; }
}


/* ZV Tech 1.1.2 — kompaktní individuální poptávka */
.sourcing {
  padding-top: 26px;
}
.sourcing-card-compact {
  min-height: 0;
  padding: 26px 42px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(250px, 300px) 74px;
  align-items: center;
  gap: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(31,41,55,.07);
  overflow: hidden;
}
.sourcing-card-compact::before { display: none; }
.sourcing-side-icon {
  width: 64px;
  height: 64px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
}
.sourcing-side-icon svg { width: 34px; height: 34px; stroke-width: 2; }
.sourcing-compact-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -.035em;
}
.sourcing-compact-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.sourcing-compact-actions {
  display: grid;
  gap: 10px;
}
.sourcing-compact-actions .button {
  width: 100%;
  min-height: 50px;
  justify-content: center;
}
.sourcing-compact-actions .whatsapp-button {
  color: #fff;
  background: #16b85a;
  border-color: #16b85a;
  box-shadow: 0 10px 24px rgba(22,184,90,.18);
}
.sourcing-compact-actions .whatsapp-button:hover {
  background: #109e4c;
  border-color: #109e4c;
  transform: translateY(-1px);
}
.sourcing-compact-actions .secondary {
  background: #fff;
}
.sourcing + .catalog {
  padding-top: 38px;
}
@media (max-width: 980px) {
  .sourcing-card-compact {
    grid-template-columns: 64px minmax(0, 1fr) minmax(230px, 280px);
    padding: 24px 28px;
    gap: 20px;
  }
  .sourcing-side-icon-right { display: none; }
}
@media (max-width: 760px) {
  .sourcing { padding-top: 20px; }
  .sourcing-card-compact {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 22px 20px;
    border-radius: 24px;
    gap: 14px 16px;
  }
  .sourcing-side-icon { width: 52px; height: 52px; border-radius: 16px; }
  .sourcing-side-icon svg { width: 28px; height: 28px; }
  .sourcing-compact-copy h2 { font-size: 24px; }
  .sourcing-compact-copy p { font-size: 14px; line-height: 1.55; }
  .sourcing-compact-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    margin-top: 4px;
  }
  .sourcing + .catalog { padding-top: 30px; }
}
@media (max-width: 520px) {
  .sourcing-card-compact { grid-template-columns: 1fr; }
  .sourcing-side-icon-left { display: none; }
  .sourcing-compact-actions { grid-template-columns: 1fr; }
}

/* ZV Tech 1.1.3 — kompaktní pás individuální poptávky */
.request-section {
  padding-top: 14px;
}
.request-strip {
  width: 100%;
  min-height: 168px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(250px, 300px) 72px;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 38px rgba(18,27,43,.065);
}
.request-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe8ff;
  border-radius: 19px;
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.request-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.1;
}
.request-copy {
  min-width: 0;
}
.request-copy h2 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -.035em;
}
.request-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.request-actions {
  display: grid;
  gap: 9px;
}
.request-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  padding: 9px 15px;
  border: 1px solid #e0e6ee;
  border-radius: 15px;
  color: #202630;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.request-button:hover {
  transform: translateY(-1px);
}
.request-button-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.request-button-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.15;
}
.request-whatsapp {
  color: #0f6d39;
  background: #ecfbf2;
  border-color: #c7efd6;
  box-shadow: 0 8px 20px rgba(21,148,71,.08);
}
.request-whatsapp .request-button-icon {
  color: #0f8b46;
  background: #d9f6e5;
  border: 1px solid #bfeccd;
}
.request-whatsapp:hover {
  color: #0b5e30;
  background: #e3f8eb;
  border-color: #aee6c2;
  box-shadow: 0 10px 24px rgba(21,148,71,.12);
}
.request-email .request-button-icon {
  color: #334155;
  background: #f3f6fa;
  border: 1px solid #e1e7ef;
}
.request-email:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.request-section + .catalog {
  padding-top: 28px;
}

@media (max-width: 1040px) {
  .request-strip {
    grid-template-columns: 62px minmax(0, 1fr) minmax(230px, 280px);
    gap: 20px;
    padding: 24px 26px;
  }
  .request-icon-secondary { display: none; }
}
@media (max-width: 760px) {
  .request-section { padding-top: 10px; }
  .request-strip {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px 16px;
    padding: 21px 20px;
    border-radius: 22px;
  }
  .request-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .request-icon svg { width: 25px; height: 25px; }
  .request-copy h2 { font-size: 23px; }
  .request-copy p { font-size: 13px; line-height: 1.5; }
  .request-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    margin-top: 3px;
  }
  .request-section + .catalog { padding-top: 24px; }
}
@media (max-width: 540px) {
  .request-strip { grid-template-columns: 1fr; }
  .request-icon { display: none; }
  .request-actions { grid-template-columns: 1fr; }
  .request-button { justify-content: center; }
}
