:root {
  --navy-950: #041323;
  --navy-900: #071b32;
  --navy-800: #0d2948;
  --blue-700: #145da0;
  --blue-600: #1976c9;
  --blue-100: #eaf4ff;
  --accent: #f4d83d;
  --accent-dark: #d5b900;
  --ink: #142235;
  --muted: #627086;
  --line: #dfe5ec;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --success: #128c5a;
  --danger: #c93f4b;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 30px rgba(7, 27, 50, .08);
  --shadow-lg: 0 22px 60px rgba(7, 27, 50, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; }
fieldset { padding: 0; margin: 0; border: 0; }
legend { width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--accent); color: var(--navy-950); padding: 10px 16px;
  border-radius: 8px; font-weight: 800;
}
.skip-link:focus { top: 16px; }
.announcement { background: var(--navy-950); color: #dbe9f7; font-size: 13px; }
.announcement__inner {
  min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.announcement a { color: var(--accent); font-weight: 800; }
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,229,236,.9); backdrop-filter: blur(14px);
}
.header__inner { min-height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  color: var(--navy-950); background: var(--accent); font-weight: 950; letter-spacing: -.05em;
  box-shadow: inset 0 -5px 0 rgba(0,0,0,.08);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-size: 16px; letter-spacing: -.02em; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a { color: #445269; font-size: 14px; font-weight: 700; }
.desktop-nav a:hover { color: var(--blue-700); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.icon-button {
  position: relative; display: inline-grid; place-items: center; width: 42px; height: 42px;
  padding: 0; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  cursor: pointer; font-size: 22px;
}
.icon-button:hover { border-color: #b7c4d2; background: var(--surface-soft); }
.favorite-count {
  position: absolute; top: -5px; right: -6px; min-width: 19px; height: 19px;
  padding: 0 4px; border: 2px solid #fff; border-radius: 999px; display: grid; place-items: center;
  background: var(--blue-600); color: white; font-size: 10px; font-weight: 900;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 20px; border: 1px solid transparent; border-radius: 12px; cursor: pointer;
  font-weight: 850; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--blue-600); box-shadow: 0 10px 25px rgba(25,118,201,.25); }
.button--primary:hover { background: var(--blue-700); }
.button--ghost { color: var(--navy-900); background: white; border-color: var(--line); }
.button--outline { color: var(--navy-900); background: white; border-color: var(--line); }
.button--accent { color: var(--navy-950); background: var(--accent); box-shadow: 0 12px 30px rgba(244,216,61,.2); }
.button--small { min-height: 40px; padding: 0 14px; }
.button--compact { min-height: 42px; padding: 0 16px; }
.text-button { border: 0; padding: 0; background: transparent; color: var(--blue-700); cursor: pointer; font-weight: 800; font-size: 13px; }
.menu-toggle { display: none; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor;
}
.menu-toggle__lines { position: relative; }
.menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle__lines::before { top: -6px; }
.menu-toggle__lines::after { top: 6px; }
.mobile-menu { border-top: 1px solid var(--line); background: white; }
.mobile-menu__inner { display: grid; padding-block: 8px 16px; }
.mobile-menu a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 800; }

.hero {
  position: relative; overflow: hidden; color: white; background:
    radial-gradient(circle at 76% 18%, rgba(25,118,201,.34), transparent 24rem),
    linear-gradient(122deg, var(--navy-950), var(--navy-800));
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: linear-gradient(45deg, transparent 46%, #fff 47%, #fff 53%, transparent 54%);
  background-size: 48px 48px;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center;
  min-height: 620px; padding-block: 74px 82px; gap: 70px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700);
  font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 3px; background: currentColor; }
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  max-width: 690px; margin: 16px 0 18px; font-size: clamp(42px, 5.4vw, 72px);
  line-height: .99; letter-spacing: -.052em;
}
.hero h1 span { color: var(--accent); }
.hero__content > p { max-width: 600px; margin: 0 0 28px; color: #c8d7e7; font-size: 18px; }
.hero-search {
  display: grid; grid-template-columns: 24px 1fr auto auto; align-items: center; gap: 9px;
  max-width: 620px; padding: 8px 8px 8px 16px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px; background: white; box-shadow: var(--shadow-lg);
}
.hero-search > span { color: var(--muted); font-size: 24px; }
.hero-search input {
  width: 100%; min-width: 0; padding: 8px 0; border: 0; outline: none; color: var(--ink); background: transparent;
}
.hero-search kbd { padding: 3px 8px; border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 6px; color: var(--muted); background: var(--surface-soft); font: 700 12px/1.4 ui-monospace, monospace; }
.hero-search button {
  min-height: 42px; padding: 0 18px; border: 0; border-radius: 10px; background: var(--accent);
  color: var(--navy-950); cursor: pointer; font-weight: 900;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 28px 0 0; list-style: none; color: #c8d7e7; font-size: 13px; font-weight: 650; }
.trust-list span { color: var(--accent); font-weight: 900; }
.hero__visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.hero-card {
  border: 1px solid rgba(255,255,255,.14); border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  backdrop-filter: blur(12px); box-shadow: 0 32px 80px rgba(0,0,0,.28);
}
.hero-card--main { width: min(100%, 430px); padding: 22px; transform: rotate(2.2deg); }
.hero-card__top { display: flex; justify-content: space-between; gap: 12px; color: #dbe8f5; font-size: 12px; font-weight: 800; }
.status-dot { display: inline-flex; align-items: center; gap: 6px; color: #adf4c8; }
.status-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4be08a; box-shadow: 0 0 0 5px rgba(75,224,138,.12); }
.hero-card__illustration {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 8px;
  min-height: 258px; margin: 18px 0; padding: 30px 16px 20px;
  overflow: hidden; border-radius: 18px; background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255,255,255,.035) 18px 36px),
    linear-gradient(150deg, #174f7d, #0a2948);
}
.hero-card__illustration::after {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: -55px; height: 110px;
  border-radius: 50%; background: rgba(244,216,61,.18);
}
.hero-card__illustration span { position: relative; z-index: 1; display: grid; place-items: center; filter: drop-shadow(0 14px 16px rgba(0,0,0,.24)); }
.hero-card__helmet { font-size: 86px; transform: translateY(-26px) rotate(-7deg); }
.hero-card__boot { font-size: 88px; transform: rotate(-8deg); }
.hero-card__vest { font-size: 90px; transform: translateY(-18px) rotate(6deg); }
.hero-card--main > div:last-child { display: flex; flex-direction: column; }
.hero-card--main > div:last-child strong { font-size: 20px; }
.hero-card--main > div:last-child small { margin-top: 5px; color: #bfd0e2; }
.floating-stat {
  position: absolute; display: flex; flex-direction: column; padding: 14px 17px; border-radius: 16px;
  color: var(--ink); background: white; box-shadow: var(--shadow-lg);
}
.floating-stat strong { font-size: 18px; line-height: 1.1; }
.floating-stat span { color: var(--muted); font-size: 11px; }
.floating-stat--one { left: -22px; top: 66px; transform: rotate(-5deg); }
.floating-stat--one strong { color: var(--blue-700); font-size: 25px; }
.floating-stat--two { right: -28px; bottom: 57px; min-width: 150px; transform: rotate(4deg); }
.floating-stat__icon { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 9px; border-radius: 9px; color: var(--navy-950) !important; background: var(--accent); font-size: 16px !important; }

.section { padding-block: 90px; }
.section--categories { background: var(--surface-soft); }
.section-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px;
}
.section-heading h2 { margin: 7px 0 0; color: var(--navy-900); font-size: clamp(32px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > a { color: var(--blue-700); font-size: 14px; font-weight: 850; }
.section-heading > div > p { margin: 8px 0 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card {
  display: flex; min-height: 142px; flex-direction: column; justify-content: space-between; gap: 22px;
  padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white;
  box-shadow: 0 4px 16px rgba(7,27,50,.035); cursor: pointer; text-align: left;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: #b8cada; box-shadow: var(--shadow-sm); }
.category-card__top { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.category-card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--blue-100); font-size: 25px; }
.category-card__count { color: var(--muted); font-size: 12px; font-weight: 800; }
.category-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.category-card strong { color: var(--navy-900); font-size: 15px; }
.category-card__arrow { color: var(--blue-700); font-size: 19px; }

.catalog { background: white; }
.section-heading--catalog { align-items: center; }
.catalog-search {
  width: min(100%, 360px); display: grid; grid-template-columns: 22px 1fr; align-items: center;
  gap: 8px; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft);
}
.catalog-search span { color: var(--muted); font-size: 22px; }
.catalog-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; }
.filter-chips { display: none; gap: 8px; margin: 0 0 22px; overflow-x: auto; scrollbar-width: none; }
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: 0 0 auto; min-height: 38px; padding: 0 14px; border: 1px solid var(--line);
  border-radius: 999px; background: white; cursor: pointer; font-size: 13px; font-weight: 800;
}
.filter-chip.is-active { color: white; border-color: var(--blue-700); background: var(--blue-700); }
.catalog-layout { display: grid; grid-template-columns: 246px minmax(0, 1fr); gap: 30px; }
.filter-panel { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.filter-panel__heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.filter-panel h3 { margin: 0; color: var(--navy-900); font-size: 16px; }
.filter-panel fieldset + fieldset { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.filter-panel legend { margin-bottom: 13px; color: var(--navy-900); font-size: 13px; font-weight: 900; }
.checkbox-list { display: grid; gap: 11px; }
.checkbox-row {
  display: grid; grid-template-columns: 18px minmax(0, 1fr) auto; align-items: center; gap: 9px;
  color: #445269; cursor: pointer; font-size: 13px;
}
.checkbox-row input { width: 17px; height: 17px; margin: 0; accent-color: var(--blue-600); }
.checkbox-row small { color: #9aa6b5; }
.switch-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px;
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); cursor: pointer;
}
.switch-row > span:first-child { display: flex; flex-direction: column; }
.switch-row strong { font-size: 13px; }
.switch-row small { color: var(--muted); font-size: 11px; }
.switch-row input { position: absolute; opacity: 0; pointer-events: none; }
.switch { position: relative; width: 40px; height: 23px; border-radius: 999px; background: #ced6df; transition: .2s ease; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 17px; height: 17px; border-radius: 50%; background: white; box-shadow: 0 2px 5px rgba(0,0,0,.18); transition: .2s ease; }
.switch-row input:checked + .switch { background: var(--blue-600); }
.switch-row input:checked + .switch::after { transform: translateX(17px); }
.advisor-card {
  margin-top: 16px; padding: 22px; border-radius: var(--radius-md); color: white;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-800));
}
.advisor-card__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: var(--navy-950); background: var(--accent); font-weight: 950; }
.advisor-card h3 { margin: 16px 0 6px; font-size: 17px; }
.advisor-card p { margin: 0 0 14px; color: #bdcde0; font-size: 12px; }
.advisor-card a { color: var(--accent); font-size: 12px; font-weight: 900; }
.catalog-toolbar { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 16px; }
.catalog-toolbar select {
  min-height: 40px; padding: 0 34px 0 12px; border: 1px solid var(--line); border-radius: 10px;
  color: #445269; background: white; outline: none; font-size: 13px; font-weight: 700;
}
#mobile-filter-button { display: none; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: white;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: #c4d0dc; box-shadow: var(--shadow-sm); }
.product-visual {
  position: relative; min-height: 205px; display: grid; place-items: center; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.12)),
    var(--visual-bg, #dfeefd);
}
.product-visual::before {
  content: ""; position: absolute; inset: auto -10% -28px; height: 76px;
  transform: rotate(-4deg); background: repeating-linear-gradient(90deg, rgba(7,27,50,.08) 0 18px, transparent 18px 36px);
}
.product-visual__icon { position: relative; z-index: 1; font-size: 86px; filter: drop-shadow(0 18px 15px rgba(7,27,50,.15)); transition: transform .25s ease; }
.product-card:hover .product-visual__icon { transform: scale(1.05) rotate(-2deg); }
.product-badge {
  position: absolute; left: 12px; top: 12px; z-index: 2; padding: 6px 9px; border-radius: 7px;
  color: var(--navy-950); background: var(--accent); font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em;
}
.favorite-button {
  position: absolute; right: 12px; top: 12px; z-index: 2; display: grid; place-items: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%;
  color: var(--navy-900); background: rgba(255,255,255,.85); backdrop-filter: blur(6px); cursor: pointer; font-size: 19px;
}
.favorite-button.is-active { color: white; border-color: var(--danger); background: var(--danger); }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.product-card h3 { margin: 8px 0 7px; color: var(--navy-900); font-size: 16px; line-height: 1.25; letter-spacing: -.015em; }
.product-card__description { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.product-card__actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: auto; }
.product-card__actions .button { min-height: 40px; padding-inline: 12px; font-size: 12px; }
.product-card__details { min-width: 42px; padding: 0; }
.empty-state { padding: 70px 20px; border: 1px dashed #c9d2dc; border-radius: var(--radius-md); text-align: center; background: var(--surface-soft); }
.empty-state > span { display: block; color: #98a7b8; font-size: 52px; }
.empty-state h3 { margin: 10px 0 4px; font-size: 22px; }
.empty-state p { margin: 0 0 20px; color: var(--muted); }

.business { color: white; background:
  linear-gradient(125deg, rgba(13,41,72,.92), rgba(4,19,35,.98)),
  repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.05) 30px 31px);
}
.business__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.eyebrow--light { color: var(--accent); }
.business h2 { margin: 13px 0 16px; max-width: 540px; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.03; letter-spacing: -.04em; }
.business > .container > div:first-child > p { max-width: 520px; margin: 0 0 26px; color: #c2d1e1; }
.business__features { display: grid; gap: 12px; }
.business__features article {
  display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; padding: 20px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.055);
}
.business__features article > span { color: var(--accent); font-size: 12px; font-weight: 950; }
.business__features h3 { margin: 0 0 5px; font-size: 16px; }
.business__features p { margin: 0; color: #bdcde0; font-size: 13px; }

.contact { background: var(--surface-soft); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact h2 { margin: 12px 0 14px; color: var(--navy-900); font-size: clamp(38px, 5vw, 60px); line-height: 1; letter-spacing: -.045em; }
.contact p { max-width: 530px; margin: 0; color: var(--muted); font-size: 16px; }
.contact-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.contact-card > div { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; padding: 15px 0; }
.contact-card > div + div { border-top: 1px solid var(--line); }
.contact-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--blue-700); background: var(--blue-100); font-size: 20px; font-weight: 900; }
.contact-card div div { display: flex; flex-direction: column; }
.contact-card small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { margin: 2px 0; color: var(--navy-900); }
.contact-card span { color: var(--muted); font-size: 12px; }
.contact-card .button { width: 100%; margin-top: 14px; }

.site-footer { padding: 56px 0 18px; color: #b8c7d8; background: var(--navy-950); }
.footer__grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 60px; }
.brand--footer .brand__text strong { color: white; }
.brand--footer .brand__text small { color: #8da2b8; }
.footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__grid p { max-width: 390px; margin: 8px 0 0; font-size: 13px; }
.footer__grid > div > strong { margin-bottom: 5px; color: white; font-size: 13px; }
.footer__grid a:not(.brand) { font-size: 12px; }
.footer__grid a:not(.brand):hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: #7f93a9; font-size: 11px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 999px;
  color: white;
  background: #19a966;
  box-shadow: 0 14px 36px rgba(18,140,90,.36);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #128c5a;
  box-shadow: 0 18px 42px rgba(18,140,90,.42);
}

.whatsapp-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.whatsapp-float__label {
  display: inline-block;
}

.mobile-bottom-nav { display: none; }

.drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(4,19,35,.58); opacity: 0; transition: opacity .2s ease; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(90vw, 400px); display: flex; flex-direction: column;
  background: white; transform: translateX(100%); transition: transform .25s ease;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__header, .drawer__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.drawer__header h2 { margin: 0; font-size: 19px; }
.drawer__content { flex: 1; overflow: auto; padding: 20px; }
.drawer__footer { border-top: 1px solid var(--line); border-bottom: 0; }
.drawer__footer .button { flex: 1; }
.mobile-filter-section + .mobile-filter-section { margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.mobile-filter-section h3 { margin: 0 0 13px; font-size: 14px; }

.product-dialog {
  width: min(calc(100% - 28px), 940px); max-height: min(88vh, 760px); padding: 0;
  overflow: visible; border: 0; border-radius: 24px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.product-dialog::backdrop { background: rgba(4,19,35,.72); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; right: 14px; top: 14px; z-index: 3; box-shadow: var(--shadow-sm); }
.product-detail { display: grid; grid-template-columns: .92fr 1.08fr; max-height: min(88vh, 760px); overflow: auto; border-radius: inherit; }
.product-detail__visual {
  position: sticky; top: 0; min-height: 560px; display: grid; place-items: center; overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.65), rgba(255,255,255,.05)),
    var(--detail-bg, #dfeefd);
}
.product-detail__visual::after {
  content: ""; position: absolute; left: -15%; right: -15%; bottom: -44px; height: 130px; transform: rotate(-4deg);
  background: repeating-linear-gradient(90deg, rgba(7,27,50,.08) 0 22px, transparent 22px 44px);
}
.product-detail__visual span { position: relative; z-index: 1; font-size: 160px; filter: drop-shadow(0 28px 24px rgba(7,27,50,.18)); }
.product-detail__content { padding: 48px 42px 38px; }
.product-detail__brand { color: var(--blue-700); font-size: 11px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }
.product-detail h2 { margin: 8px 0 10px; color: var(--navy-900); font-size: 34px; line-height: 1.05; letter-spacing: -.035em; }
.product-detail__code { display: block; margin-bottom: 18px; color: var(--muted); font-size: 11px; }
.product-detail__description { color: #4f5e72; font-size: 14px; }
.product-detail h3 { margin: 25px 0 10px; color: var(--navy-900); font-size: 14px; }
.feature-list { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 20px; color: #526176; font-size: 13px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 950; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { padding: 7px 10px; border-radius: 8px; color: #46566c; background: var(--surface-soft); font-size: 11px; font-weight: 750; }
.product-detail__actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 28px; }
.product-detail__actions .favorite-button { position: static; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.product-detail__actions .favorite-button.is-active { color: white; border-color: var(--danger); background: var(--danger); }

.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 500; max-width: min(calc(100% - 32px), 420px);
  padding: 11px 16px; border-radius: 10px; color: white; background: var(--navy-900);
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease; font-size: 13px; font-weight: 750;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero__grid { grid-template-columns: 1fr 420px; gap: 30px; }
  .hero h1 { font-size: clamp(43px, 6.1vw, 62px); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business__grid { gap: 40px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 85px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { display: none; }
  .header__inner { min-height: 68px; gap: 10px; }
  .desktop-contact { display: none; }
  .header__actions { margin-left: auto; }
  .brand__mark { width: 38px; height: 38px; border-radius: 10px; }
  .brand__text strong { font-size: 14px; }
  .brand__text small { font-size: 8px; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-block: 58px 64px; }
  .hero__content { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero h1 { max-width: 630px; margin-inline: auto; font-size: clamp(40px, 11vw, 58px); }
  .hero__content > p { margin-inline: auto; font-size: 16px; }
  .hero-search { margin-inline: auto; grid-template-columns: 22px 1fr auto; text-align: left; }
  .hero-search kbd { display: none; }
  .hero__actions, .trust-list { justify-content: center; }
  .hero__visual { display: none; }
  .section { padding-block: 68px; }
  .section-heading { align-items: start; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .filter-chips { display: flex; }
  #mobile-filter-button { display: inline-flex; }
  .catalog-toolbar { justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1.4fr .7fr .7fr; gap: 28px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__visual { position: relative; min-height: 280px; }
  .product-detail__visual span { font-size: 120px; }
  .product-detail__content { padding: 30px 24px 28px; }
  .product-detail h2 { font-size: 27px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 66px; }
  .header__actions > .favorites-toggle { display: none; }
  .hero-search { grid-template-columns: 22px 1fr; padding: 10px 14px; }
  .hero-search button { grid-column: 1 / -1; width: 100%; }
  .hero__actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; text-align: left; }
  .section-heading { display: block; }
  .section-heading > a { display: inline-block; margin-top: 12px; }
  .section-heading--catalog { display: grid; gap: 18px; }
  .catalog-search { width: 100%; }
  .category-grid { gap: 10px; }
  .category-card { min-height: 128px; padding: 16px; }
  .category-card__icon { width: 42px; height: 42px; font-size: 22px; }
  .category-card strong { font-size: 13px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { min-height: 230px; }
  .product-visual__icon { font-size: 96px; }
  .business__features article { grid-template-columns: 36px 1fr; padding: 16px; }
  .contact-card { padding: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .whatsapp-float {
    right: 14px;
    bottom: 78px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(18,140,90,.42);
  }

  .whatsapp-float__label {
    display: none;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .mobile-bottom-nav {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: repeat(4, 1fr); min-height: 64px;
    border-top: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  }
  .mobile-bottom-nav a, .mobile-bottom-nav button {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    padding: 4px; border: 0; color: #5f6d80; background: transparent; font-size: 9px; font-weight: 800;
  }
  .mobile-bottom-nav span { color: var(--navy-900); font-size: 20px; }
  .product-dialog { width: 100%; max-height: 96vh; margin: auto 0 0; border-radius: 22px 22px 0 0; }
  .product-detail { max-height: 96vh; }
  .product-detail__actions { grid-template-columns: 1fr 48px; }
  .toast { bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* Imágenes reales extraídas del catálogo */
.hero-card__illustration--photo {
  display: block;
  min-height: 258px;
  padding: 0;
  background: #0a2948;
}
.hero-card__illustration--photo::after { display: none; }
.hero-card__illustration--photo img {
  width: 100%;
  height: 258px;
  display: block;
  object-fit: cover;
}

.category-card__image {
  width: 72px;
  height: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 13px;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 5px;
}
.category-card:nth-child(1) .category-card__image img,
.category-card:nth-child(5) .category-card__image img,
.category-card:nth-child(6) .category-card__image img,
.category-card:nth-child(8) .category-card__image img,
.category-card:nth-child(10) .category-card__image img,
.category-card:nth-child(11) .category-card__image img {
  object-fit: cover;
  padding: 0;
}

.product-visual__image {
  position: relative;
  z-index: 1;
  width: 84%;
  height: 176px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(7,27,50,.14));
  transition: transform .25s ease;
}
.product-card:hover .product-visual__image {
  transform: scale(1.045);
}
.product-detail__visual img {
  position: relative;
  z-index: 1;
  width: 84%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(7,27,50,.15));
}
.contact-card strong {
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .category-card__image {
    width: 58px;
    height: 50px;
  }
  .product-visual__image {
    height: 195px;
  }
  .product-detail__visual img {
    max-height: 240px;
  }
}


/* =========================================================
   COTIZACIÓN AGRUPADA
   ========================================================= */

.quote-toggle {
  gap: 10px;
}

.quote-toggle .cart-count,
.quote-guide__button .cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--blue-700);
  background: white;
  font-size: 11px;
  font-weight: 950;
}

.quote-toggle .cart-count.is-empty,
.quote-guide__button .cart-count.is-empty {
  opacity: .72;
}

.quote-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .95fr) auto;
  align-items: center;
  gap: 28px;
  margin: -4px 0 28px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(244, 216, 61, .46);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 85% 0%, rgba(25, 118, 201, .38), transparent 18rem),
    linear-gradient(128deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-sm);
}

.quote-guide__content {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.quote-guide__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--navy-950);
  background: var(--accent);
  font-size: 25px;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .08);
}

.quote-guide__eyebrow,
.quote-drawer__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-guide h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.quote-guide p {
  margin: 6px 0 0;
  color: #c8d7e7;
  font-size: 12px;
}

.quote-guide__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quote-guide__steps li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d7e4f0;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.quote-guide__steps li + li::before {
  content: "→";
  margin-right: 4px;
  color: #7289a2;
  font-size: 14px;
}

.quote-guide__steps span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .06);
  font-size: 10px;
  font-weight: 950;
}

.quote-guide__button {
  min-width: 188px;
  gap: 9px;
}

.quote-add-button.is-added {
  color: white;
  background: var(--success);
  box-shadow: 0 10px 25px rgba(18, 140, 90, .22);
}

.quote-add-button.is-added:hover {
  background: #0d7d50;
}

.quote-drawer__panel {
  width: min(94vw, 500px);
}

.quote-drawer__header {
  min-height: 78px;
  background: var(--navy-950);
}

.quote-drawer__header h2 {
  color: white;
}

.quote-drawer__header .icon-button {
  color: white;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
}

.quote-drawer__header .icon-button:hover {
  background: rgba(255, 255, 255, .14);
}

.quote-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 20px;
  background: var(--surface-soft);
}

.quote-cart-items {
  display: grid;
  gap: 11px;
}

.quote-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 4px 14px rgba(7, 27, 50, .035);
}

.quote-item__image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  overflow: hidden;
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .08)),
    var(--quote-item-bg, #e8eef5);
}

.quote-item__image img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.quote-item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.quote-item__content > span {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-item h3 {
  margin: 5px 0 12px;
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.2;
}

.quote-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.quantity-control {
  display: grid;
  grid-template-columns: 31px 34px 31px;
  min-height: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
}

.quantity-control button {
  border: 0;
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
}

.quantity-control button:hover {
  background: var(--blue-100);
}

.quantity-control output {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.quote-item__remove {
  padding: 4px 0;
  border: 0;
  color: var(--danger);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}

.quote-cart-empty {
  max-width: 310px;
  margin: 50px auto;
  text-align: center;
}

.quote-cart-empty > span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--blue-100);
  font-size: 31px;
}

.quote-cart-empty h3 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-size: 20px;
}

.quote-cart-empty p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.quote-drawer__footer {
  padding: 16px 20px 18px;
  border-top: 1px solid var(--line);
  background: white;
}

.quote-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.quote-summary > span {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
}

.quote-summary .text-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.quote-note {
  display: grid;
  gap: 6px;
}

.quote-note > span {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 850;
}

.quote-note textarea {
  width: 100%;
  min-height: 74px;
  padding: 10px 11px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: var(--surface-soft);
  font: inherit;
  font-size: 12px;
}

.quote-note textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(25, 118, 201, .1);
}

.quote-send {
  width: 100%;
  margin-top: 12px;
}

.quote-send:disabled {
  opacity: .48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quote-disclaimer {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}

.mobile-quote-toggle {
  position: relative;
}

.mobile-cart-count {
  position: absolute;
  top: 5px;
  right: calc(50% - 22px);
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border: 2px solid white;
  border-radius: 999px;
  color: white !important;
  background: var(--blue-600);
  font-size: 8px !important;
  font-weight: 950;
}

.mobile-cart-count.is-empty {
  display: none;
}

@media (max-width: 1120px) {
  .quote-guide {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .quote-guide__steps {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .quote-guide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 21px;
  }

  .quote-guide__steps {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .quote-guide__steps::-webkit-scrollbar {
    display: none;
  }

  .quote-guide__button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .quote-guide {
    margin-top: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .quote-guide__content {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 12px;
  }

  .quote-guide__icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    font-size: 21px;
  }

  .quote-guide h3 {
    font-size: 17px;
  }

  .quote-guide__steps {
    gap: 8px;
  }

  .quote-guide__steps li {
    font-size: 10px;
  }

  .quote-guide__steps li + li::before {
    display: none;
  }

  .quote-drawer__panel {
    width: 100%;
  }

  .quote-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .quote-item__image,
  .quote-item__image img {
    min-height: 82px;
    height: 82px;
  }
}
