:root {
  --blue: #062653;
  --blue-dark: #021a3c;
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f4f7fb;
  --orange: #b8892f;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Montserrat', Arial, Helvetica, sans-serif; color: var(--ink); background: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
.header-inner { min-height: 96px; display: grid; grid-template-columns: 270px 1fr; align-items: center; gap: 24px; }
.brand img { width: 245px; height: auto; }
.brand span { font-weight: 800; color: var(--blue); font-size: 24px; }
.main-nav { display: flex; justify-content: flex-end; align-items: center; gap: 30px; font-size: 13px; font-weight: 800; letter-spacing: 0; color: #202020; }
.main-nav a { padding: 38px 0 34px; border-bottom: 3px solid transparent; }
.main-nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border-radius: 4px; font-size: 24px; align-items: center; justify-content: center; }
.contact-strip { background: var(--blue); color: #fff; font-size: 13px; }
.contact-inner { min-height: 34px; display: flex; justify-content: flex-end; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero { background: #fff; border-bottom: 1px solid var(--line); padding: 30px 0 24px; }
.hero h1 { margin: 0 0 16px; font-size: 30px; color: var(--blue); font-weight: 800; }
.products-hero { background: #fff; border-bottom: 1px solid var(--line); padding: 34px 0 24px; }
.products-hero.compact { padding: 26px 0 22px; }
.products-hero h1 { margin: 0 0 16px; font-size: 34px; color: var(--blue); font-weight: 800; }
.search-form { display: grid; grid-template-columns: 1fr 200px 130px; gap: 10px; }
.catalog-search { grid-template-columns: 1fr 190px 210px 210px 110px 100px; }
.category-search { grid-template-columns: minmax(260px, 1fr) 220px 120px; max-width: 780px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 10px 12px; font: inherit; background: #fff; }
button, .btn { border: 0; border-radius: 4px; padding: 11px 16px; font-weight: 800; background: var(--blue); color: #fff; cursor: pointer; display: inline-block; text-align: center; }
.btn.secondary { background: #e8eef5; color: var(--blue); }
.btn.whatsapp { background: #25d366; color: #fff; }
.btn.whatsapp:hover { background: #1fb85a; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; padding: 32px 0 48px; }
.card { border: 1px solid var(--line); border-radius: 6px; background: #fff; overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.card-img { aspect-ratio: 4 / 3; background: #fff; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.card-img img { max-width: 92%; max-height: 92%; object-fit: contain; }
.card-body { padding: 16px; display: grid; gap: 8px; }
.card-body h2 { margin: 0; font-size: 18px; line-height: 1.3; color: var(--blue); }
.card-body p { margin: 0; color: var(--muted); line-height: 1.45; }
.badge { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.sku, .meta { color: var(--muted); font-size: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 8px 0 4px; }
.tag-list span { display: inline-flex; align-items: center; min-height: 26px; border-radius: 999px; background: #e8eef5; color: var(--blue); padding: 4px 10px; font-size: 12px; font-weight: 800; }
.tag-list.compact { margin: 0; gap: 5px; }
.tag-list.compact span { min-height: 22px; padding: 3px 8px; font-size: 11px; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; padding: 34px 18px 56px; }
.category-grid-panel { padding: 0; align-self: start; }
.category-card { border: 1px solid var(--line); border-radius: 6px; background: #fff; overflow: hidden; display: grid; grid-template-rows: 210px auto; min-height: 100%; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.category-card:hover { transform: translateY(-2px); border-color: #c8d3df; box-shadow: 0 16px 36px rgba(16, 47, 82, .12); }
.category-image { background: var(--soft); display: flex; align-items: center; justify-content: center; min-height: 210px; }
.category-image img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.category-placeholder { width: 76px; height: 76px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 800; }
.category-content { padding: 18px; display: grid; gap: 8px; }
.category-content strong { color: var(--blue); font-size: 20px; line-height: 1.25; }
.category-content small { color: var(--muted); font-size: 14px; }
.catalog-layout { max-width: 1768px; display: grid; grid-template-columns: 300px 1fr; gap: 28px; padding: 24px 18px 54px; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
.catalog-layout.sidebar-collapsed { grid-template-columns: 180px minmax(0, 1fr); }
.catalog-sidebar-shell { display: grid; gap: 10px; align-self: start; }
.catalog-sidebar { border: 1px solid #dfe4eb; border-radius: 6px; padding: 16px 18px; align-self: start; position: sticky; top: 145px; background: #fff; }
.sidebar-toggle { width: 100%; min-height: 42px; border-radius: 8px; background: #e8eef5; color: var(--blue); font-size: 14px; font-weight: 900; }
.sidebar-toggle:hover { background: var(--blue); color: #fff; }
.sidebar-collapsed .catalog-sidebar-shell { max-width: 180px; }
.catalog-sidebar h2 { margin: 0 0 14px; color: var(--blue); font-size: 24px; line-height: 1.1; font-weight: 800; }
.sidebar-section-gap { height: 20px; }
.sidebar-section-gap + h2 { margin-top: 0; }
.sidebar-link { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 8px 0; border-bottom: 1px solid #dfe4eb; font-size: 16px; line-height: 1.15; font-weight: 800; color: #050b14; }
.sidebar-link span { color: #5f6f89; font-weight: 400; font-size: 15px; }
.sidebar-link.active { margin: 0 -8px; padding: 9px 8px; border-radius: 5px; background: var(--blue); color: #fff; border-bottom-color: var(--blue); }
.sidebar-link.active span { color: #fff; }
.sidebar-link.active::before { content: ""; width: 4px; align-self: stretch; background: var(--orange); border-radius: 999px; margin-right: 1px; }
.sidebar-sublink { margin: 4px 0 4px 18px; padding: 7px 10px 7px 14px; border-left: 2px solid #dfe4eb; border-bottom: 0; border-radius: 4px; background: #f5f8fb; color: #315071; font-size: 14px; font-weight: 700; }
.sidebar-sublink span { color: #6c7d94; font-size: 14px; }
.sidebar-sublink:hover { background: #eef4fa; color: var(--blue); }
.sidebar-sublink.active { margin: 4px 0 4px 18px; padding: 7px 10px 7px 14px; background: #e6f0fa; color: var(--blue); border-left-color: var(--orange); box-shadow: inset 0 0 0 1px rgba(28, 88, 141, 0.16); }
.sidebar-sublink.active span { color: var(--blue); font-weight: 700; }
.sidebar-sublink.active::before { content: ""; width: 6px; height: 6px; align-self: center; background: var(--orange); border-radius: 999px; margin-right: 0; }
.catalog-results { display: grid; gap: 20px; align-items: start; grid-auto-rows: max-content; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
.catalog-summary { color: #5f6f89; border-bottom: 1px solid #dfe4eb; padding-bottom: 14px; font-size: 25px; line-height: 1.2; }
.subcategory-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 10px; }
.subcategory-card { border: 1px solid var(--line); border-radius: 6px; min-height: 128px; padding: 12px; display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center; background: #fff; }
.subcategory-card img { width: 96px; height: 96px; object-fit: contain; background: var(--soft); border-radius: 4px; }
.subcategory-card span { color: var(--blue); font-weight: 800; line-height: 1.25; }
.subcategory-card small { color: var(--muted); display: block; margin-top: 4px; }
.category-separator { align-self: start; min-height: 0; height: auto; margin: 28px 0 6px; padding: 12px 18px; background: var(--blue); color: #fff; border-radius: 5px; font-size: 24px; line-height: 1.25; font-weight: 800; }
.product-list-card.card { display: grid; grid-template-columns: 270px 1fr; min-height: 228px; border: 1px solid #dfe4eb; border-radius: 7px; background: #fff; overflow: hidden; box-shadow: none; }
.product-list-card .card-img { aspect-ratio: auto; min-height: 226px; border-bottom: 0; border-right: 1px solid #dfe4eb; background: #fff; display: flex; align-items: center; justify-content: center; }
.product-list-card .card-img img { max-width: 86%; max-height: 86%; object-fit: contain; }
.product-list-card .card-body { padding: 26px 24px; display: grid; align-content: center; gap: 16px; }
.product-list-card .badge { display: block; width: fit-content; padding: 0; border-radius: 0; background: transparent; color: var(--orange); font-size: 20px; line-height: 1; font-weight: 900; text-transform: uppercase; }
.product-list-card .card-body h2 { margin: 0; font-size: 29px; line-height: 1.2; color: var(--blue); font-weight: 800; }
.product-list-card .sku { color: #5f6f89; font-size: 22px; line-height: 1.2; }
.product-list-card .card-body p { margin: 0; color: #5f6f89; font-size: 25px; line-height: 1.35; }
.product-page { max-width: 1380px; padding: 30px 24px 86px; }
.product-crumbs { margin-bottom: 18px; }
.product-search-row { margin: -6px 0 20px; }
.product-search-row .catalog-search { grid-template-columns: minmax(280px, 1fr) 190px 210px 210px 110px 100px; align-items: stretch; }
.product-search-row input,
.product-search-row select,
.product-search-row .btn,
.product-search-row button { min-height: 44px; padding: 9px 14px; font-size: 14px; line-height: 1.2; font-weight: 600; }
.product-search-row button,
.product-search-row .btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.product-context-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 44px; align-items: start; position: relative; }
.product-context-layout.sidebar-collapsed { grid-template-columns: minmax(0, 1fr); }
.product-context-layout.sidebar-collapsed .catalog-sidebar-shell { position: static; width: min(220px, 70vw); z-index: 6; max-width: none; margin-bottom: 18px; }
.product-context-layout.sidebar-collapsed .sidebar-toggle { box-shadow: 0 14px 32px rgba(16, 47, 82, .16); }
.product-context-layout.sidebar-collapsed .product-showcase { grid-column: 1; }
.product-location-sidebar { font-family: 'Montserrat', Arial, Helvetica, sans-serif; position: sticky; top: 145px; }
.product-showcase { display: grid; grid-template-columns: minmax(360px, 48%) minmax(0, 1fr); gap: 62px; padding: 0; align-items: start; }
.product-media-panel { display: grid; gap: 18px; }
.product-media { height: 500px; min-height: 500px; display: flex; align-items: center; justify-content: center; background: #fff; border: 0; border-radius: 0; padding: 0; position: relative; overflow: hidden; }
.product-main-image { width: 100%; height: 100%; max-height: none; object-fit: contain; transform: scale(1); transition: transform .28s ease; }
.product-media:hover .product-main-image { transform: scale(2.6); }
.product-image-empty { min-height: 300px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-weight: 700; }
.product-gallery { width: 100%; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.product-gallery a { flex: 0 0 76px; width: 76px; height: 76px; border: 2px solid transparent; border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 4px; opacity: .72; transition: opacity .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.product-gallery a:hover, .product-gallery a.active { opacity: 1; transform: translateY(-2px); border-color: var(--orange); box-shadow: 0 10px 22px rgba(16, 47, 82, .12); }
.product-gallery img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-info { padding-top: 0; }
.product-title-row { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.product-info h1 { margin: 0; font-size: 36px; line-height: 1.16; color: #06497f; font-weight: 800; letter-spacing: 0; }
.product-pdf-link { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 46px; height: 52px; color: var(--orange); font-size: 0; font-weight: 800; text-transform: uppercase; }
.product-pdf-link:hover { color: #c96713; transform: translateY(-1px); }
.product-pdf-icon { display: inline-flex; align-items: flex-end; justify-content: center; width: 38px; height: 46px; padding-bottom: 7px; border-radius: 4px; background: var(--orange); color: #fff; font-size: 11px; line-height: 1; font-weight: 900; position: relative; box-shadow: 0 8px 18px rgba(218, 116, 22, .22); }
.product-pdf-icon::before { content: ""; position: absolute; left: 7px; right: 7px; top: 11px; height: 3px; background: rgba(255,255,255,.88); box-shadow: 0 7px 0 rgba(255,255,255,.78), 0 14px 0 rgba(255,255,255,.68); }
.product-pdf-icon::after { content: ""; position: absolute; right: 0; top: 0; border-top: 11px solid #fff; border-left: 11px solid rgba(0,0,0,.18); }
.product-sku { color: #4f5d6f; font-size: 20px; line-height: 1.3; margin-bottom: 34px; font-weight: 700; }
.product-sku span { color: var(--orange); font-weight: 800; }
.product-sku strong { color: #4f5d6f; font-weight: 700; }
.product-description-block h2 { margin: 0 0 16px; color: var(--orange); font-size: 23px; line-height: 1.2; font-weight: 800; letter-spacing: 0; }
.product-description { color: #4f5d6f; font-size: 17px; line-height: 1.62; margin: 0 0 16px; font-weight: 500; }
.product-description-line { margin: 18px 0 0; color: #4f5d6f; font-size: 16px; line-height: 1.5; font-weight: 600; }
.product-description-line strong { color: var(--orange); font-weight: 800; text-transform: uppercase; }
.product-description-specs { display: grid; gap: 7px; margin-top: 12px; }
.product-description-specs p { margin: 0; color: #4f5d6f; font-size: 16px; line-height: 1.5; font-weight: 500; }
.product-description-specs strong { color: var(--orange); font-weight: 800; text-transform: uppercase; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 800; text-transform: uppercase; }
.crumbs a { color: var(--blue); }
.crumbs a:hover { color: var(--orange); }
.crumbs a::after, .crumbs span::after { content: "/"; margin-left: 8px; color: #b5bdc8; }
.crumbs span:last-child::after { content: ""; margin: 0; }
.product-contact-box { margin-top: 36px; display: grid; gap: 18px; justify-items: start; }
.product-action-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.product-contact-toggle { background: var(--orange); color: #fff; border-radius: 999px; padding: 14px 26px; font-size: 16px; line-height: 1.15; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.product-contact-toggle:hover { background: #c96713; color: #fff; }
.product-contact-form { margin: 0; padding: 24px; border: 1px solid #dfe4eb; border-radius: 8px; background: #fff; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
.product-contact-form[hidden] { display: none; }
.product-contact-form h2 { margin: 0 0 18px; color: var(--orange); font-size: 24px; font-weight: 800; text-transform: uppercase; }
.product-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-contact-form label { display: grid; gap: 7px; color: #4f5d6f; font-size: 14px; font-weight: 700; }
.product-contact-form input { min-height: 44px; border: 1px solid #d9e1ea; border-radius: 5px; padding: 10px 12px; }
.product-contact-submit { margin-top: 16px; background: var(--orange); color: #fff; border-radius: 999px; padding: 13px 22px; font-size: 17px; font-weight: 800; text-transform: uppercase; }
.product-contact-submit:hover { background: #c96713; }
.product-contact-success { margin: 12px 0 0; color: #128c3a; font-size: 15px; font-weight: 800; }
.product-contact-error { margin: 12px 0 0; color: #b42318; background: #fff1f0; border: 1px solid #f5b5ad; border-radius: 6px; padding: 10px 12px; font-size: 15px; font-weight: 800; }
.product-wa-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #25d366; color: #fff; }
.product-wa-submit:hover { background: #1fb85a; color: #fff; }
.product-wa { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: fit-content; min-width: 220px; border-radius: 999px; padding: 14px 22px; background: #25d366; color: #fff; font-size: 18px; line-height: 1.1; font-weight: 800; letter-spacing: 0; }
.product-wa:hover { background: #1fb85a; color: #fff; }
.wa-mark { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 999px; background: #fff; color: #128c3a; position: relative; }
.wa-mark::before { content: ""; width: 10px; height: 10px; border: 3px solid #128c3a; border-radius: 50%; border-left-color: transparent; transform: rotate(-35deg); }
.wa-mark::after { content: ""; position: absolute; left: 7px; bottom: 4px; border-top: 6px solid #128c3a; border-right: 5px solid transparent; transform: rotate(20deg); }
.product-category-line { margin-top: 36px; color: #06497f; font-size: 16px; line-height: 1.45; font-weight: 700; }
.product-category-line span:first-child { color: var(--orange); font-weight: 800; }
.product-category-line a { color: #06497f; }
.product-category-line a:hover { color: var(--orange); }
.category-extra { color: #06497f; }
.product-documents { margin-top: 38px; display: grid; gap: 14px; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
.product-document-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.product-document-tab { display: inline-flex; align-items: center; gap: 9px; min-height: 40px; padding: 8px 14px; border: 1px solid #d8e1ec; border-radius: 7px; color: #06497f; background: #fff; font-size: 15px; font-weight: 800; }
.product-document-tab.active, .product-document-tab:hover { border-color: var(--orange); color: var(--orange); background: #fff8f1; }
.document-tab-icon { width: 16px; height: 18px; border: 2px solid currentColor; border-radius: 3px; position: relative; display: inline-block; }
.document-tab-icon::after { content: ""; position: absolute; left: 3px; right: 3px; top: 5px; height: 2px; background: currentColor; box-shadow: 0 5px 0 currentColor; }
.product-document-panel { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 26px; padding: 20px 22px; border-radius: 8px; background: #f3f6fb; }
.product-document-panel[hidden] { display: none; }
.product-document-link { display: inline-flex; align-items: center; gap: 12px; color: #24324a; font-size: 16px; line-height: 1.25; font-weight: 800; }
.product-document-link:hover { color: var(--orange); }
.product-document-icon { width: 34px; height: 34px; border-radius: 8px; background: #0f2144; color: #fff; position: relative; flex: 0 0 auto; }
.product-document-icon::before { content: ""; position: absolute; left: 10px; top: 7px; width: 12px; height: 15px; border: 2px solid currentColor; border-radius: 2px; }
.product-document-icon.pdf::before { content: "PDF"; left: 6px; top: 12px; width: auto; height: auto; border: 0; font-size: 9px; font-weight: 900; }
.product-document-icon.video::before { left: 11px; top: 9px; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid currentColor; border-right: 0; border-radius: 0; }
.product-document-icon.article::before, .product-document-icon.marketing::before, .product-document-icon.manual::before { box-shadow: 0 6px 0 -1px currentColor; }
.product-tags { margin-top: 18px; }
.specs { border: 2px solid var(--blue); border-radius: 0; overflow: hidden; margin: 0; }
.spec-row { display: grid; grid-template-columns: 210px 1fr; border-bottom: 2px solid #fff; }
.spec-row:last-child { border-bottom: 0; }
.spec-row strong { background: var(--blue); color: #fff; padding: 13px 15px; text-transform: uppercase; }
.spec-row span { padding: 13px 15px; background: #e8e8e8; color: #111; }
.site-footer { background: #f4f5f7; border-top: 1px solid var(--line); padding: 38px 0; }
.landing-hero { background: #fff; border-bottom: 1px solid var(--line); padding: 36px 0; overflow: hidden; }
.landing-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: 42px; align-items: center; }
.landing-hero-copy, .landing-hero-media { min-width: 0; }
.landing-hero h1 { margin: 0 0 16px; color: var(--blue); font-size: 44px; line-height: 1.08; font-weight: 900; }
.landing-hero p { margin: 0 0 22px; color: #4f5d6f; font-size: 20px; line-height: 1.5; font-weight: 600; }
.landing-hero-media { width: 100%; display: flex; align-items: center; justify-content: center; }
.landing-hero-media img { width: 100%; max-width: 100%; height: auto; max-height: 360px; object-fit: contain; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; }
.landing-content { padding-top: 34px; padding-bottom: 44px; }
.landing-copy { max-width: 920px; color: #314158; font-size: 19px; line-height: 1.65; font-weight: 500; }
.landing-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.landing-gallery a { min-height: 190px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.landing-gallery img { width: 100%; height: 100%; max-height: 260px; object-fit: contain; padding: 12px; }
.landing-products { margin-top: 34px; }
.landing-products h2 { color: var(--blue); font-size: 30px; font-weight: 900; }
.landing-product-list { display: grid; gap: 18px; }
.contact-hero { background: #fff; border-bottom: 1px solid var(--line); padding: 42px 0 34px; }
.contact-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: center; }
.contact-copy h1 { margin: 0 0 14px; color: var(--blue); font-size: 42px; line-height: 1.1; font-weight: 900; }
.contact-copy p { margin: 0; color: #4f5d6f; font-size: 18px; line-height: 1.6; font-weight: 500; max-width: 720px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-mascot-card { min-height: 360px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); overflow: hidden; }
.contact-mascot-card img { width: 100%; max-height: 430px; object-fit: contain; padding: 18px; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; padding-top: 34px; padding-bottom: 58px; }
.contact-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 24px; }
.contact-card h2 { margin: 0 0 18px; color: var(--blue); font-size: 24px; font-weight: 900; }
.contact-data dl { display: grid; gap: 14px; margin: 0; }
.contact-data dl div { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.contact-data dt { color: var(--orange); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.contact-data dd { margin: 5px 0 0; color: #314158; font-size: 16px; line-height: 1.5; font-weight: 600; }
.contact-data a { color: var(--blue); }
.contact-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: #4f5d6f; font-size: 14px; font-weight: 800; }
.contact-form input, .contact-form textarea { min-height: 44px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(160px, .7fr)); gap: 34px; align-items: start; }
.footer-brand img { width: 220px; margin-bottom: 16px; }
.footer-brand p { margin: 0 0 10px; color: var(--muted); line-height: 1.55; }
.footer-contact-list { display: grid; gap: 7px; margin-top: 14px; color: #4f5d6f; font-size: 14px; line-height: 1.45; font-weight: 600; }
.footer-contact-list a { color: var(--blue); font-weight: 800; }
.footer-column h2 { margin: 0 0 14px; color: var(--blue); font-size: 18px; }
.footer-column a { display: block; margin: 0 0 10px; color: #2f3743; font-weight: 700; font-size: 14px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); }
.footer-legal a { color: var(--blue); font-size: 13px; font-weight: 800; }
.footer-legal a:hover { color: var(--orange); }
.legal-page { max-width: 980px; padding: 54px 18px 72px; }
.legal-page h1 { margin: 0 0 18px; color: var(--blue-dark); font-size: 42px; line-height: 1.08; font-weight: 900; }
.legal-page h2 { margin: 30px 0 10px; color: var(--blue); font-size: 22px; font-weight: 900; }
.legal-page p, .legal-page li { color: #4f5d6f; font-size: 16px; line-height: 1.7; }
.legal-page ul { margin: 10px 0 0; padding-left: 22px; }
.legal-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 30px; box-shadow: 0 12px 28px rgba(16, 47, 82, .06); }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 70; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; max-width: 1120px; margin: 0 auto; padding: 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: #102f52; color: #fff; box-shadow: 0 22px 60px rgba(16, 47, 82, .32); }
.cookie-banner strong { display: block; margin-bottom: 5px; color: #ffd06b; font-size: 17px; font-weight: 900; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.45; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions a { color: #ffd06b; font-size: 13px; font-weight: 900; }
.cookie-actions .btn { min-width: 96px; }
.assistant-widget { position: fixed; right: 38px; bottom: 92px; z-index: 50; }
.assistant-button { min-width: 330px; min-height: 48px; border-radius: 999px; box-shadow: none; display: inline-flex; align-items: center; gap: 12px; background: #e88400; padding: 8px 22px 8px 86px; position: relative; color: #fff; font-size: 24px; line-height: 1; font-weight: 800; }
.assistant-button:hover { background: #dc7d00; }
.assistant-avatar { width: 88px; height: 88px; border-radius: 50%; background: #fff; color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; overflow: hidden; border: 6px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,.22); position: absolute; left: -10px; top: 50%; transform: translateY(-50%); }
.assistant-avatar img, .assistant-face img { width: 100%; height: 100%; object-fit: cover; }
.assistant-avatar.small { width: 54px; height: 54px; position: static; transform: none; border-width: 3px; background: #e8eef5; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.help-panel { display: none; position: absolute; right: 0; bottom: 72px; width: min(390px, calc(100vw - 36px)); background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 20px 50px rgba(15, 23, 42, .18); overflow: hidden; z-index: 51; }
.help-panel.open { display: block; }
.help-head { background: var(--blue); color: #fff; padding: 14px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.help-head small { display: block; font-weight: 400; opacity: .85; }
.assistant-dialog { padding: 14px; background: #f7f9fb; display: grid; gap: 10px; max-height: 250px; overflow: auto; }
.assistant-message-row { display: grid; grid-template-columns: 38px 1fr; gap: 9px; align-items: end; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.assistant-message-row.visible { opacity: 1; transform: translateY(0); }
.assistant-message-row.queued { display: none; }
.assistant-face { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: #fff; border: 1px solid var(--line); align-self: start; }
.assistant-bubble { display: grid; gap: 5px; width: 100%; text-align: left; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; font-weight: 400; }
.assistant-bubble strong { color: var(--blue); }
.assistant-bubble span { color: #30343b; line-height: 1.35; }
.assistant-bubble.selected { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(247,147,29,.18); }
.assistant-bubble.static { cursor: default; }
.help-body { padding: 14px; display: grid; gap: 10px; }
.promo { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 6px; padding: 10px; font-size: 14px; }
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-nav { background: #102f52; color: #fff; padding: 18px; }
.admin-nav h2 { margin-top: 0; }
.admin-nav a { display: block; padding: 10px; border-radius: 6px; margin-bottom: 4px; }
.admin-nav a:hover { background: rgba(255,255,255,.12); }
.admin-user-chip { margin: 0 0 14px; padding: 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 800; }
.admin-user-chip span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 500; }
.admin-main { padding: 24px; background: #f8fafc; overflow-x: auto; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 18px; margin: 0 0 20px; }
.admin-stats { padding-top: 0; padding-bottom: 18px; }
.table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 9px; text-align: left; vertical-align: top; }
.table th { background: #e9f0f7; }
.table input, .table select { min-width: 110px; }
.form-grid { display: grid; gap: 12px; }
.admin-product-search { grid-template-columns: minmax(220px, 1fr) 170px 210px 210px 120px 150px 180px 95px 95px 85px; align-items: end; margin-bottom: 16px; }
.bulk-actions { display: grid; grid-template-columns: 210px 180px repeat(3, minmax(150px, 1fr)) 110px; gap: 10px; align-items: center; }
.metrics-period-form { display: grid; grid-template-columns: 220px 180px 180px 110px 100px; gap: 10px; align-items: end; }
.admin-category-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-category-chips a { display: inline-flex; gap: 7px; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: 7px 11px; font-size: 13px; font-weight: 700; color: var(--blue); }
.admin-category-chips span { color: var(--muted); font-weight: 400; }
.thumb-cell { width: 86px; }
.admin-thumb { width: 72px; height: 72px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 4px; }
.muted { color: var(--muted); font-size: 12px; }
.image-admin-grid { display: grid; grid-template-columns: 220px 1fr; gap: 18px; align-items: start; }
.admin-image-preview { width: 190px; min-height: 160px; border: 1px solid var(--line); border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.admin-image-preview img { max-width: 100%; max-height: 190px; object-fit: contain; padding: 8px; }
.gallery-admin-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; margin: 14px 0; }
.gallery-admin-item { border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 10px; display: grid; gap: 8px; }
.document-admin-list { display: grid; gap: 12px; margin: 14px 0; }
.document-edit-row { display: grid; grid-template-columns: 150px 1fr 140px minmax(220px, 1.4fr) 170px 90px 85px 85px; gap: 10px; align-items: end; border: 1px solid var(--line); border-radius: 6px; padding: 12px; background: #fff; }
.document-edit-row label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 800; }
.document-edit-row input[type="checkbox"] { width: auto; min-height: auto; justify-self: start; }
.gallery-admin-item img { width: 100%; height: 120px; object-fit: contain; background: var(--soft); border-radius: 4px; }
.inline-form { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 10px; align-items: end; margin-top: 12px; }
.admin-user-form { grid-template-columns: repeat(6, minmax(130px, 1fr)); }
.check-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--muted); }
.check-label input { width: auto; min-width: auto; }
.permission-table input[type="checkbox"] { width: 22px; min-width: 22px; height: 22px; }
.permission-save { margin-top: 14px; }
.crm-filters { display: grid; grid-template-columns: minmax(220px, 1fr) 190px 190px 110px 100px; gap: 10px; align-items: end; }
.crm-board { display: grid; grid-template-columns: repeat(6, minmax(270px, 1fr)); gap: 14px; align-items: start; overflow-x: auto; padding-bottom: 18px; }
.crm-column { background: #eef3f8; border: 1px solid #dbe5ef; border-radius: 8px; padding: 12px; min-height: 420px; }
.crm-column h2 { display: flex; justify-content: space-between; align-items: center; margin: 0 0 12px; color: var(--blue); font-size: 18px; }
.crm-column h2 span { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 28px; border-radius: 999px; background: #fff; color: var(--muted); font-size: 13px; }
.crm-card { background: #fff; border: 1px solid #d9e1ea; border-radius: 8px; padding: 12px; margin-bottom: 12px; display: grid; gap: 9px; box-shadow: 0 8px 20px rgba(16, 47, 82, .06); }
.crm-card.due { border-left: 5px solid var(--orange); }
.crm-card header { display: flex; justify-content: space-between; gap: 10px; align-items: start; }
.crm-card header strong { color: var(--blue); font-size: 16px; line-height: 1.2; }
.crm-card p { margin: 0; color: #4f5d6f; font-size: 13px; line-height: 1.35; overflow-wrap: anywhere; }
.crm-message { max-height: 74px; overflow: auto; background: #f8fafc; border-radius: 6px; padding: 8px; }
.crm-next { color: #9a4b00 !important; }
.crm-priority { flex: 0 0 auto; border-radius: 999px; padding: 4px 8px; font-size: 11px; font-weight: 800; background: #e8eef5; color: var(--blue); }
.crm-priority.alta { background: #fff3e8; color: #b85f10; }
.crm-priority.urgente { background: #fee4e2; color: #b42318; }
.crm-priority.baja { background: #ecfdf3; color: #027a48; }
.crm-card summary { cursor: pointer; color: var(--blue); font-weight: 800; font-size: 13px; }
.crm-update-form { display: grid; gap: 8px; margin-top: 10px; }
.crm-update-form label { display: grid; gap: 4px; color: var(--muted); font-size: 12px; font-weight: 800; }
.crm-update-form input, .crm-update-form select, .crm-update-form textarea { min-height: 38px; padding: 8px 9px; font-size: 13px; }
.crm-update-form button { padding: 9px 12px; }
.crm-history { border-top: 1px solid var(--line); padding-top: 8px; }
.crm-comment { border-left: 3px solid #dbe5ef; padding: 7px 0 7px 9px; margin-top: 8px; }
.crm-comment strong { color: var(--blue); font-size: 12px; }
.crm-comment span { color: var(--muted); font-size: 11px; }
.crm-card footer { display: flex; gap: 10px; border-top: 1px solid var(--line); padding-top: 8px; }
.crm-card footer a { color: var(--orange); font-size: 13px; font-weight: 800; }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 14px; }
.section-head h2 { margin: 0 0 6px; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.45; }
.spec-editor { margin: 4px 0 0; }
.spec-rows { display: grid; gap: 10px; }
.spec-edit-row { display: grid; grid-template-columns: minmax(180px, .35fr) 1fr 110px; gap: 10px; align-items: start; }
.spec-edit-row textarea { min-height: 44px; resize: vertical; }
.spec-remove { min-height: 44px; }
.auth-card { max-width: 520px; margin: 50px auto; border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: #fff; }
.construction-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: #f4f7fb; }
.construction-card { width: min(620px, 100%); border: 1px solid var(--line); border-radius: 8px; padding: 34px; background: #fff; text-align: center; box-shadow: 0 18px 40px rgba(16, 47, 82, .12); }
.construction-card img { max-width: 240px; max-height: 120px; object-fit: contain; margin-bottom: 22px; }
.construction-card h1 { margin: 0 0 12px; color: var(--blue); font-size: 34px; line-height: 1.1; }
.construction-card p { margin: 0 0 22px; color: var(--muted); font-size: 17px; line-height: 1.5; }
.captcha-code { display: inline-flex; width: fit-content; margin: 7px 0; padding: 9px 14px; border: 1px dashed #8aa5c3; border-radius: 6px; background: #eef5fc; color: var(--blue); font-size: 22px; letter-spacing: 4px; font-weight: 900; user-select: none; }
.notice { background: #e0f2fe; border: 1px solid #7dd3fc; padding: 10px; border-radius: 6px; }
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 76px; }
  .brand img { width: 205px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; grid-column: 1 / -1; justify-content: flex-start; flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 12px; }
  .menu-open .main-nav { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .contact-inner { justify-content: flex-start; }
  .search-form, .catalog-search, .category-search, .grid, .category-grid, .catalog-layout, .subcategory-strip, .product-layout, .landing-hero-inner, .contact-hero-inner, .contact-layout, .admin-layout, .two, .inline-form, .spec-edit-row, .document-edit-row, .admin-product-search, .image-admin-grid, .bulk-actions, .metrics-period-form { grid-template-columns: 1fr; }
  .section-head { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { justify-content: flex-start; }
  .spec-row { grid-template-columns: 1fr; }
  .catalog-sidebar, .catalog-sidebar-shell { position: static; }
  .product-list-card.card { grid-template-columns: 1fr; }
  .category-card { grid-template-rows: 180px auto; }
  .category-image { min-height: 180px; }
  .subcategory-card { grid-template-columns: 86px 1fr; }
  .subcategory-card img { width: 86px; height: 86px; }
  .products-hero { padding: 22px 0 18px; }
  .products-hero h1 { font-size: 30px; line-height: 1.15; margin-bottom: 10px; overflow-wrap: anywhere; }
  .landing-intro { margin: 0; color: #4f5d6f; font-size: 16px; line-height: 1.55; }
  .landing-hero { padding: 20px 0 18px; overflow: visible; }
  .landing-hero-inner { display: flex; flex-direction: column; gap: 18px; align-items: stretch; width: 100%; }
  .landing-hero-copy, .landing-hero-media { width: 100%; max-width: 100%; flex: 0 0 auto; position: static; }
  .landing-hero h1, .contact-copy h1 { font-size: 30px; line-height: 1.12; margin-bottom: 12px; overflow-wrap: break-word; }
  .landing-hero p, .contact-copy p { font-size: 16px; line-height: 1.55; margin-bottom: 16px; }
  .landing-hero .btn { display: flex; width: 100%; min-height: 44px; align-items: center; justify-content: center; }
  .landing-hero-media { order: 2; }
  .landing-hero-media img { display: block; width: 100%; max-width: 100%; height: auto; max-height: 220px; padding: 10px; border-radius: 6px; }
  .landing-content { padding-top: 22px; padding-bottom: 34px; }
  .landing-copy { font-size: 16px; line-height: 1.6; }
  .landing-gallery { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .landing-gallery a { min-height: 170px; }
  .landing-gallery img { max-height: 220px; padding: 10px; }
  .landing-products { margin-top: 24px; }
  .landing-products h2 { margin: 0 0 14px; font-size: 24px; line-height: 1.15; }
  .landing-product-list { gap: 14px; }
  .category-grid-panel { padding: 20px 18px 36px; }
  .category-card { grid-template-rows: auto; }
  .category-image { height: 150px; min-height: 0; }
  .category-content { padding: 16px; }
  .category-content strong { font-size: 18px; }
  .category-content small { font-size: 13px; line-height: 1.45; }
  .contact-hero { padding: 26px 0 22px; }
  .contact-hero-inner { gap: 20px; }
  .contact-mascot-card { min-height: 260px; }
  .product-list-card .card-img { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-list-card .card-body { padding: 20px 18px; gap: 10px; }
  .product-list-card .badge { font-size: 17px; }
  .product-list-card .card-body h2 { font-size: 23px; line-height: 1.18; }
  .product-list-card .sku { font-size: 17px; }
  .product-list-card .card-body p { font-size: 16px; line-height: 1.45; }
  .product-page { padding: 18px 18px 48px; }
  .product-context-layout { grid-template-columns: 1fr; gap: 28px; }
  .product-location-sidebar { position: static; }
  .product-showcase { gap: 30px; padding-bottom: 32px; align-items: start; }
  .product-media { height: 340px; min-height: 340px; padding: 0; }
  .product-info h1 { font-size: 31px; margin-bottom: 18px; }
  .product-sku { font-size: 20px; margin-bottom: 34px; }
  .product-description-block h2 { font-size: 24px; margin-bottom: 16px; }
  .product-description { font-size: 19px; }
  .product-description-specs p { font-size: 16px; }
  .product-category-line { font-size: 17px; margin-top: 34px; }
  .product-contact-grid { grid-template-columns: 1fr; }
  .product-contact-form { margin-top: 34px; padding: 18px; }
  .product-action-row { width: 100%; }
  .product-wa, .product-contact-toggle { width: 100%; min-width: 0; font-size: 16px; }
  .assistant-widget { right: 10px; bottom: 64px; max-width: calc(100vw - 20px); }
  .assistant-button { min-width: 0; width: calc(100vw - 72px); min-height: 42px; font-size: 15px; padding: 8px 14px 8px 58px; }
  .assistant-avatar { width: 62px; height: 62px; border-width: 4px; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 14px; }
  .products-hero h1, .landing-hero h1, .contact-copy h1 { font-size: 26px; line-height: 1.14; }
  .landing-hero-media img { max-height: 190px; }
  .category-grid-panel { padding-left: 14px; padding-right: 14px; }
  .category-image { height: 136px; }
  .product-list-card .card-body { padding: 18px 16px; }
  .product-list-card .badge { font-size: 16px; }
  .product-list-card .card-body h2 { font-size: 22px; }
  .product-list-card .sku { font-size: 16px; }
  .product-list-card .card-body p { font-size: 16px; line-height: 1.45; }
}
@media (max-width: 380px) {
  .landing-hero h1, .contact-copy h1 { font-size: 24px; }
  .landing-hero p, .contact-copy p { font-size: 15px; }
  .landing-hero-media img { max-height: 170px; }
}
