:root {
  --ink: #16191c;
  --coal: #121517;
  --red: #c81524;
  --red-dark: #98111b;
  --line: #e7eaee;
  --soft: #f6f7f8;
  --white: #fff;
  --muted: #68727c;
  --shadow: 0 18px 48px rgba(18, 21, 23, .1);
  --max: 1360px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(calc(100% - 44px), var(--max)); margin: auto; }
.topbar { background: #111417; color: rgba(255,255,255,.8); font-size: .82rem; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-weight: 600; }
.site-header { position: sticky; top: 0; z-index: 70; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 8px 22px rgba(18,21,23,.04); }
.header-main { min-height: 124px; display: grid; grid-template-columns: 290px 1fr auto; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 218px; height: 104px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; justify-content: center; gap: 34px; font-size: .98rem; font-weight: 650; }
.nav > a, .nav-drop > a { position: relative; padding: 18px 0; }
.nav > a::after, .nav-drop > a::after { position: absolute; left: 0; bottom: 8px; width: 0; height: 2px; background: var(--red); content: ""; transition: width .22s ease; }
.nav > a:hover::after, .nav-drop:hover > a::after { width: 100%; }
.nav-drop { position: relative; }
.drop-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); width: 350px; padding: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transition: .18s ease; display: grid; gap: 2px; }
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.drop-menu a { padding: 12px 14px; color: var(--muted); font-weight: 550; }
.drop-menu a:hover { color: var(--red); background: #fff4f5; }
.drop-item { position: relative; }
.drop-item > a { display: block; }
.sub-drop { position: absolute; left: 100%; top: 0; min-width: 260px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateX(10px); transition: .18s ease; display: grid; z-index: 20; }
.drop-item:hover .sub-drop { opacity: 1; visibility: visible; transform: translateX(0); }
.sub-drop a { padding: 11px 14px; color: var(--muted); font-weight: 550; }
.quote-pill, .btn { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; border: 0; border-radius: 6px; padding: 14px 28px; background: var(--red); color: var(--white); font-weight: 700; box-shadow: 0 14px 28px rgba(200,21,36,.22); cursor: pointer; }
.btn.ghost { background: #fff; color: var(--ink); box-shadow: none; }
.header-search { padding: 0 0 18px; }
.search, .catalog-search { display: grid; grid-template-columns: 1fr auto; width: 100%; border: 1px solid var(--line); background: var(--white); }
.search { max-width: 760px; margin: auto; }
.search input, .catalog-search input, .filter-form select, .wa-form input, .wa-form textarea { border: 0; min-width: 0; padding: 16px 18px; outline: none; color: var(--ink); background: #fff; }
.search button, .catalog-search button, .filter-form button { border: 0; padding: 0 26px; background: var(--coal); color: #fff; font-weight: 650; cursor: pointer; }
.hero-slider { position: relative; height: min(720px, calc(100vh - 120px)); min-height: 560px; overflow: hidden; background: #111; color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; display: grid; align-items: center; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide::before { position: absolute; inset: 0; background: linear-gradient(92deg, rgba(10,12,14,.92) 0%, rgba(10,12,14,.7) 43%, rgba(10,12,14,.16) 100%), var(--hero-image) center center / cover no-repeat; content: ""; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: radial-gradient(circle at 78% 18%, rgba(200,21,36,.18), transparent 26%); }
.hero-content { position: relative; z-index: 2; padding: 70px 0; }
.eyebrow { display: inline-flex; gap: 12px; align-items: center; color: var(--red); font-size: .76rem; font-weight: 750; text-transform: uppercase; letter-spacing: .02em; }
.eyebrow::before { width: 42px; height: 2px; background: currentColor; content: ""; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 850px; margin: 20px 0 24px; font-size: clamp(3rem, 5.1vw, 5.7rem); line-height: 1.03; font-weight: 760; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.35rem); line-height: 1.1; font-weight: 690; letter-spacing: 0; }
h3 { line-height: 1.25; font-weight: 650; }
.hero-content p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 1.16rem; line-height: 1.78; font-weight: 400; }
.lead { color: rgba(255,255,255,.78); font-size: 1.08rem; line-height: 1.78; }
.lead.dark { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-dots { position: absolute; left: 50%; bottom: 28px; z-index: 4; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 4px; border: 0; background: rgba(255,255,255,.34); cursor: pointer; }
.hero-dots button.is-active { background: var(--red); }
.stats-band { background: #121517; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.stats-grid article { min-height: 126px; padding: 28px 30px; border-right: 1px solid rgba(255,255,255,.1); display: grid; align-content: center; }
.stats-grid strong { font-size: 2.25rem; line-height: 1; color: #fff; font-weight: 690; }
.stats-grid span { margin-top: 8px; color: rgba(255,255,255,.64); font-weight: 500; }
.section { padding: 94px 0; }
.soft { background: var(--soft); }
.split { display: grid; grid-template-columns: .92fr 1fr; gap: 82px; align-items: center; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head h2 { margin-bottom: 0; max-width: 760px; }
.text-link { color: var(--red); font-weight: 700; }
.image-composition { display: grid; grid-template-columns: 1fr .72fr; gap: 18px; align-items: end; }
.image-composition img { width: 100%; min-height: 360px; object-fit: cover; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.image-composition img:nth-child(2) { min-height: 250px; margin-bottom: -36px; padding: 20px; object-fit: contain; }
.category-marquee { overflow: hidden; }
.category-track { display: flex; gap: 18px; width: max-content; animation: marquee 34s linear infinite; }
.category-track:hover { animation-play-state: paused; }
.category-card { width: 285px; min-height: 156px; padding: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(18,21,23,.06); display: grid; align-content: space-between; }
.category-card span { font-size: 1.02rem; font-weight: 650; }
.category-card small { color: var(--red); font-weight: 650; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { border: 1px solid var(--line); background: #fff; overflow: hidden; display: grid; box-shadow: 0 12px 32px rgba(18,21,23,.06); opacity: 0; animation: rise .42s ease forwards; }
.product-card img { width: 100%; aspect-ratio: 1.12; object-fit: contain; padding: 24px; background: #f4f6f8; filter: none; mix-blend-mode: normal; }
.product-card > div { padding: 22px; display: grid; min-height: 252px; }
.product-card span { color: var(--red); font-size: .72rem; font-weight: 650; text-transform: uppercase; }
.product-card h3 { min-height: 58px; font-size: 1rem; font-weight: 630; }
.product-card p { color: var(--muted); font-size: .9rem; line-height: 1.58; }
.card-actions { display: flex; gap: 9px; margin-top: auto; }
.mini { flex: 1; text-align: center; border: 1px solid var(--line); padding: 11px 9px; font-size: .83rem; font-weight: 650; }
.mini.dark { background: var(--coal); color: #fff; border-color: var(--coal); }
.value-grid, .insight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-grid article, .insight { padding: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(18,21,23,.05); }
.value-grid p, .insight p { color: var(--muted); line-height: 1.65; }
.insight img { width: 100%; aspect-ratio: 1.45; object-fit: cover; margin-bottom: 20px; }
.process { background: linear-gradient(135deg, #171a1d, #2d3135); color: #fff; }
.process-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 18px; align-items: stretch; }
.process-grid article { border: 1px solid rgba(255,255,255,.12); padding: 28px; background: rgba(255,255,255,.05); }
.process-grid b { display: block; color: var(--red); font-size: 2.2rem; font-weight: 650; margin-bottom: 16px; }
.process-grid p { color: rgba(255,255,255,.68); line-height: 1.65; }
.lab-flow { background: #fff; }
.flow-list { display: grid; gap: 14px; }
.flow-list article { display: grid; gap: 6px; padding: 24px; border-left: 3px solid var(--red); background: var(--soft); }
.flow-list strong { font-size: 1.08rem; font-weight: 650; }
.flow-list span { color: var(--muted); line-height: 1.6; }
.contact-strip { background: #fff; }
.contact-panel { display: grid; grid-template-columns: .8fr 1fr; gap: 44px; align-items: center; padding: 42px; background: var(--soft); border: 1px solid var(--line); }
.contact-page { grid-template-columns: .9fr 1fr; }
.contact-page img { width: 100%; height: 520px; object-fit: cover; }
.wa-form { display: grid; gap: 12px; }
.wa-form input, .wa-form textarea { border: 1px solid var(--line); }
.wa-form textarea { min-height: 140px; resize: vertical; }
.traditional-form { gap: 18px; }
.traditional-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 700; font-size: .94rem; }
.traditional-form input, .traditional-form textarea { width: 100%; }
.page-title { padding: 92px 0; background: linear-gradient(135deg, #f7f8f9 0%, #fff 62%); border-bottom: 1px solid var(--line); }
.page-title h1 { color: var(--ink); }
.page-title p { max-width: 780px; color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.catalog-layout { display: grid; grid-template-columns: 330px 1fr; gap: 34px; align-items: start; }
.filters { position: sticky; top: 188px; display: grid; gap: 8px; border: 1px solid var(--line); padding: 22px; background: #fff; box-shadow: 0 10px 28px rgba(18,21,23,.05); }
.filters h3 { margin: 16px 0 8px; }
.filters h3:first-child { margin-top: 0; }
.filters a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 560; }
.filter-scroll a { display: block; line-height: 1.35; word-break: normal; overflow-wrap: anywhere; letter-spacing: 0; }
.filters a:hover { color: var(--red); }
.filter-form { display: grid; gap: 10px; }
.filter-form select { border: 1px solid var(--line); width: 100%; }
.filter-form button { min-height: 44px; }
.catalog-search { margin-bottom: 24px; }
.product-detail { display: grid; grid-template-columns: .9fr 1fr; gap: 74px; padding: 58px 0 86px; align-items: start; }
.breadcrumb { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 20px; color: var(--muted); font-size: .82rem; }
.breadcrumb a { color: var(--ink); }
.breadcrumb em { font-style: normal; color: var(--red); }
.detail-media { border: 1px solid var(--line); background: #f7f8f9; padding: 40px; box-shadow: var(--shadow); }
.detail-media img { width: 100%; max-height: 540px; object-fit: contain; }
.detail-info h1 { color: var(--ink); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.16; margin-top: 0; }
.sku { color: var(--muted); font-weight: 600; }
.wish-line { display: flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); padding: 18px 0 26px; color: var(--muted); font-size: .92rem; }
.wish-line span:first-child { color: var(--ink); font-size: 1.45rem; line-height: 1; }
.product-meta { display: grid; gap: 10px; padding: 26px 0 12px; color: var(--muted); }
.product-meta p { margin: 0; }
.product-meta b { color: var(--ink); }
.share-row { display: flex; align-items: center; gap: 10px; margin: 8px 0 26px; color: var(--muted); }
.share { width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 50%; color: #fff; font-size: .85rem; font-weight: 700; }
.share.fb { background: #1877f2; }
.share.ig { background: #d62976; }
.share.wa { background: #25d366; }
.product-order { min-width: 190px; }
.product-extra { padding-top: 0; }
.product-extra > .wrap > h2 { text-align: center; color: var(--red); font-size: 1rem; text-transform: uppercase; border-bottom: 2px solid var(--red); width: max-content; margin: 0 auto 28px; padding-bottom: 10px; }
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 34px; }
.info-table th, .info-table td { border-top: 1px solid var(--line); padding: 16px 12px; text-align: left; }
.info-table th { width: 180px; color: var(--ink); font-weight: 650; }
.info-table td { color: var(--muted); font-style: italic; }
.article { max-width: 900px; padding: 70px 0; }
.article p { color: var(--muted); line-height: 1.85; font-size: 1.08rem; }
.news-hero { min-height: 520px; display: grid; align-items: end; color: #fff; background: linear-gradient(90deg, rgba(10,12,14,.9), rgba(10,12,14,.48)), var(--hero-image) center / cover no-repeat; }
.news-hero .wrap { padding: 90px 0; }
.news-hero p { max-width: 760px; color: rgba(255,255,255,.78); line-height: 1.75; }
.footer { background: #101315; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .9fr; gap: 62px; padding: 72px 0; }
.footer-logo { width: 230px; max-height: 170px; object-fit: contain; object-position: left center; margin-bottom: 18px; }
.footer h3 { color: #fff; font-weight: 650; }
.footer p, .footer a { display: block; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 10px; }
.footer .btn { display: inline-flex; color: #fff; margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px; text-align: center; color: rgba(255,255,255,.58); font-weight: 500; }
.float-wa { position: fixed; right: 24px; bottom: 22px; z-index: 90; width: 70px; height: 70px; border-radius: 999px; display: grid; place-items: center; background: #25d366; box-shadow: 0 16px 34px rgba(37,211,102,.34); }
.float-wa img { width: 45px; height: 45px; object-fit: contain; }
.admin-body { background: var(--soft); }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-side { background: var(--coal); color: #fff; padding: 28px; }
.admin-side img { width: 180px; margin-bottom: 30px; background: #fff; padding: 8px; }
.admin-side a { display: block; padding: 12px 0; color: rgba(255,255,255,.76); font-weight: 550; }
.admin-main { padding: 34px; }
.panel { border: 1px solid var(--line); padding: 24px; background: #fff; box-shadow: var(--shadow); margin-bottom: 22px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 12px; text-align: left; font-size: .9rem; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); padding: 12px; }
.admin-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn.danger { background: #5d151b; }
.admin-textarea { width: 100%; border: 1px solid var(--line); padding: 12px; }
.admin-preview { width: 100%; height: 680px; border: 1px solid var(--line); background: #fff; }
.topbar a { color: rgba(255,255,255,.84); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.top-icon { color: var(--red); font-size: .95rem; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; min-height: 44px; padding: 0 14px; font-size: 1.35rem; }
.page-hero-slider { position: relative; min-height: 430px; overflow: hidden; background: #111; color: #fff; }
.page-hero-slider .hero-slide { position: relative; min-height: 430px; opacity: 1; }
.hero-content.compact { padding: 92px 0; }
.hero-content.compact h1 { font-size: clamp(2.5rem, 4.3vw, 4.8rem); }
.category-card i, .value-grid i { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 20px; background: linear-gradient(135deg, var(--coal) 0%, #2a2f34 48%, var(--red) 100%); color: #fff; font-style: normal; font-size: 2.45rem; margin-bottom: 20px; box-shadow: 0 18px 36px rgba(18,21,23,.2); border: 1px solid rgba(255,255,255,.35); }
.process-grid b { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 20px; background: #fff; color: var(--red); box-shadow: 0 18px 36px rgba(0,0,0,.24); font-size: 2.1rem; }
.flow-list article::before { content: "◆"; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--coal); color: #fff; font-size: 1.2rem; }
.animated-cards article { transition: transform .22s ease, box-shadow .22s ease; }
.animated-cards article:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(18,21,23,.12); }
.process-grid article, .flow-list article { transition: transform .22s ease; }
.process-grid article:hover, .flow-list article:hover { transform: translateY(-6px); }
.product-strip { overflow-x: auto; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); grid-template-columns: none; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.product-strip .product-card { scroll-snap-align: start; min-width: 260px; }
.filter-scroll { max-height: none; overflow-y: visible; padding-right: 0; scrollbar-width: thin; }
.filter-scroll.many { max-height: 520px; overflow-y: auto; padding-right: 8px; }
.filter-scroll::-webkit-scrollbar { width: 7px; }
.filter-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 999px; }
.cta-image { background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.84)), url('/assets/arolab-operations.png') center / cover no-repeat; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.18); }
.admin-editor { display: grid; grid-template-columns: 220px 360px 1fr; gap: 18px; align-items: start; }
.editor-list a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 650; }
.editor-list a.is-active { color: var(--red); }
.editor-preview > div { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.editor-preview iframe { width: 100%; height: 720px; border: 1px solid var(--line); background: #fff; }
.editor-note { color: var(--muted); font-size: .9rem; margin: 14px 0 0; }
.admin-filters { display: grid; grid-template-columns: 1fr 190px 190px auto; gap: 10px; margin-bottom: 18px; }
.admin-filters input, .admin-filters select { border: 1px solid var(--line); padding: 12px; min-width: 0; }
.admin-product-list { display: grid; gap: 10px; }
.admin-product-row { display: grid; grid-template-columns: 74px minmax(230px, 1.4fr) 110px 120px 120px 105px 150px 110px; gap: 10px; align-items: center; border: 1px solid var(--line); padding: 10px; background: #fff; }
.admin-product-row img { width: 72px; height: 72px; object-fit: contain; background: var(--soft); border: 1px solid var(--line); }
.admin-product-row strong { display: block; font-size: .9rem; line-height: 1.25; }
.admin-product-row small, .admin-product-row a { display: block; color: var(--muted); font-size: .78rem; margin-top: 5px; }
.admin-product-row input, .admin-product-row select { width: 100%; border: 1px solid var(--line); padding: 9px; min-width: 0; }
.btn.ghost-dark { background: var(--coal); color: #fff; box-shadow: none; }
.btn.ghost-light {
  background: #fff;
  color: var(--coal);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost-light::before {
  content: "×";
  margin-right: 10px;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
}
@keyframes rise { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1100px) {
  .header-main { grid-template-columns: auto auto; gap: 16px; padding: 18px 0; }
  .brand, .nav { justify-content: center; }
  .menu-toggle { display: block; justify-self: end; }
  .nav { display: none; grid-column: 1 / -1; width: 100%; justify-content: start; background: #fff; padding: 12px 0; border-top: 1px solid var(--line); }
  .nav.is-open { display: grid; gap: 8px; }
  .nav > a, .nav-drop > a { padding: 10px 0; }
  .drop-menu { position: static; transform: none; width: 100%; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; display: none; }
  .nav-drop:hover .drop-menu { display: grid; transform: none; }
  .quote-pill { justify-self: center; }
  .split, .catalog-layout, .product-detail, .footer-grid, .admin-shell, .contact-panel, .process-grid, .admin-two, .admin-editor, .admin-filters, .admin-product-row { grid-template-columns: 1fr; }
  .product-grid, .value-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .filters { position: static; }
}
@media (max-width: 700px) {
  .topbar { overflow: hidden; display: block; }
  .topbar-inner { width: max-content; min-height: 36px; display: flex; justify-content: start; padding: 0; animation: topMarquee 18s linear infinite; }
  .topbar-inner a { white-space: nowrap; padding-right: 28px; font-size: .78rem; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header-main { min-height: 74px; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 8px 0; }
  .brand { justify-content: flex-start; }
  .brand img { width: 142px; height: 62px; object-position: left center; }
  .menu-toggle { display: block; min-height: 42px; width: 46px; padding: 0; border-color: #d9dde2; border-radius: 6px; }
  .nav { flex-wrap: wrap; gap: 16px; }
  .drop-menu { left: 0; transform: translateY(8px); width: min(88vw, 340px); }
  .nav-drop:hover .drop-menu { transform: translateY(0); }
  .quote-pill { display: none; }
  .header-search { padding: 0 0 12px; }
  .search { grid-template-columns: 1fr 82px; }
  .search input { padding: 13px 12px; font-size: .9rem; }
  .search button { padding: 0 10px; font-size: .86rem; }
  .hero-slider { height: auto; min-height: 620px; }
  .page-hero-slider, .page-hero-slider .hero-slide { min-height: 360px; }
  .hero-slide::before { background: linear-gradient(180deg, rgba(10,12,14,.93), rgba(10,12,14,.58)), var(--hero-image) center / cover no-repeat; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .stats-grid, .product-grid, .value-grid, .insight-grid { grid-template-columns: 1fr; }
  .image-composition { grid-template-columns: 1fr; }
  .image-composition img:nth-child(2) { margin-bottom: 0; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .contact-page img { height: 320px; }
  .float-wa { width: 62px; height: 62px; right: 16px; bottom: 16px; display: grid !important; opacity: 1 !important; visibility: visible !important; z-index: 999; }
  .float-wa img { width: 40px; height: 40px; }
  .editor-preview iframe { height: 520px; }
}

/* Final counter, submenu and admin filter refinements */
.stats-editor {
  display: grid;
  gap: 14px;
}
.stats-edit-row {
  display: grid;
  grid-template-columns: 140px 110px minmax(220px, 1fr);
  gap: 12px;
  align-items: end;
}
.stats-edit-row label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.stats-edit-row input {
  border: 1px solid var(--line);
  padding: 12px;
  min-width: 0;
}
.admin-filters {
  grid-template-columns: minmax(170px, 1fr) repeat(6, minmax(126px, 150px)) auto auto;
}
.admin-news-filters {
  grid-template-columns: minmax(220px, 1fr) 190px auto auto;
}

@media (max-width: 900px) {
  .drop-item:hover .sub-drop,
  .sub-drop {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--red);
    margin-left: 12px;
    padding-left: 8px;
  }
  .stats-edit-row,
  .admin-filters,
  .admin-news-filters {
    grid-template-columns: 1fr;
  }
}
@keyframes topMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 900px) {
  .topbar { overflow: hidden; display: block; }
  .topbar-inner { width: max-content; min-height: 36px; display: flex; justify-content: flex-start; gap: 0; padding: 0; animation: topMarquee 18s linear infinite; }
  .topbar-inner a { white-space: nowrap; padding-right: 32px; font-size: .78rem; }
  .header-main { min-height: 76px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 8px 0; }
  .brand { justify-content: flex-start; }
  .brand img { width: 150px; height: 64px; object-position: left center; }
  .menu-toggle { display: block; justify-self: end; min-height: 42px; width: 46px; padding: 0; border-color: #d9dde2; border-radius: 6px; }
  .quote-pill { display: none; }
  .nav { display: none; grid-column: 1 / -1; width: 100%; justify-content: start; background: #fff; padding: 12px 0; border-top: 1px solid var(--line); }
  .nav.is-open { display: grid; gap: 8px; }
  .nav > a, .nav-drop > a { padding: 10px 0; }
  .drop-menu { position: static; transform: none; width: 100%; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; display: none; }
  .nav-drop:hover .drop-menu { display: grid; transform: none; }
  .header-search { padding: 0 0 12px; }
  .search { grid-template-columns: 1fr 82px; }
  .search input { padding: 13px 12px; font-size: .9rem; }
  .search button { padding: 0 10px; font-size: .86rem; }
  .float-wa { width: 62px; height: 62px; right: 16px; bottom: 16px; display: grid !important; opacity: 1 !important; visibility: visible !important; z-index: 999; }
  .float-wa img { width: 40px; height: 40px; }
}

/* Admin comfort pass */
@media (min-width: 901px) {
  .admin-shell {
    grid-template-columns: 178px minmax(0, 1fr);
  }
  .admin-side {
    padding: 22px 16px;
  }
  .admin-side img,
  .admin-side-head img {
    width: 138px;
    max-height: 82px;
    margin: 0 0 24px;
  }
  .admin-nav a {
    padding: 9px 0;
    font-size: .82rem;
    line-height: 1.25;
  }
  .admin-main {
    min-width: 0;
    padding: 28px 26px;
  }
  .admin-main h1 {
    font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  }
  .panel {
    padding: 22px;
  }
  .admin-filters {
    display: grid;
    grid-template-columns: minmax(180px, 1.25fr) repeat(4, minmax(116px, .8fr)) minmax(132px, .85fr) minmax(118px, .75fr) 94px 124px;
    gap: 10px;
    align-items: stretch;
  }
  .admin-filters input,
  .admin-filters select,
  .filter-date-field {
    min-height: 50px;
    font-size: .8rem;
    padding-left: 10px;
    padding-right: 10px;
  }
  .admin-filters .btn {
    width: 100%;
    min-width: 0;
    padding: 8px 9px;
    font-size: .63rem;
    white-space: normal;
    overflow: visible;
  }
  .admin-filters .btn::before,
  .admin-filters .btn::after {
    display: none;
  }
  .bulk-sheet {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .bulk-sheet table {
    min-width: 0;
    table-layout: fixed;
  }
  .bulk-sheet th,
  .bulk-sheet td {
    min-width: 0;
    padding: 7px 8px;
    font-size: .72rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .bulk-sheet th:nth-child(1) { width: 18%; }
  .bulk-sheet th:nth-child(2) { width: 13%; }
  .bulk-sheet th:nth-child(3) { width: 13%; }
  .bulk-sheet th:nth-child(4) { width: 10%; }
  .bulk-sheet th:nth-child(5) { width: 10%; }
  .bulk-sheet th:nth-child(6) { width: 10%; }
  .bulk-sheet th:nth-child(7) { width: 13%; }
  .bulk-sheet th:nth-child(8) { width: 13%; }
  .admin-product-row {
    grid-template-columns: 22px 58px minmax(190px, 1fr) minmax(72px, .55fr) minmax(92px, .65fr) minmax(92px, .65fr) minmax(92px, .65fr) 86px minmax(116px, .8fr) minmax(104px, .72fr) 82px 78px;
    gap: 8px;
    padding: 9px;
  }
  .admin-thumb,
  .admin-product-row img {
    width: 58px;
    height: 58px;
  }
  .admin-product-row strong {
    font-size: .76rem;
    line-height: 1.18;
  }
  .admin-product-row small,
  .admin-product-row a {
    font-size: .66rem;
    margin-top: 3px;
  }
  .admin-product-row input,
  .admin-product-row select {
    padding: 8px 7px;
    font-size: .72rem;
  }
  .quick-file {
    gap: 5px;
  }
  .quick-file b {
    font-size: .67rem;
  }
  .quick-file input {
    min-height: 42px;
    font-size: .64rem;
  }
  .quick-file input::file-selector-button,
  .file-field input::file-selector-button {
    max-width: 100%;
    min-height: 38px;
    padding: 8px 9px;
    font-size: .62rem;
  }
  .file-name {
    font-size: .62rem;
  }
  .admin-product-row .mini {
    width: 100%;
    min-height: 58px;
    padding: 8px 6px;
    font-size: .6rem;
    line-height: 1.05;
    white-space: normal;
  }
  .bulk-delete-bar .btn {
    min-width: 260px;
  }
}

/* Industrial AroLab refresh */
:root {
  --ink: #111315;
  --coal: #070809;
  --red: #c91524;
  --red-dark: #930f18;
  --line: #e5e5e5;
  --soft: #f3f4f5;
  --muted: #61686f;
  --shadow: 0 22px 56px rgba(7, 8, 9, .12);
  --font: "Rubik", "Segoe UI", Arial, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
}
body { font-family: var(--font); font-size: 16px; color: var(--ink); }
h1, h2, .hero-content h1, .page-hero-slider h1 { font-family: var(--display); text-transform: uppercase; font-weight: 800; letter-spacing: .01em; }
h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: .01em; font-weight: 700; }
.wrap { width: min(calc(100% - 56px), 1320px); }
.topbar { background: var(--coal); border-bottom: 1px solid rgba(255,255,255,.1); }
.topbar-inner { min-height: 46px; font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; }
.top-icon { color: var(--red); font-size: 1.05rem; }
.site-header { top: 0; background: #fff; box-shadow: 0 10px 36px rgba(0,0,0,.08); border-bottom: 0; }
.header-main { min-height: 106px; grid-template-columns: 250px 1fr 230px; gap: 28px; }
.brand { height: 106px; background: var(--coal); padding: 14px 24px; position: relative; }
.brand::after { content: ""; position: absolute; right: -28px; top: 0; border-top: 106px solid var(--coal); border-right: 28px solid transparent; }
.brand img { width: 178px; height: 78px; object-fit: contain; object-position: left center; position: relative; z-index: 1; }
.nav { justify-content: flex-end; gap: 30px; font-size: .84rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.nav > a, .nav-drop > a { padding: 38px 0; }
.nav > a::after, .nav-drop > a::after { bottom: 29px; height: 3px; }
.drop-menu { border: 0; border-top: 4px solid var(--red); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.quote-pill, .btn { border-radius: 0; min-height: 56px; text-transform: uppercase; letter-spacing: .03em; font-size: .88rem; box-shadow: none; position: relative; overflow: hidden; }
.quote-pill::after, .btn::after { content: " >"; margin-left: 12px; font-weight: 800; }
.header-search { background: #f5f5f5; padding: 14px 0; border-top: 1px solid #eee; }
.search, .catalog-search { border: 0; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.search input, .catalog-search input { min-height: 58px; }
.search button, .catalog-search button { background: var(--red); text-transform: uppercase; letter-spacing: .04em; }
.hero-slider { min-height: 690px; height: min(760px, calc(100vh - 98px)); }
.hero-slide::before { background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.64) 42%, rgba(0,0,0,.2) 100%), var(--hero-image) center / cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(201,21,36,.26) 0 18%, transparent 18%); mix-blend-mode: normal; }
.hero-content { padding: 96px 0; }
.eyebrow { font-family: var(--font); color: #fff; background: var(--red); padding: 10px 16px; font-size: .74rem; letter-spacing: .08em; }
.eyebrow::before { display: none; }
.section-head .eyebrow { margin-bottom: 18px; }
.hero-content h1 { max-width: 780px; margin: 26px 0 20px; font-size: clamp(4rem, 6.4vw, 7.6rem); line-height: .91; }
.hero-content p { max-width: 650px; font-size: 1.04rem; line-height: 1.82; }
.hero-actions { gap: 0; }
.hero-actions .btn + .btn { margin-left: 10px; }
.hero-dots { left: auto; right: 44px; bottom: 42px; transform: none; }
.hero-dots button { width: 52px; height: 5px; }
.stats-band { background: var(--red); }
.stats-grid article { min-height: 138px; border-right: 1px solid rgba(255,255,255,.2); }
.stats-grid strong { font-family: var(--display); font-size: 3.45rem; font-weight: 800; }
.stats-grid span { color: rgba(255,255,255,.84); text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; }
.section { padding: 104px 0; }
.soft { background: #f4f4f4; }
.section-head h2, .split h2, .process-grid h2 { font-size: clamp(2.8rem, 4.6vw, 5.2rem); line-height: .96; }
.text-link { color: var(--red); text-transform: uppercase; font-weight: 700; font-size: .86rem; letter-spacing: .05em; }
.image-composition { gap: 0; }
.image-composition img { border: 0; box-shadow: none; min-height: 430px; filter: saturate(.92) contrast(1.04); }
.image-composition img:nth-child(2) { border: 12px solid #fff; min-height: 270px; transform: translate(-44px, 34px); padding: 0; object-fit: cover; }
.category-card { width: 310px; min-height: 190px; border: 0; box-shadow: none; border-bottom: 4px solid var(--red); padding: 30px; }
.category-card:hover { background: var(--coal); color: #fff; }
.category-card i, .value-grid i { border-radius: 0; width: 76px; height: 76px; background: var(--red); font-size: 2.1rem; box-shadow: none; display: flex; align-items: center; justify-content: center; position: relative; }
.category-card span { font-family: var(--display); font-size: 1.38rem; text-transform: uppercase; line-height: 1.05; }
.value-grid article, .insight, .product-card { border: 0; box-shadow: 0 16px 44px rgba(0,0,0,.08); }
.value-grid article { border-top: 4px solid var(--red); }
.product-card { border-bottom: 3px solid transparent; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: 0 24px 60px rgba(0,0,0,.13); }
.product-card img { aspect-ratio: 1.18; background: #f0f1f2; padding: 28px; }
.product-card > div { min-height: 270px; padding: 24px; }
.product-card span { font-size: .68rem; letter-spacing: .06em; }
.product-card h3 { font-family: var(--font); text-transform: none; font-size: 1.02rem; line-height: 1.35; font-weight: 600; }
.mini { border: 1px solid #d8d8d8; border-radius: 0; text-transform: uppercase; font-size: .72rem; letter-spacing: .04em; }
.mini.dark { background: var(--red); border-color: var(--red); }
.process { background: var(--coal); position: relative; }
.process::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(201,21,36,.18), transparent 35%); pointer-events: none; }
.process-grid { position: relative; }
.process-grid article { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); border-bottom: 4px solid var(--red); }
.process-grid b { border-radius: 0; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; position: relative; }
.flow-list article { border-left: 0; border-top: 4px solid var(--red); background: #fff; box-shadow: 0 14px 36px rgba(0,0,0,.06); }
.contact-panel { border: 0; background: #fff; box-shadow: 0 18px 60px rgba(0,0,0,.1); border-left: 6px solid var(--red); }
.wa-form input, .wa-form textarea, .filter-form select { border: 1px solid #ddd; border-radius: 0; min-height: 56px; }
.page-hero-slider { min-height: 460px; }
.page-hero-slider .hero-slide { min-height: 460px; }
.hero-content.compact h1 { font-size: clamp(3.6rem, 6vw, 6.8rem); line-height: .92; }
.catalog-section { background: #fff; }
.catalog-layout { grid-template-columns: 320px 1fr; gap: 38px; }
.filters { top: 176px; border: 0; padding: 28px; box-shadow: 0 18px 46px rgba(0,0,0,.08); border-top: 5px solid var(--red); }
.filters-head { display: none; }
.filters h3 { font-family: var(--display); font-size: 1.75rem; margin: 18px 0 12px; }
.filters a { color: #30363b; font-size: .86rem; text-transform: uppercase; letter-spacing: .02em; padding: 12px 0; }
.filter-form button { background: var(--red); text-transform: uppercase; letter-spacing: .05em; min-height: 56px; }
.filter-open { display: none; }
.footer { background: #050607; }
.footer-grid { padding: 86px 0; }
.footer h3 { font-size: 1.7rem; }
.footer-logo { width: 250px; }
.float-wa { width: 66px; height: 66px; box-shadow: 0 18px 40px rgba(37,211,102,.35); }
.category-card i, .value-grid i, .process-grid b { font-size: 0; }
.category-card i::before, .value-grid i::before, .process-grid b::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 2.15rem;
  line-height: 1;
  transform: none;
}
.value-grid article {
  text-align: center;
}
.value-grid article i {
  margin-left: auto;
  margin-right: auto;
}
.category-card:nth-child(8n+1) i::before { content: "\25A6"; }
.category-card:nth-child(8n+2) i::before { content: "\25B0"; }
.category-card:nth-child(8n+3) i::before { content: "\25C6"; }
.category-card:nth-child(8n+4) i::before { content: "\25CE"; }
.category-card:nth-child(8n+5) i::before { content: "\2692"; }
.category-card:nth-child(8n+6) i::before { content: "\2699"; }
.category-card:nth-child(8n+7) i::before { content: "\25D2"; }
.category-card:nth-child(8n+8) i::before { content: "\25CC"; }
.value-grid article:nth-child(1) i::before { content: "\21C4"; }
.value-grid article:nth-child(2) i::before { content: "\25C8"; }
.value-grid article:nth-child(3) i::before { content: "\2302"; }
.value-grid article:nth-child(4) i::before { content: "\2713"; }
.process-grid article:nth-of-type(1) b::before { content: "\2315"; }
.process-grid article:nth-of-type(2) b::before { content: "\2713"; }
.process-grid article:nth-of-type(3) b::before { content: "\2197"; }

@media (max-width: 1100px) {
  .header-main { min-height: 84px; grid-template-columns: 1fr auto; padding: 0; }
  .brand { height: 84px; width: max-content; padding: 10px 18px; }
  .brand::after { border-top-width: 84px; }
  .brand img { width: 150px; height: 62px; }
  .menu-toggle { background: var(--coal); color: #fff; border: 0; border-radius: 0; font-size: 1.4rem; }
  .nav { display: none; grid-column: 1 / -1; padding: 16px 0 22px; justify-content: start; gap: 0; }
  .nav.is-open { display: grid; }
  .nav > a, .nav-drop > a { padding: 14px 0; border-bottom: 1px solid #eee; }
  .quote-pill { display: none; }
  .header-search { padding: 12px 0; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 auto 0 0; z-index: 150; width: min(88vw, 380px); overflow-y: auto; transform: translateX(-105%); transition: transform .28s ease; border-top: 0; border-right: 4px solid var(--red); }
  body.filters-open::before { content: ""; position: fixed; inset: 0; z-index: 140; background: rgba(0,0,0,.52); }
  body.filters-open .filters { transform: translateX(0); }
  .filters-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
  .filters-head strong { font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
  .filter-close { width: 42px; height: 42px; border: 0; background: var(--coal); color: #fff; font-size: 1.4rem; }
  .filter-open { display: grid; width: 100%; margin-bottom: 20px; border: 0; background: var(--coal); color: #fff; padding: 16px 18px; text-align: left; border-left: 5px solid var(--red); }
  .filter-open span { font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; line-height: 1; }
  .filter-open b { font-size: .78rem; color: rgba(255,255,255,.72); font-weight: 500; margin-top: 4px; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 28px), 1320px); }
  .topbar-inner { min-height: 38px; }
  .site-header { position: sticky; }
  .header-main { min-height: 76px; }
  .brand { height: 76px; padding: 9px 14px; }
  .brand::after { border-top-width: 76px; right: -22px; border-right-width: 22px; }
  .brand img { width: 132px; height: 58px; }
  .menu-toggle { width: 48px; height: 48px; }
  .search { grid-template-columns: 1fr 78px; }
  .search input, .catalog-search input { min-height: 50px; }
  .hero-slider { min-height: 610px; }
  .hero-content { padding: 78px 0; }
  .hero-content h1 { font-size: clamp(3.35rem, 17vw, 4.9rem); line-height: .9; }
  .hero-content p { font-size: .96rem; line-height: 1.7; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn + .btn { margin-left: 0; margin-top: 10px; }
  .section { padding: 72px 0; }
  .stats-grid article { min-height: 112px; padding: 22px; }
  .stats-grid strong { font-size: 3rem; }
  .section-head h2, .split h2, .process-grid h2 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .image-composition img { min-height: 300px; }
  .image-composition img:nth-child(2) { transform: none; border: 0; min-height: 220px; }
  .product-card > div { min-height: auto; }
  .product-grid { gap: 18px; }
  .catalog-search { grid-template-columns: 1fr; }
  .catalog-search button { min-height: 50px; }
  .filters { width: min(92vw, 380px); padding: 24px; }
  .filter-scroll.many { max-height: none; }
  .product-detail { padding-top: 34px; gap: 28px; }
  .detail-media { padding: 22px; }
  .detail-info h1 { font-size: clamp(2.2rem, 12vw, 3.8rem); }
  .float-wa { width: 62px; height: 62px; right: 16px; bottom: 16px; }
}

/* Requested refinements */
.site-header { background: var(--coal); color: #fff; }
.header-main { grid-template-columns: 290px 1fr 220px; min-height: 124px; }
.brand { background: transparent; height: auto; padding: 0; }
.brand::after { display: none; }
.brand img { width: 245px; height: 108px; object-fit: contain; object-position: left center; }
.nav { justify-content: center; color: #fff; }
.nav > a, .nav-drop > a { color: #fff; }
.drop-menu { background: #fff; color: var(--ink); }
.quote-pill { background: var(--red); color: #fff; }
.header-search { background: var(--coal); border-top: 1px solid rgba(255,255,255,.12); padding: 0 0 22px; }
.search { max-width: 1160px; box-shadow: none; }
.search input { background: #fff; min-height: 62px; }
.search button { min-width: 160px; }
.category-section + .section:not(.home-products-section) { display: none; }
.home-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-strip { grid-auto-flow: initial; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; }
.filter-scroll { max-height: 300px; overflow-y: scroll; padding-right: 14px; scrollbar-width: auto; scrollbar-color: #7a7d82 #f0f0f0; }
.filter-scroll.many { max-height: 300px; }
.filter-scroll::-webkit-scrollbar { width: 11px; }
.filter-scroll::-webkit-scrollbar-track { background: #f0f0f0; }
.filter-scroll::-webkit-scrollbar-thumb { background: #7a7d82; border-radius: 999px; border: 2px solid #f0f0f0; }
.filters { align-self: start; }
.filter-open { position: relative; }
.filter-open::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; display: grid; place-items: center; background: var(--red); color: #fff; font-family: var(--display); font-size: 2rem; line-height: 1; }
.flow-list article { position: relative; padding-left: 86px; }
.flow-list article::before { position: absolute; left: 24px; top: 24px; content: "\2699"; width: 42px; height: 42px; border-radius: 0; background: var(--red); color: #fff; font-size: 1.35rem; }
.flow-list article:nth-child(2)::before { content: "\25CE"; }
.flow-list article:nth-child(3)::before { content: "\260E"; }
.mobile-pagination { display: none; }
.hero-slider { margin-bottom: 0; min-height: 730px; }
.stats-band { margin-top: 0; }
.stats-grid article { text-align: center; justify-items: center; }
.card-actions { align-items: stretch; }
.mini { display: inline-flex; align-items: center; justify-content: center; min-height: 64px; line-height: 1.1; }
.mini.dark { display: inline-flex; align-items: center; justify-content: center; }
.related-products { background: #fff; padding-top: 34px; }
.related-products .section-head .eyebrow { margin-bottom: 22px; }
.product-gallery {
  display: grid;
  gap: 14px;
}
.product-gallery .gallery-main {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #fff;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 10px;
}
.gallery-thumbs button {
  border: 2px solid transparent;
  background: #f4f6f8;
  padding: 6px;
  cursor: pointer;
}
.gallery-thumbs button.is-active {
  border-color: var(--red);
}
.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.product-card > a { display: grid; place-items: center; background: #f0f1f2; overflow: hidden; }
.product-card img { margin: auto; object-position: center center; }
.home-products-grid .product-card p { display: none; }
.home-products-grid .product-card > div { min-height: 210px; }
.home-products-grid .product-card h3 { min-height: 86px; }
.footer-bottom a { color: #fff; display: inline; margin: 0; font-weight: 700; }
.footer-logo { margin-left: 0; margin-right: auto; }
.share {
  width: 34px;
  height: 34px;
  font-size: 0;
  border-radius: 50%;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.share.fb { background-color: #1877f2; background-image: url('social-facebook.png'); }
.share.ig { background-color: #d62976; background-image: url('social-instagram.png'); }
.share.wa { background-color: #25d366; background-image: url('social-whatsapp.png'); }
.admin-news-form {
  max-width: 980px;
}
.admin-news-list {
  display: grid;
  gap: 14px;
}
.admin-news-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.admin-news-thumb {
  width: 150px;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: #f2f4f6;
  color: var(--muted);
  font-weight: 800;
  overflow: hidden;
}
.admin-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-news-row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.admin-news-row small {
  display: block;
  color: var(--muted);
  margin: 4px 0 8px;
}
.admin-news-row p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.45;
}
.admin-news-edit-row {
  grid-template-columns: 170px 1fr;
  align-items: start;
}
.admin-news-edit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.admin-news-edit label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: var(--ink);
}
.admin-news-edit input,
.admin-news-edit select,
.admin-news-edit textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
  background: #fff;
}
.admin-news-edit textarea {
  resize: vertical;
}
.admin-news-edit label:nth-child(4),
.admin-news-edit .file-field,
.admin-news-actions {
  grid-column: 1 / -1;
}
.admin-news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.admin-news-filters {
  grid-template-columns: minmax(220px, 1fr) 190px auto;
}
.admin-news-compact {
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.admin-news-info {
  min-width: 0;
}
.admin-news-compact .admin-news-thumb {
  width: 190px;
}
.admin-news-compact .admin-news-actions {
  grid-column: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  min-width: 330px;
}
.admin-news-compact .view-web,
.admin-news-compact .mini {
  width: auto;
  min-width: 118px;
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}
.admin-news-compact .view-web {
  color: var(--ink);
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
}
.admin-news-row strong {
  font-family: var(--body);
  font-size: .98rem;
  line-height: 1.25;
  text-transform: none;
  font-weight: 700;
}
.admin-news-summary {
  margin: 0;
  font-weight: 400;
}
.admin-news-actions form {
  margin: 0;
}
.admin-news-edit label {
  font-weight: 600;
  font-size: .9rem;
}
.admin-news-edit input,
.admin-news-edit select,
.admin-news-edit textarea {
  font-weight: 400;
}

@media (min-width: 1101px) {
  .filters {
    max-height: calc(100vh - 198px);
    overflow-y: auto;
    padding-right: 18px;
    scrollbar-width: auto;
    scrollbar-color: #7a7d82 #f0f0f0;
  }
  .filters::-webkit-scrollbar { width: 11px; }
  .filters::-webkit-scrollbar-track { background: #f0f0f0; }
  .filters::-webkit-scrollbar-thumb { background: #7a7d82; border-radius: 999px; border: 2px solid #f0f0f0; }
  .filter-scroll,
  .filter-scroll.many {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 1100px) {
  .site-header { background: var(--coal); }
  .header-main { grid-template-columns: 1fr auto; min-height: 92px; }
  .brand { height: auto; width: auto; padding: 0; }
  .brand img { width: 180px; height: 78px; }
  .menu-toggle { background: #fff; color: var(--coal); }
  .nav { background: var(--coal); color: #fff; }
  .nav > a, .nav-drop > a { border-bottom-color: rgba(255,255,255,.14); }
  .filter-open { border-left: 0; border-top: 4px solid var(--red); min-height: 74px; padding-right: 70px; box-shadow: 0 16px 40px rgba(0,0,0,.16); }
  .filter-open span { font-size: 1.9rem; }
  .filter-open b { font-size: .86rem; }
  .admin-shell { grid-template-columns: 220px 1fr; }
}

@media (max-width: 700px) {
  .header-main { min-height: 96px; padding: 8px 0; }
  .brand img { width: 212px; height: 92px; }
  .header-search { padding-bottom: 14px; }
  .search { grid-template-columns: 1fr 78px; }
  .search button { min-width: 0; }
  .hero-slider { min-height: 790px; }
  .hero-content { padding: 84px 0 150px; max-width: 100%; overflow: hidden; }
  .hero-content h1 { max-width: 100%; font-size: clamp(2.95rem, 14.4vw, 4.1rem); line-height: .92; overflow-wrap: anywhere; }
  .hero-content p { max-width: 100%; }
  .hero-actions { margin-bottom: 26px; }
  .stats-grid article { text-align: center; justify-items: center; }
  .process-grid > div, .process-grid article { text-align: center; justify-items: center; }
  .process-grid b { margin-left: auto; margin-right: auto; }
  .catalog-layout .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .catalog-layout .product-card img { padding: 14px; aspect-ratio: 1; }
  .catalog-layout .product-card > div { padding: 14px; }
  .catalog-layout .product-card span { font-size: .58rem; }
  .catalog-layout .product-card h3 { min-height: 58px; font-size: .82rem; line-height: 1.28; }
  .catalog-layout .product-card p { display: none; }
  .catalog-layout .card-actions { display: grid; gap: 7px; }
  .catalog-layout .mini { padding: 9px 6px; font-size: .65rem; }
  .catalog-layout .product-card.is-mobile-hidden { display: none; }
  .mobile-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; justify-content: center; }
  .mobile-pagination button { width: 42px; height: 42px; border: 1px solid #ddd; background: #fff; color: var(--ink); font-weight: 700; }
  .mobile-pagination button.is-active { background: var(--red); color: #fff; border-color: var(--red); }
  .home-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-products-grid .product-card > div { min-height: 178px; padding: 13px; }
  .home-products-grid .product-card h3 { min-height: 82px; font-size: .86rem; line-height: 1.25; }
  .home-products-grid .product-card img { padding: 14px; aspect-ratio: 1; }
  .home-products-grid .card-actions { display: grid; gap: 7px; }
  .home-products-grid .mini { min-height: 42px; padding: 8px 6px; font-size: .64rem; }
  .admin-shell { display: block; }
  .admin-side { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 14px; overflow-x: auto; padding: 14px; }
  .admin-side img { width: 120px; margin: 0 8px 0 0; background: transparent; padding: 0; }
  .admin-side a { white-space: nowrap; padding: 10px 0; }
  .admin-main { padding: 18px 14px; }
  .admin-product-row { grid-template-columns: 64px 1fr; }
  .admin-news-row { grid-template-columns: 1fr; }
  .admin-news-thumb { width: 100%; }
  .admin-news-panel,
  #news-list {
    padding: 18px 14px;
  }
  .admin-news-form {
    max-width: none;
  }
  .admin-news-edit-row {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 14px;
  }
  .admin-news-thumb {
    width: 100% !important;
    aspect-ratio: 16 / 10;
  }
  .admin-news-edit {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .admin-news-edit label,
  .admin-news-edit label:nth-child(4),
  .admin-news-edit .file-field,
  .admin-news-actions {
    grid-column: 1 / -1;
  }
  .admin-news-edit textarea {
    min-height: 92px;
  }
  .admin-news-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .admin-news-actions .btn,
  .admin-news-actions .mini,
  .admin-news-actions .view-web {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-grid > div:first-child { text-align: left; }
  .footer-logo { margin-left: 0; margin-right: auto; }
}

/* Final product tools */
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 8px 0 22px; }
.product-actions .btn { min-width: 190px; justify-content: center; }
.brochure-btn { background: #fff; color: var(--coal); border-color: #d9dde1; }
.brochure-btn::before { content: "PDF"; margin-right: 10px; color: var(--red); font-weight: 800; }
.share {
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 0;
  overflow: hidden;
  border-radius: 50%;
  background-image: none !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.share.fb { background-color: #1877f2; }
.share.ig { background-color: #d62976; }
.share.wa { background-color: #25d366; }
.share img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 50%; }
.back-top {
  position: fixed;
  right: 31px;
  bottom: 104px;
  z-index: 91;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--coal);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease, background .22s ease;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--red); }
@media (min-width: 1101px) {
  .admin-product-row { grid-template-columns: 74px minmax(220px, 1.35fr) 100px 115px 115px 95px 132px 132px 108px; }
}
@media (max-width: 700px) {
  .back-top { right: 20px; bottom: 90px; width: 50px; height: 50px; font-size: 1.25rem; }
  .product-actions { display: grid; gap: 10px; }
.product-actions .btn { width: 100%; }
}

/* Header and floating refinements */
@media (min-width: 1101px) {
  .header-main {
    grid-template-columns: 330px minmax(420px, 1fr) 210px 220px;
    min-height: 136px;
    gap: 22px;
  }
  .brand img {
    width: 285px;
    height: 126px;
  }
  .nav {
    gap: 24px;
  }
  .header-search {
    display: none;
  }
  .nav-search {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
    width: 210px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
  }
  .nav-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 14px;
    background: transparent;
    color: #fff;
    font-size: .86rem;
  }
  .nav-search input::placeholder {
    color: rgba(255,255,255,.65);
  }
  .nav-search button {
    height: 100%;
    border: 0;
    background: var(--red);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }
  .value-grid article {
    text-align: center;
  }
  .value-grid i {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1100px) {
  .nav-search {
    display: none;
  }
}
.back-top {
  background: linear-gradient(145deg, #050607 0%, #191d20 100%);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.back-top::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(200,21,36,.34);
  opacity: .95;
}
.back-top::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-top: 2px solid rgba(255,255,255,.18);
  border-radius: inherit;
  pointer-events: none;
}
.back-top:hover {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  transform: translateY(-3px);
}
.back-top.is-visible:hover {
  transform: translateY(-3px);
}
.nav-search { display: none; }
@media (min-width: 1101px) {
  .nav-search { display: grid; }
  .header-search { display: none; }
}

/* Admin panel refinements */
.admin-side img {
  width: 230px;
  max-height: 140px;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 34px;
}
.admin-side-head {
  display: block;
}
.admin-menu-toggle {
  display: none;
}
.admin-nav a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,.76);
  font-weight: 550;
}
.admin-product-panel {
  max-width: 980px;
}
.compact-product-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.compact-product-form > .field,
.compact-product-form > .admin-two,
.compact-product-form > .admin-actions {
  margin-bottom: 0;
}
.compact-product-form > .field:first-of-type,
.compact-product-form > .field:nth-of-type(2),
.compact-product-form > .field:nth-of-type(5),
.compact-product-form > .field:nth-of-type(6),
.compact-product-form > .admin-actions {
  grid-column: 1 / -1;
}
.compact-product-form textarea {
  min-height: 72px;
}
.compact-product-form textarea[name="description"] {
  min-height: 120px;
}
.file-field input[type="file"],
.quick-file input[type="file"] {
  border: 1px dashed #cfd5db;
  background: #fafafa;
  cursor: pointer;
}
.bulk-panel p {
  max-width: 1040px;
  color: var(--muted);
}
.bulk-sheet {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 16px;
  max-height: 360px;
}
.bulk-sheet table {
  min-width: 1180px;
  width: 100%;
  border-collapse: collapse;
}
.bulk-sheet th,
.bulk-sheet td {
  border: 1px solid #e0e4e8;
  padding: 9px 10px;
  min-width: 130px;
  height: 38px;
  vertical-align: top;
}
.bulk-sheet th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--coal);
  color: #fff;
  text-transform: uppercase;
  font-size: .72rem;
}
.bulk-sheet td:focus {
  outline: 2px solid var(--red);
  background: #fff7f8;
}
.bulk-actions,
.bulk-images-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}
.import-excel-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.import-excel-btn input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.bulk-images-form .field {
  min-width: min(420px, 100%);
  margin: 0;
}
.admin-filters {
  grid-template-columns: minmax(170px, 1fr) 150px 150px 150px 142px 135px auto auto;
}
.admin-filters .btn {
  min-height: 48px;
  padding: 9px 12px;
  font-size: .68rem;
  line-height: 1.05;
  text-align: center;
}
.admin-filters .btn::after {
  margin-left: 7px;
}
.admin-filters input,
.admin-filters select {
  font-size: .86rem;
}
.filter-date-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 10px;
  min-height: 48px;
}
.filter-date-field span {
  font-size: .72rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
}
.filter-date-field input {
  border: 0 !important;
  padding: 0 !important;
  min-width: 0;
}
.admin-thumb {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
  font-weight: 700;
}
.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  background: transparent;
}
.admin-thumb span {
  padding: 6px;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: .66rem;
  line-height: 1.15;
}
.admin-product-row .edit-full {
  color: var(--red);
  font-weight: 800;
}
.admin-product-row .view-web {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quick-file {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  min-width: 0;
}
.quick-file b {
  color: var(--ink);
  font-size: .72rem;
}
.quick-file input {
  width: 100%;
  max-width: none;
  min-height: 42px;
  font-size: .72rem;
  padding: 0;
  color: var(--muted);
  border: 1px dashed #cfd5db;
  background: #fafafa;
}
.quick-file input::file-selector-button,
.file-field input::file-selector-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  min-height: 40px;
  padding: 10px 12px;
  cursor: pointer;
  margin-right: 8px;
}
.file-name {
  display: block;
  max-width: 100%;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.current-media {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.current-media span {
  grid-column: 1 / -1;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .72rem;
}
.current-media img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}
.current-media b {
  overflow-wrap: anywhere;
}
.current-media.muted span {
  color: var(--muted);
}
.upload-status {
  align-self: center;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.bulk-delete-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 18px;
}
.bulk-delete-bar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.row-check {
  width: 18px;
  height: 18px;
  align-self: center;
}
.mini.danger {
  border-color: var(--red);
  background: #fff;
  color: var(--red);
}
.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.admin-pagination a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.admin-pagination a.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.admin-list-up {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 45;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coal);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  border: 2px solid rgba(255,255,255,.8);
  transition: transform .18s ease, background .18s ease;
}
.admin-list-up:hover {
  background: var(--red);
  transform: translateY(-3px);
}
.trash-panel {
  margin-bottom: 24px;
}
.trash-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.trash-head p {
  color: var(--muted);
  margin: 4px 0 0;
}
.trash-list {
  display: grid;
  gap: 12px;
}
.trash-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.trash-row strong,
.trash-row small {
  display: block;
}
.trash-row strong {
  font-weight: 750;
  line-height: 1.25;
}
.trash-row small {
  color: var(--muted);
  margin-top: 3px;
}
.trash-actions {
  margin: 0;
}
@media (min-width: 1101px) {
  .admin-product-row {
    grid-template-columns: 24px 64px minmax(180px, 1fr) 86px 100px 100px 86px 118px 104px 88px 76px;
    gap: 8px;
    padding: 8px;
  }
  .admin-product-list { overflow-x: hidden; }
  .admin-thumb { width: 64px; height: 64px; }
  .admin-product-row strong { font-size: .82rem; }
  .admin-product-row small, .admin-product-row a { font-size: .7rem; margin-top: 3px; }
  .admin-product-row input, .admin-product-row select { padding: 8px; font-size: .78rem; }
  .mini { min-height: 48px; padding: 8px 9px; font-size: .68rem; }
}
@media (max-width: 700px) {
  .admin-side img {
    width: 170px;
    max-height: 86px;
  }
  .admin-product-panel {
    max-width: none;
  }
  .compact-product-form {
    grid-template-columns: 1fr;
  }
  .admin-filters {
    grid-template-columns: 1fr;
  }
  .filter-date-field {
    grid-template-columns: 64px 1fr;
    min-height: 56px;
  }
  .admin-product-row {
    grid-template-columns: 72px 1fr;
  }
  .admin-product-row input,
  .admin-product-row select,
  .admin-product-row .quick-file,
  .admin-product-row button {
    grid-column: 1 / -1;
  }
  .admin-product-row .quick-file input {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    font-size: .78rem;
  }
  .admin-product-row .quick-file input::file-selector-button {
    min-height: 50px;
    padding: 12px 16px;
    font-size: .78rem;
  }
  .admin-product-row .file-name {
    font-size: .78rem;
  }
  .bulk-actions,
  .bulk-images-form {
    display: grid;
  }
  .admin-list-up {
    right: 18px;
    bottom: 86px;
    width: 48px;
    height: 48px;
  }
  .trash-head,
  .trash-row {
    grid-template-columns: 1fr;
  }
  .trash-head {
    display: grid;
  }
  .trash-actions .mini,
  .trash-head .btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .admin-side {
    position: sticky;
    top: 0;
    z-index: 60;
    display: block;
    overflow: visible;
    padding: 14px;
  }
  .admin-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .admin-side-head img {
    width: 168px;
    max-height: 78px;
    margin: 0;
  }
  .admin-menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--coal);
    font-size: 1.55rem;
    cursor: pointer;
  }
  .admin-nav {
    display: none;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .admin-nav.is-open {
    display: block;
  }
  .admin-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    white-space: normal;
  }
  .admin-news-compact,
  .admin-news-edit-row {
    grid-template-columns: 1fr !important;
  }
  .admin-news-compact .admin-news-thumb {
    width: 100%;
  }
  .admin-news-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .admin-news-compact .admin-news-actions {
    grid-column: auto;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .admin-news-compact .view-web,
  .admin-news-compact .mini {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .nav-search { display: none !important; }
  .header-search { display: block; }
}

@media (max-width: 700px) {
  .related-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .related-products .product-card img {
    padding: 14px;
    aspect-ratio: 1;
  }
  .related-products .product-card > div {
    min-height: 178px;
    padding: 13px;
  }
  .related-products .product-card span {
    font-size: .58rem;
  }
  .related-products .product-card h3 {
    min-height: 82px;
    font-size: .86rem;
    line-height: 1.25;
  }
  .related-products .product-card p {
    display: none;
  }
  .related-products .card-actions {
    display: grid;
    gap: 7px;
  }
  .related-products .mini {
    min-height: 42px;
    padding: 8px 6px;
    font-size: .64rem;
  }
}

/* Catalog card correction */
@media (min-width: 701px) {
  .catalog-layout .product-card {
    grid-template-rows: auto 1fr;
    min-height: 0;
  }
  .catalog-layout .product-card > a {
    min-height: 224px;
    max-height: 224px;
  }
  .catalog-layout .product-card img {
    width: 100%;
    height: 224px;
    aspect-ratio: auto;
    padding: 24px;
  }
  .catalog-layout .product-card > div {
    min-height: 230px;
    padding: 22px 22px 24px;
    align-content: start;
  }
  .catalog-layout .product-card h3 {
    min-height: 74px;
    margin-bottom: 16px;
  }
  .catalog-layout .product-card p {
    display: none;
  }
  .catalog-layout .card-actions {
    margin-top: auto;
  }
}

/* Final admin usability overrides */
.admin-body { overflow-x: hidden; }
.mobile-photo-link,
.mobile-photo-modal { display: none; }
.admin-flash {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 5px solid var(--red);
  background: #fff5f6;
  color: var(--ink);
  font-weight: 800;
}

@media (min-width: 1101px) {
  .admin-main { overflow-x: hidden; }
  .admin-product-list { overflow-x: hidden; }
  .admin-product-row {
    grid-template-columns: 24px 58px minmax(150px, 1fr) 72px 84px 84px 78px 136px 130px 82px 70px;
    gap: 8px;
    padding: 8px;
  }
  .admin-thumb { width: 58px; height: 58px; }
  .admin-product-row strong { font-size: .78rem; }
  .admin-product-row small,
  .admin-product-row a { font-size: .7rem; margin-top: 3px; }
  .admin-product-row input,
  .admin-product-row select { padding: 7px; font-size: .74rem; }
  .quick-file input { max-width: 100%; min-height: 38px; font-size: .62rem; }
  .quick-file input::file-selector-button { min-height: 36px; padding: 8px 9px; font-size: .62rem; }
  .file-name { max-width: 100%; font-size: .64rem; }
  .admin-product-row .mini { min-height: 46px; padding: 7px 8px; font-size: .64rem; }
  .hero-slider { min-height: 820px; height: auto; }
  .hero-content { padding-bottom: 178px; }
  .hero-actions { margin-bottom: 42px; }
}

@media (max-width: 700px) {
  .mobile-photo-link {
    display: inline-flex;
    background: var(--red);
    color: #fff !important;
    padding: 12px 14px;
    border-radius: 0;
  }
  .mobile-photo-modal.is-open {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: end center;
    padding: 18px 12px;
    background: rgba(0,0,0,.68);
    overflow-y: auto;
  }
  .mobile-photo-card {
    width: min(100%, 430px);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    background: #fff;
    padding: 24px 18px;
    border-top: 6px solid var(--red);
    box-shadow: 0 28px 80px rgba(0,0,0,.32);
  }
  .mobile-photo-card h2 {
    font-size: 2.4rem;
    line-height: .95;
    margin: 10px 0;
  }
  .mobile-photo-card p {
    color: var(--muted);
    margin-bottom: 18px;
  }
  .mobile-photo-close {
    float: right;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--coal);
    color: #fff;
    font-size: 1.7rem;
  }
  .mobile-photo-form { display: grid; gap: 12px; }
  .camera-field {
    padding: 16px;
    border: 2px dashed var(--red);
    background: #fff7f8;
  }
  .camera-field::before {
    content: "Abrir cámara";
    display: block;
    color: var(--red);
    font-family: var(--display);
    font-size: 1.45rem;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .hero-slider { min-height: 850px; }
  .hero-content { padding-bottom: 178px; }
}

@media (max-width: 1100px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  body.mobile-menu-open .topbar {
    display: none;
  }
  body.mobile-menu-open .site-header {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(500px, 100vw);
    overflow-y: auto;
    background: #fff;
    color: var(--ink);
    box-shadow: 22px 0 60px rgba(0,0,0,.18);
    z-index: 120;
  }
  body.mobile-menu-open .header-main {
    width: calc(100% - 48px);
    min-height: 120px;
    margin: 0 auto;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  body.mobile-menu-open .brand {
    background: transparent;
    height: auto;
    padding: 0;
  }
  body.mobile-menu-open .brand::after {
    display: none;
  }
  body.mobile-menu-open .brand img {
    width: 174px;
    height: 78px;
    object-fit: contain;
    object-position: left center;
  }
  body.mobile-menu-open .menu-toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-size: 2.1rem;
    line-height: 1;
  }
  .nav.is-open {
    display: grid;
    width: calc(100% - 48px);
    margin: 30px auto 0;
    padding: 0 0 28px;
    gap: 0;
    justify-items: start;
    align-items: start;
    text-align: left;
    background: #fff;
    color: var(--ink);
    border: 0;
  }
  .nav.is-open > a,
  .nav.is-open .nav-drop,
  .nav.is-open .nav-drop > a {
    width: 100%;
    justify-self: stretch;
    text-align: left;
    color: var(--ink);
    border-bottom: 1px solid #d9d9d9;
    padding: 20px 0;
    font-family: var(--body);
    font-size: 1.55rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
  }
  .nav.is-open > a::after,
  .nav.is-open .nav-drop > a::after {
    display: none;
  }
  .nav.is-open .drop-menu {
    display: none !important;
  }
  body.mobile-menu-open .nav-search,
  body.mobile-menu-open .quote-pill,
  body.mobile-menu-open .header-search {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .camera-field::before {
    content: "Abrir cámara";
  }
}

/* Mobile menu final drawer - overrides old mobile header */
@media (max-width: 700px) {
  .camera-field::before { content: "Abrir c\00E1 mara" !important; }
}
@media (max-width: 1100px) {
  .site-header.menu-open,
  .site-header:has(.nav.is-open) {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    width: min(500px, 100vw) !important;
    height: 100vh !important;
    overflow-y: auto !important;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: 22px 0 60px rgba(0,0,0,.18) !important;
    z-index: 600 !important;
    border: 0 !important;
  }
  .site-header.menu-open .header-main,
  .site-header:has(.nav.is-open) .header-main {
    width: calc(100% - 48px) !important;
    min-height: 120px !important;
    margin: 0 auto !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #e1e1e1 !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .site-header.menu-open .brand,
  .site-header:has(.nav.is-open) .brand {
    background: transparent !important;
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
  }
  .site-header.menu-open .brand::after,
  .site-header:has(.nav.is-open) .brand::after { display: none !important; }
  .site-header.menu-open .brand img,
  .site-header:has(.nav.is-open) .brand img {
    width: 174px !important;
    height: 78px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
  .site-header.menu-open .menu-toggle,
  .site-header:has(.nav.is-open) .menu-toggle {
    width: 58px !important;
    height: 58px !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: var(--red) !important;
    color: #fff !important;
    font-size: 2.1rem !important;
    line-height: 1 !important;
  }
  .site-header.menu-open .nav,
  .site-header:has(.nav.is-open) .nav {
    display: grid !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 34px 0 0 !important;
    padding: 0 0 28px !important;
    gap: 0 !important;
    justify-items: stretch !important;
    align-items: start !important;
    text-align: left !important;
    background: #fff !important;
    color: var(--ink) !important;
    border: 0 !important;
  }
  .site-header.menu-open .nav > a,
  .site-header.menu-open .nav-drop,
  .site-header.menu-open .nav-drop > a,
  .site-header:has(.nav.is-open) .nav > a,
  .site-header:has(.nav.is-open) .nav-drop,
  .site-header:has(.nav.is-open) .nav-drop > a {
    width: 100% !important;
    color: var(--ink) !important;
    border-bottom: 1px solid #d9d9d9 !important;
    padding: 20px 0 !important;
    font-family: var(--body) !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-align: left !important;
  }
  .site-header.menu-open .nav > a::after,
  .site-header.menu-open .nav-drop > a::after,
  .site-header:has(.nav.is-open) .nav > a::after,
  .site-header:has(.nav.is-open) .nav-drop > a::after { display: none !important; }
  .site-header.menu-open .drop-menu,
  .site-header:has(.nav.is-open) .drop-menu,
  .site-header.menu-open .nav-search,
  .site-header:has(.nav.is-open) .nav-search,
  .site-header.menu-open .quote-pill,
  .site-header:has(.nav.is-open) .quote-pill,
  .site-header.menu-open .header-search,
  .site-header:has(.nav.is-open) .header-search { display: none !important; }
}

/* UHD logo final sizing */
.brand img {
  width: 315px !important;
  height: 138px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.footer-logo {
  width: 320px !important;
  max-height: 220px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
@media (max-width: 1100px) {
  .brand img {
    width: 230px !important;
    height: 102px !important;
  }
  .footer-logo {
    width: 255px !important;
    max-height: 175px !important;
  }
  .site-header.menu-open .brand img,
  .site-header:has(.nav.is-open) .brand img {
    width: 230px !important;
    height: 102px !important;
  }
}
@media (max-width: 700px) {
  .brand img {
    width: 215px !important;
    height: 96px !important;
  }
  .footer-logo {
    width: 245px !important;
    max-height: 170px !important;
  }
  .site-header.menu-open .brand img,
  .site-header:has(.nav.is-open) .brand img {
    width: 225px !important;
    height: 100px !important;
  }
}

/* Mobile drawer content */
.brand .logo-drawer,
.mobile-drawer-extra {
  display: none !important;
}
@media (max-width: 1100px) {
  .site-header.menu-open,
  .site-header:has(.nav.is-open) {
    background: #fff !important;
  }
  body.mobile-menu-open .topbar {
    display: none !important;
  }
  .site-header.menu-open .brand .logo-main,
  .site-header:has(.nav.is-open) .brand .logo-main {
    display: none !important;
  }
  .site-header.menu-open .brand .logo-drawer,
  .site-header:has(.nav.is-open) .brand .logo-drawer {
    display: block !important;
    width: 240px !important;
    height: 108px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
  .site-header.menu-open .mobile-drawer-extra,
  .site-header:has(.nav.is-open) .mobile-drawer-extra {
    display: grid !important;
    grid-column: 1 / -1 !important;
    gap: 24px !important;
    width: 100% !important;
    padding: 8px 0 34px !important;
  }
  .mobile-drawer-quote {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 62px !important;
    background: var(--red) !important;
    color: #fff !important;
    border: 1px solid var(--red) !important;
    font-family: var(--display) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .02em !important;
  }
  .mobile-drawer-social {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }
  .mobile-drawer-social a {
    width: 48px !important;
    height: 48px !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.08) !important;
  }
  .mobile-drawer-social img {
    width: 26px !important;
    height: 26px !important;
    object-fit: contain !important;
  }
}
@media (max-width: 700px) {
  .site-header.menu-open .brand .logo-drawer,
  .site-header:has(.nav.is-open) .brand .logo-drawer {
    width: 220px !important;
    height: 98px !important;
  }
  .site-header.menu-open .nav,
  .site-header:has(.nav.is-open) .nav {
    margin-top: 28px !important;
  }
}

/* Latest admin/category overrides */
.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
}
.stats-editor {
  display: grid;
  gap: 14px;
}
.stats-edit-row {
  display: grid;
  grid-template-columns: 140px 110px minmax(220px, 1fr);
  gap: 12px;
  align-items: end;
}
.stats-edit-row label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.stats-edit-row input {
  border: 1px solid var(--line);
  padding: 12px;
  min-width: 0;
}
.admin-filters {
  grid-template-columns: minmax(170px, 1fr) repeat(6, minmax(126px, 150px)) auto auto !important;
}
.admin-news-filters {
  grid-template-columns: minmax(220px, 1fr) 190px auto auto !important;
}

@media (max-width: 900px) {
  .drop-item:hover .sub-drop,
  .sub-drop {
    position: static !important;
    min-width: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-left: 2px solid var(--red) !important;
    margin-left: 12px !important;
    padding-left: 8px !important;
  }
  .stats-edit-row,
  .admin-filters,
  .admin-news-filters {
    grid-template-columns: 1fr !important;
  }
}

/* Final admin spacing fix */
@media (min-width: 901px) {
  .admin-shell {
    grid-template-columns: 176px minmax(0, 1fr) !important;
  }
  .admin-side {
    padding: 22px 15px !important;
  }
  .admin-side img,
  .admin-side-head img {
    width: 136px !important;
    max-height: 82px !important;
    margin: 0 0 22px !important;
  }
  .admin-nav a {
    padding: 9px 0 !important;
    font-size: .82rem !important;
    line-height: 1.25 !important;
  }
  .admin-main {
    min-width: 0 !important;
    padding: 28px 24px !important;
    overflow-x: hidden !important;
  }
  .admin-main h1 {
    font-size: clamp(2.4rem, 3.4vw, 4rem) !important;
  }
  .panel {
    padding: 22px !important;
  }
  .admin-filters {
    display: grid !important;
    grid-template-columns: minmax(170px, 1.25fr) repeat(4, minmax(108px, .8fr)) minmax(124px, .85fr) minmax(108px, .75fr) 92px 118px !important;
    gap: 9px !important;
    align-items: stretch !important;
  }
  .admin-filters input,
  .admin-filters select,
  .filter-date-field {
    min-height: 48px !important;
    padding: 9px 10px !important;
    font-size: .78rem !important;
  }
  .filter-date-field {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }
  .filter-date-field span {
    font-size: .62rem !important;
  }
  .admin-filters .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 8px 7px !important;
    font-size: .59rem !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow: visible !important;
  }
  .admin-filters .btn::before,
  .admin-filters .btn::after {
    display: none !important;
  }
  .bulk-sheet {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  .bulk-sheet table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
  }
  .bulk-sheet th,
  .bulk-sheet td {
    min-width: 0 !important;
    padding: 7px 8px !important;
    font-size: .7rem !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere !important;
  }
  .bulk-sheet th:nth-child(1) { width: 18% !important; }
  .bulk-sheet th:nth-child(2) { width: 13% !important; }
  .bulk-sheet th:nth-child(3) { width: 13% !important; }
  .bulk-sheet th:nth-child(4) { width: 10% !important; }
  .bulk-sheet th:nth-child(5) { width: 10% !important; }
  .bulk-sheet th:nth-child(6) { width: 10% !important; }
  .bulk-sheet th:nth-child(7) { width: 13% !important; }
  .bulk-sheet th:nth-child(8) { width: 13% !important; }
  .admin-product-list {
    overflow-x: hidden !important;
  }
  .admin-product-row {
    grid-template-columns: 22px 58px minmax(186px, 1fr) minmax(70px, .55fr) minmax(88px, .62fr) minmax(88px, .62fr) minmax(88px, .62fr) 82px minmax(112px, .78fr) minmax(102px, .7fr) 82px 76px !important;
    gap: 8px !important;
    padding: 9px !important;
    align-items: center !important;
  }
  .admin-thumb,
  .admin-product-row img {
    width: 58px !important;
    height: 58px !important;
  }
  .admin-product-row strong {
    font-size: .75rem !important;
    line-height: 1.18 !important;
  }
  .admin-product-row small,
  .admin-product-row a {
    font-size: .64rem !important;
    margin-top: 3px !important;
  }
  .admin-product-row input,
  .admin-product-row select {
    padding: 8px 7px !important;
    font-size: .71rem !important;
  }
  .quick-file {
    gap: 5px !important;
  }
  .quick-file b {
    font-size: .65rem !important;
  }
  .quick-file input {
    min-height: 40px !important;
    font-size: .62rem !important;
  }
  .quick-file input::file-selector-button,
  .file-field input::file-selector-button {
    max-width: 100% !important;
    min-height: 36px !important;
    padding: 8px 8px !important;
    font-size: .6rem !important;
  }
  .file-name {
    font-size: .61rem !important;
  }
  .admin-product-row .mini {
    width: 100% !important;
    min-height: 56px !important;
    padding: 8px 6px !important;
    font-size: .58rem !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    overflow: visible !important;
  }
  .bulk-delete-bar .btn {
    min-width: 250px !important;
  }
}

/* Category subfilter menu */
.filter-category-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.filter-category-item > .filter-category-link,
.filter-scroll > .filter-category-link {
  border-bottom: 1px solid var(--line);
}
.filter-category-item > .filter-category-link {
  border-bottom: 0 !important;
}
.filter-sub-toggle {
  border: 0;
  border-left: 1px solid var(--line);
  background: #fff;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
}
.filter-category-item:hover .filter-sub-toggle,
.filter-category-item.is-open .filter-sub-toggle {
  background: var(--red);
  color: #fff;
}
.filter-subpanel {
  position: absolute;
  left: calc(100% + 14px);
  top: 0;
  z-index: 25;
  width: min(310px, 48vw);
  display: none;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
}
.filter-category-item:hover .filter-subpanel,
.filter-category-item.is-open .filter-subpanel {
  display: grid;
}
.filter-subpanel strong {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.05rem;
  text-transform: uppercase;
}
.filter-subpanel a {
  padding: 9px 0 !important;
  border-bottom: 1px solid var(--line) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .filter-category-item {
    grid-template-columns: minmax(0, 1fr) 44px;
  }
  .filter-sub-toggle {
    min-height: 46px;
  }
  .filter-subpanel {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 0 8px;
    box-shadow: none;
    border-top-width: 3px;
    background: #f7f8f9;
  }
  .filter-category-item:hover .filter-subpanel {
    display: none;
  }
  .filter-category-item.is-open .filter-subpanel {
    display: grid;
  }
}

/* Desktop subcategory flyout fix */
@media (min-width: 901px) {
  .catalog-layout,
  .filters,
  .filter-scroll,
  .filter-scroll.many {
    overflow: visible !important;
  }
  .filter-scroll,
  .filter-scroll.many {
    max-height: none !important;
    padding-right: 0 !important;
  }
  .filters {
    z-index: 35 !important;
  }
  .filter-subpanel {
    left: calc(100% + 10px) !important;
    width: min(360px, 36vw) !important;
    z-index: 120 !important;
  }
}
