:root {
    --site-navy: #241f1d;
    --site-navy-2: #3a302b;
    --site-blue: #e36208;
    --site-accent: #f7941d;
    --site-accent-dark: #c54a00;
    --site-safety: #fbce0f;
    --site-green: #128c4b;
    --site-text: #2b2522;
    --site-muted: #6f625a;
    --site-border: #e5ddd6;
    --site-surface: #f7f3ef;
    --site-white: #fff;
    --site-radius: 18px;
    --site-shadow: 0 18px 48px rgba(36, 31, 29, .12);
    --site-orange-shadow: 0 14px 35px rgba(227, 98, 8, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--site-text);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--site-blue); }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.form-control, .form-select {
    min-height: 48px;
    border-color: var(--site-border);
    border-radius: 12px;
    box-shadow: none;
}
.form-control:focus, .form-select:focus {
    border-color: var(--site-blue);
    box-shadow: 0 0 0 .22rem rgba(227, 98, 8, .16);
}
.form-label { font-size: .88rem; font-weight: 700; }

.site-section { padding: 4rem 0; }
.section-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.section-heading h2, .home-about-copy h2, .contact-page-grid h2 {
    margin: 0;
    color: var(--site-navy);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}
.section-heading > a { color: var(--site-blue); font-weight: 750; }
.section-kicker {
    display: inline-block;
    margin-bottom: .55rem;
    color: var(--site-accent-dark);
    font-size: .77rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.site-primary-button, .site-secondary-button, .site-outline-light-button, .product-whatsapp-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .72rem 1.25rem;
    border-radius: 12px;
    font-weight: 750;
}
.site-primary-button { border-color: var(--site-blue); background: linear-gradient(135deg, var(--site-accent), var(--site-blue)); color: #fff; box-shadow: var(--site-orange-shadow); }
.site-primary-button:hover { border-color: var(--site-accent-dark); background: var(--site-accent-dark); color: #fff; transform: translateY(-1px); }
.site-secondary-button { border-color: var(--site-navy); background: var(--site-navy); color: #fff; }
.site-secondary-button:hover { border-color: var(--site-blue); background: var(--site-blue); color: #fff; }
.site-outline-light-button { border: 1px solid rgba(255,255,255,.8); color: #fff; }
.site-outline-light-button:hover { background: #fff; color: var(--site-navy); }
.product-whatsapp-button { border-color: var(--site-green); background: var(--site-green); color: #fff; }
.product-whatsapp-button:hover { border-color: #0d713c; background: #0d713c; color: #fff; }

/* Header */
.site-header { position: relative; z-index: 1020; background: #fff; }
.site-topbar { display: none; border-bottom: 4px solid transparent; border-image: repeating-linear-gradient(135deg, var(--site-safety) 0 14px, #171311 14px 28px) 4; background: var(--site-navy); color: rgba(255,255,255,.83); font-size: .78rem; }
.site-topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-topbar-links { display: flex; gap: 1.25rem; }
.site-topbar a:hover { color: #fff; }
.site-mainbar { border-bottom: 1px solid var(--site-border); background: linear-gradient(180deg, #fff 0%, #fffaf6 100%); }
.site-mainbar-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .8rem;
}
.site-brand { min-width: 0; display: flex; align-items: center; gap: .7rem; }
.site-brand img { width: auto; max-width: 176px; height: 58px; object-fit: contain; object-position: left center; }
.site-brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--site-navy); color: #fff; font-weight: 900; }
.site-brand-name { max-width: 180px; overflow: hidden; color: var(--site-navy); font-weight: 850; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.site-header-actions { display: flex; align-items: center; gap: .7rem; }
.header-contact-link { display: none; }
.site-menu-button { width: 46px; height: 46px; border: 1px solid #f2b37f; border-radius: 12px; background: #fff7f0; color: var(--site-blue); font-size: 1.25rem; }
.predictive-search { position: relative; grid-column: 1 / -1; padding-bottom: .8rem; }
.predictive-search form { display: flex; }
.predictive-search .form-control { border-radius: 12px 0 0 12px; }
.site-search-button { border-radius: 0 12px 12px 0; background: var(--site-blue); color: #fff; font-weight: 750; }
.site-search-button:hover { background: var(--site-accent-dark); color: #fff; }
.predictive-results {
    position: absolute;
    z-index: 1080;
    top: calc(100% - .45rem);
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--site-shadow);
}
.predictive-result { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; align-items: center; gap: .75rem; padding: .7rem; border-bottom: 1px solid #f0ebe6; }
.predictive-result:last-child { border-bottom: 0; }
.predictive-result:hover { background: var(--site-surface); }
.predictive-result img, .predictive-result-placeholder { width: 54px; height: 48px; border-radius: 9px; object-fit: cover; background: #f0ebe6; }
.predictive-result-placeholder { display: grid; place-items: center; color: var(--site-muted); font-size: .65rem; }
.predictive-result strong { display: block; color: var(--site-navy); font-size: .88rem; line-height: 1.2; }
.predictive-result small { color: var(--site-muted); }
.predictive-empty { padding: 1rem; color: var(--site-muted); text-align: center; }
.site-desktop-nav { display: none; border-bottom: 1px solid var(--site-border); background: #fff; }
.site-desktop-nav-inner { min-height: 50px; display: flex; align-items: center; gap: 2rem; }
.site-desktop-nav-inner > a, .desktop-categories > a { color: var(--site-navy); font-size: .9rem; font-weight: 750; }
.desktop-categories { position: relative; }
.desktop-category-panel { position: absolute; z-index: 1060; top: calc(100% + 16px); left: -180px; width: min(1000px, 90vw); display: none; padding: 1.25rem; border: 1px solid var(--site-border); border-radius: 16px; background: #fff; box-shadow: var(--site-shadow); }
.desktop-categories:hover .desktop-category-panel, .desktop-categories:focus-within .desktop-category-panel { display: block; }
.desktop-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.2rem; }
.desktop-category-column { min-width: 0; }
.desktop-category-root { display: block; margin-bottom: .55rem; color: var(--site-navy); font-weight: 850; }
.desktop-category-child { display: block; margin-top: .45rem; color: #4f453f; font-size: .85rem; font-weight: 700; }
.desktop-category-grandchild { display: block; padding-left: .7rem; color: var(--site-muted); font-size: .78rem; }
.desktop-category-all { display: block; margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--site-border); color: var(--site-blue); font-weight: 750; }
.site-mobile-menu .offcanvas-body { padding-top: 0; }
.mobile-primary-links { display: grid; border-bottom: 1px solid var(--site-border); }
.mobile-primary-links a { padding: .85rem 0; border-bottom: 1px solid #f0ebe6; font-weight: 750; }
.mobile-category-heading { margin: 1.2rem 0 .6rem; color: var(--site-muted); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.mobile-category-tree, .category-nav-submenu { margin: 0; padding: 0; list-style: none; }
.category-nav-item { position: relative; border-bottom: 1px solid #f0ebe6; }
.category-nav-item > a { display: block; padding: .72rem 2.5rem .72rem 0; font-size: .9rem; font-weight: 650; }
.category-nav-toggle { position: absolute; top: .45rem; right: 0; width: 34px; height: 34px; border: 0; border-radius: 8px; background: var(--site-surface); }
.category-nav-submenu { display: none; padding-left: 1rem; }
.category-nav-item.open > .category-nav-submenu { display: block; }

/* Hero and home */
.home-hero .carousel-item { position: relative; min-height: 500px; background: var(--site-navy); }
.home-hero .carousel-item > img { width: 100%; height: 500px; object-fit: cover; }
.home-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,19,17,.94) 0%, rgba(36,31,29,.72) 52%, rgba(227,98,8,.16) 100%); }
.home-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.home-hero-content h1, .home-hero-fallback h1 { max-width: 750px; margin: 0; font-size: clamp(2.2rem, 7vw, 4.6rem); line-height: .98; letter-spacing: -.055em; }
.home-hero-content p, .home-hero-fallback p { max-width: 630px; margin: 1rem 0 1.4rem; color: rgba(255,255,255,.84); font-size: 1.02rem; }
.home-hero-kicker { margin-bottom: .75rem; color: #ffc44d; font-size: .75rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.home-hero-fallback { min-height: 500px; display: flex; align-items: center; color: #fff; background: radial-gradient(circle at 85% 30%, rgba(247,148,29,.95), transparent 34%), linear-gradient(135deg, #171311, #6d2b0d); }
.category-card-grid { display: grid; gap: .85rem; }
.category-card { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 1rem; padding: 1.15rem; border: 1px solid var(--site-border); border-radius: 16px; background: #fff; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.category-card:hover { transform: translateY(-3px); border-color: #f2b37f; box-shadow: var(--site-orange-shadow); }
.category-card-number { color: var(--site-accent-dark); font-size: .72rem; font-weight: 850; }
.category-card h3 { margin: 0; color: var(--site-navy); font-size: 1.05rem; }
.category-card p { margin: .2rem 0 0; color: var(--site-muted); font-size: .78rem; }
.home-about { background: var(--site-surface); }
.home-about-grid { display: grid; gap: 2rem; }
.home-about-visual { min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; border-radius: 24px; color: #fff; background: linear-gradient(145deg, rgba(36,31,29,.18), rgba(23,19,17,.94)), radial-gradient(circle at 72% 18%, #f07d1b, transparent 42%), var(--site-navy); box-shadow: var(--site-shadow); }
.home-about-visual span { color: #ffc44d; font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.home-about-visual strong { max-width: 480px; margin-top: .5rem; font-size: 1.6rem; line-height: 1.15; }
.home-about-copy { align-self: center; }
.home-about-copy p { color: var(--site-muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--site-border); border-radius: 16px; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-3px); border-color: #f2b37f; box-shadow: var(--site-orange-shadow); }
.product-card-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #f0ebe6; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-card-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--site-muted); font-size: .75rem; }
.product-card-body { padding: .9rem; }
.product-card-brand { display: block; margin-bottom: .3rem; color: var(--site-accent-dark); font-size: .68rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.product-card h3 { min-height: 2.6em; margin: 0; color: var(--site-navy); font-size: .92rem; line-height: 1.3; }
.product-card-sku { margin-top: .4rem; color: var(--site-muted); font-size: .72rem; }
.product-card-link { display: inline-flex; gap: .3rem; margin-top: .75rem; color: var(--site-blue); font-size: .78rem; font-weight: 750; }
.brand-strip { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .7rem; }
.brand-mark { min-height: 86px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: .7rem; border: 1px solid var(--site-border); border-radius: 14px; background: #fff; text-align: center; }
.brand-mark span { color: var(--site-navy); font-size: 1rem; font-weight: 900; letter-spacing: -.02em; }
.brand-mark small { color: var(--site-muted); font-size: .68rem; }
.home-contact-section { color: #fff; background: var(--site-navy); }
.home-contact-grid { display: grid; gap: 1.5rem; }
.home-contact-copy h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; }
.home-contact-copy p { color: rgba(255,255,255,.72); }
.home-whatsapp-link { color: #9ee2bb; font-weight: 750; }
.home-contact-form-card, .contact-form-card { padding: 1.25rem; border-radius: 18px; background: #fff; color: var(--site-text); box-shadow: var(--site-shadow); }
.honeypot-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Generic page */
.page-hero { padding: 4.5rem 0; color: #fff; background: linear-gradient(135deg, var(--site-navy), var(--site-navy-2)); }
.compact-page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.3rem, 6vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.compact-page-hero p { max-width: 700px; margin: 1rem 0 0; color: rgba(255,255,255,.75); }
.about-story-grid { display: grid; gap: 1.5rem; }
.prose-content { color: var(--site-muted); font-size: 1.04rem; }
.about-principles-section { background: var(--site-surface); }
.principles-grid { display: grid; gap: 1rem; }
.principle-card { padding: 1.4rem; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(36,31,29,.08); }
.principle-card > span { color: var(--site-accent-dark); font-size: .75rem; font-weight: 850; }
.principle-card h2 { margin: .5rem 0; color: var(--site-navy); }
.principle-card p { margin: 0; color: var(--site-muted); }
.values-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; }
.value-card { display: flex; flex-direction: column; gap: .7rem; min-height: 130px; padding: 1rem; border: 1px solid var(--site-border); border-radius: 16px; }
.value-card span { color: var(--site-accent-dark); font-size: .72rem; font-weight: 850; }
.value-card strong { color: var(--site-navy); font-size: 1.05rem; }
.site-cta-band { padding: 3rem 0; color: #fff; background: var(--site-navy); }
.site-cta-band .container { display: flex; flex-direction: column; gap: 1.2rem; }
.site-cta-band h2 { margin: 0; }
.site-cta-band p { margin: .3rem 0 0; color: rgba(255,255,255,.72); }
.site-cta-band .container > div:last-child { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Breadcrumb */
.site-breadcrumbs { margin-bottom: 1rem; }
.site-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; color: var(--site-muted); font-size: .78rem; }
.site-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: #b0a299; }
.site-breadcrumbs a:hover { color: var(--site-blue); }

/* Catalog */
.catalog-page-header { padding: 2.5rem 0 2rem; background: var(--site-surface); }
.catalog-title-row { display: flex; flex-direction: column; gap: 1rem; }
.catalog-title-row h1 { margin: 0; color: var(--site-navy); font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.04em; }
.catalog-title-row p { margin: .4rem 0 0; color: var(--site-muted); }
.catalog-layout { display: grid; gap: 1.5rem; padding-top: 2rem; padding-bottom: 4rem; }
.catalog-sidebar { align-self: start; position: sticky; top: 1rem; }
.catalog-filter-panel { padding: 1rem; border: 1px solid var(--site-border); border-radius: 16px; background: #fff; }
.catalog-filter-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: .65rem; }
.catalog-filter-heading h2 { margin: 0; color: var(--site-navy); font-size: 1rem; }
.catalog-filter-heading a { color: var(--site-blue); font-size: .75rem; font-weight: 700; }
.catalog-category-tree, .catalog-tree-children { margin: 0; padding: 0; list-style: none; }
.catalog-tree-row { position: relative; display: flex; align-items: center; border-bottom: 1px solid #f0ebe6; }
.catalog-tree-row > a { flex: 1; padding: .6rem 2rem .6rem .25rem; font-size: .83rem; }
.catalog-tree-item.active > .catalog-tree-row > a { color: var(--site-blue); font-weight: 800; }
.catalog-tree-toggle { position: absolute; right: 0; width: 30px; height: 30px; border: 0; border-radius: 7px; background: transparent; color: var(--site-muted); }
.catalog-tree-children { display: none; padding-left: .7rem; }
.catalog-tree-children.show, .catalog-tree-item.open > .catalog-tree-children { display: block; }
.catalog-filter-form { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--site-border); }
.catalog-filter-group { margin-bottom: 1rem; }
.catalog-filter-group label { display: block; margin-bottom: .35rem; font-size: .8rem; font-weight: 750; }
.catalog-filter-actions { display: grid; gap: .6rem; text-align: center; }
.catalog-filter-actions a { color: var(--site-muted); font-size: .8rem; }
.catalog-search-bar { display: flex; gap: .55rem; margin-bottom: 1rem; }
.catalog-search-bar .form-control { min-width: 0; }
.catalog-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.catalog-empty-state { padding: 3rem 1rem; border: 1px dashed #d8ccc3; border-radius: 18px; background: var(--site-surface); text-align: center; }
.catalog-empty-state > span { display: block; color: #b8aaa0; font-size: 3rem; font-weight: 900; }
.catalog-empty-state h2 { color: var(--site-navy); }
.catalog-pagination { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.catalog-pagination-summary { color: var(--site-muted); font-size: .8rem; }
.catalog-pagination ul { display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; list-style: none; }
.catalog-pagination a, .catalog-pagination span { min-width: 38px; min-height: 38px; display: grid; place-items: center; padding: .3rem .6rem; border: 1px solid var(--site-border); border-radius: 9px; background: #fff; font-size: .78rem; }
.catalog-pagination li.active a { border-color: var(--site-navy); background: var(--site-navy); color: #fff; }
.catalog-pagination li.disabled span { opacity: .45; }
.catalog-filter-offcanvas { width: min(390px, 92vw) !important; }

/* Product detail */
.product-detail-page { padding-top: 1.4rem; padding-bottom: 4rem; }
.product-detail-grid { display: grid; gap: 1.5rem; }
.product-gallery { min-width: 0; }
.product-gallery .carousel-inner { overflow: hidden; border: 1px solid var(--site-border); border-radius: 20px; background: var(--site-surface); }
.product-gallery .carousel-item img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff; }
.product-gallery .carousel-control-prev-icon, .product-gallery .carousel-control-next-icon { padding: 1rem; border-radius: 999px; background-color: var(--site-navy); background-size: 55%; }
.product-gallery-thumbnails { display: flex; gap: .55rem; overflow-x: auto; padding-top: .75rem; }
.product-gallery-thumbnails button { flex: 0 0 76px; padding: .2rem; border: 2px solid transparent; border-radius: 10px; background: #fff; }
.product-gallery-thumbnails button.active { border-color: var(--site-accent); }
.product-gallery-thumbnails img { width: 100%; height: 58px; border-radius: 7px; object-fit: cover; }
.product-detail-placeholder { min-height: 360px; display: grid; place-items: center; border-radius: 20px; background: var(--site-surface); color: var(--site-muted); }
.product-summary-brand { color: var(--site-accent-dark); font-size: .78rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.product-summary h1 { margin: .4rem 0; color: var(--site-navy); font-size: clamp(2rem,5vw,3.2rem); line-height: 1.05; letter-spacing: -.045em; }
.product-summary-sku { color: var(--site-muted); }
.product-summary-categories { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.product-summary-categories a { padding: .28rem .55rem; border-radius: 999px; background: var(--site-surface); color: var(--site-blue); font-size: .72rem; font-weight: 700; }
.product-summary-description { margin-top: 1.2rem; color: var(--site-muted); }
.product-quote-card { display: grid; gap: .7rem; margin-top: 1.5rem; padding: 1.2rem; border-radius: 18px; background: var(--site-navy); color: #fff; }
.product-quote-card h2 { margin: 0; font-size: 1.25rem; }
.product-quote-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }
.product-downloads { margin-top: 1.2rem; }
.product-downloads h2 { color: var(--site-navy); font-size: 1rem; }
.product-downloads > div { display: grid; gap: .5rem; }
.product-downloads a { display: flex; justify-content: space-between; align-items: center; padding: .75rem .9rem; border: 1px solid var(--site-border); border-radius: 12px; font-size: .84rem; font-weight: 700; }
.product-downloads a span { color: #b42318; font-size: .67rem; }
.product-specifications { padding-bottom: 0; }
.specification-columns { display: grid; gap: 1rem; }
.specification-table-card { overflow: hidden; border: 1px solid var(--site-border); border-radius: 16px; }
.specification-table-card h3 { margin: 0; padding: 1rem; color: #fff; background: var(--site-navy); font-size: 1rem; }
.specification-table-card dl { margin: 0; }
.specification-table-card dl > div { display: grid; grid-template-columns: minmax(120px,.75fr) minmax(0,1.25fr); border-bottom: 1px solid #f0ebe6; }
.specification-table-card dl > div:last-child { border-bottom: 0; }
.specification-table-card dt, .specification-table-card dd { margin: 0; padding: .75rem; font-size: .82rem; }
.specification-table-card dt { background: var(--site-surface); color: #655850; }
.specification-table-card dd { color: var(--site-text); }

/* Contact */
.contact-page-grid { display: grid; gap: 1.2rem; }
.contact-information-card, .contact-form-card { padding: 1.25rem; border: 1px solid var(--site-border); border-radius: 18px; background: #fff; }
.contact-information-card { color: #fff; background: var(--site-navy); }
.contact-information-card h2 { color: #fff; }
.contact-info-item { display: grid; gap: .15rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); }
.contact-info-item small { color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; }
.contact-info-item a, .contact-info-item strong { color: #fff; font-weight: 700; }
.contact-map-section { padding: 0 0 4rem; }
.lazy-map { min-height: 380px; display: grid; place-items: center; overflow: hidden; border-radius: 20px; background: linear-gradient(135deg, #e8dfd7, #f8f5f2); }
.lazy-map iframe { width: 100%; min-height: 420px; border: 0; }
.lazy-map-button { padding: .75rem 1rem; border: 0; border-radius: 10px; background: var(--site-navy); color: #fff; font-weight: 750; }

/* Footer */
.site-footer { position: relative; color: rgba(255,255,255,.72); background: #171311; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: repeating-linear-gradient(135deg, var(--site-safety) 0 16px, #171311 16px 32px); }
.site-footer-grid { display: grid; gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; }
.site-footer h2 { color: #fff; font-size: .95rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-top: .4rem; }
.site-footer a:hover { color: #fff; }
.site-footer-brand img { max-width: 112px; height: 112px; padding: .45rem; border-radius: 18px; background: #fff; object-fit: contain; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.site-footer-brand p { max-width: 380px; margin-top: 1rem; }
.footer-contact { display: block; margin-top: .45rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.footer-socials a { padding: .35rem .55rem; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; font-size: .72rem; }
.site-footer-bottom { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.09); font-size: .76rem; }
.floating-whatsapp { position: fixed; z-index: 1040; right: 1rem; bottom: 1rem; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 999px; background: var(--site-green); color: #fff; box-shadow: 0 10px 25px rgba(18,140,75,.35); font-size: .76rem; font-weight: 900; }
.floating-whatsapp:hover { color: #fff; transform: translateY(-2px); }
.site-alert-wrap { padding-top: 1rem; }
.site-alert { margin: 0; border: 0; border-radius: 12px; }

@media (min-width: 576px) {
    .category-card-grid, .brand-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .product-grid { gap: 1rem; }
}

@media (min-width: 768px) {
    .site-topbar { display: block; }
    .site-mainbar-inner { min-height: 86px; grid-template-columns: 200px minmax(300px,1fr) auto; gap: 1.2rem; }
    .predictive-search { grid-column: auto; padding-bottom: 0; }
    .predictive-results { top: calc(100% + .45rem); }
    .header-contact-link { display: flex; flex-direction: column; line-height: 1.15; }
    .header-contact-link small { color: var(--site-muted); font-size: .68rem; }
    .header-contact-link strong { color: var(--site-navy); font-size: .82rem; }
    .home-about-grid, .home-contact-grid, .about-story-grid, .contact-page-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .home-contact-form-card, .contact-form-card, .contact-information-card { padding: 2rem; }
    .category-card-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .product-grid, .catalog-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .brand-strip { grid-template-columns: repeat(4,minmax(0,1fr)); }
    .principles-grid, .specification-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .values-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
    .site-cta-band .container { flex-direction: row; align-items: center; justify-content: space-between; }
    .catalog-title-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    .catalog-pagination { flex-direction: row; align-items: center; justify-content: space-between; }
    .product-detail-grid { grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr); align-items: start; }
    .site-footer-grid { grid-template-columns: 1.5fr repeat(3,1fr); }
}

@media (min-width: 992px) {
    .site-menu-button { display: none; }
    .site-desktop-nav { display: block; }
    .section-heading { flex-direction: row; align-items: end; justify-content: space-between; }
    .category-card-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
    .catalog-layout { grid-template-columns: 265px minmax(0,1fr); }
    .catalog-filter-toggle { display: none; }
    .catalog-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (min-width: 1200px) {
    .product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
    .catalog-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .brand-strip { grid-template-columns: repeat(6,minmax(0,1fr)); }
}

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

.footer-socials a {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    color: #fff;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
}
.footer-socials svg {
    width: 18px;
    height: 18px;
}


/* PROUP industrial brand refinements */
.site-desktop-nav-inner > a:hover,
.desktop-categories > a:hover,
.desktop-category-root:hover,
.desktop-category-child:hover,
.desktop-category-grandchild:hover { color: var(--site-blue); }
.section-heading h2::after,
.home-about-copy h2::after,
.contact-page-grid h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 5px;
    margin-top: .7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--site-blue), var(--site-safety));
}
.home-hero-kicker, .section-kicker { color: var(--site-accent); }
.category-card-number { color: var(--site-blue); }
.category-card > span:last-child, .product-card-link { color: var(--site-blue); }
.brand-mark:hover { border-color: #f2b37f; box-shadow: var(--site-orange-shadow); }
.site-cta-band, .home-contact-section {
    background: linear-gradient(135deg, #171311 0%, #2e211b 58%, #6d2b0d 100%);
}
.contact-information-card {
    background: linear-gradient(145deg, #171311, #3a302b 68%, #6d2b0d);
}
.page-hero {
    background: radial-gradient(circle at 88% 20%, rgba(247,148,29,.32), transparent 34%), linear-gradient(135deg, #171311, #3a302b 60%, #6d2b0d);
}
.site-brand { min-height: 64px; }
.site-brand img { filter: drop-shadow(0 5px 10px rgba(36,31,29,.12)); }
@media (max-width: 575.98px) {
    .site-brand img { height: 52px; max-width: 132px; }
}

/* Web public improvements: navigation, carousels and compact states */
.site-topbar-right,
.site-topbar-links,
.site-header-socials {
    display: flex;
    align-items: center;
}
.site-topbar-right { gap: 1rem; }
.site-topbar-links { gap: .9rem; }
.site-topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
}
.site-topbar-links svg,
.site-header-socials svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.site-header-socials { gap: .35rem; }
.site-header-socials a,
.mobile-social-links a {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 9px;
    color: #fff;
}
.site-header-socials a:hover { background: rgba(255,255,255,.1); }
.site-header-contact-stack { display: none; gap: .8rem; }
.mobile-contact-links { display: grid; gap: .45rem; }
.mobile-contact-links a {
    padding: .65rem .75rem;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    font-weight: 700;
}
.mobile-social-links { display: flex; gap: .45rem; margin-top: 1rem; }
.mobile-social-links a {
    border-color: var(--site-border);
    color: var(--site-navy);
}
.mobile-social-links svg { width: 17px; height: 17px; }

.desktop-categories { position: relative; padding-block: 14px; margin-block: -14px; }
.desktop-categories::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 18px;
}
.desktop-category-panel {
    top: calc(100% + 8px);
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.desktop-categories:hover .desktop-category-panel,
.desktop-categories:focus-within .desktop-category-panel,
.desktop-categories.is-open .desktop-category-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.desktop-category-panel::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 14px;
}
.desktop-category-empty {
    padding: 1rem;
    color: var(--site-muted);
    text-align: center;
}

.section-heading-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
}
.section-heading-actions > a { color: var(--site-blue); font-weight: 750; white-space: nowrap; }
.site-carousel-controls { display: flex; gap: .4rem; }
.site-carousel-controls button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background: #fff;
    color: var(--site-navy);
    font-weight: 850;
}
.site-carousel-controls button:hover { border-color: var(--site-blue); color: var(--site-blue); }
.site-horizontal-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 84%);
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #d7c8be transparent;
    padding: .2rem .1rem 1rem;
}
.site-horizontal-carousel > * { scroll-snap-align: start; }


.category-image-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 210px auto;
    border: 1px solid var(--site-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(36,31,29,.07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-image-card:hover {
    transform: translateY(-3px);
    border-color: #efb180;
    box-shadow: var(--site-orange-shadow);
}
.category-image-media { position: relative; overflow: hidden; background: var(--site-surface); }
.category-image-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.category-image-card:hover .category-image-media img { transform: scale(1.035); }
.category-image-placeholder {
    width: 100%; height: 100%; display: grid; place-items: center;
    color: rgba(255,255,255,.85); font-size: 4rem; font-weight: 900;
    background: linear-gradient(135deg, var(--site-navy), var(--site-blue));
}
.category-image-index {
    position: absolute; top: .75rem; left: .75rem;
    padding: .28rem .5rem; border-radius: 8px;
    background: rgba(23,19,17,.86); color: #fff; font-size: .72rem; font-weight: 850;
}
.category-image-content { display: grid; gap: .25rem; padding: 1rem; }
.category-image-content strong { color: var(--site-navy); font-size: 1.05rem; }
.category-image-content small { color: var(--site-muted); }
.category-image-content > span { margin-top: .35rem; color: var(--site-blue); font-size: .82rem; font-weight: 750; }

.brand-carousel-section { background: #fffaf6; }
.brand-logo-carousel { grid-auto-columns: minmax(180px, 60%); }
.brand-logo-card {
    min-height: 142px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .55rem;
    padding: 1rem;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(36,31,29,.06);
    text-align: center;
}
.brand-logo-card:hover { border-color: #efb180; box-shadow: var(--site-orange-shadow); }
.brand-logo-card img { width: 100%; max-width: 170px; height: 72px; object-fit: contain; }
.brand-logo-text {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: var(--site-navy);
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 900;
    letter-spacing: -.025em;
    text-transform: uppercase;
}
.brand-logo-card small { color: var(--site-muted); }
.site-empty-inline {
    padding: 1rem 1.2rem;
    border: 1px dashed var(--site-border);
    border-radius: 14px;
    color: var(--site-muted);
    background: var(--site-surface);
    text-align: center;
}
.catalog-empty-state {
    padding: 1.4rem 1rem;
    border-style: solid;
    border-radius: 14px;
    background: #fffaf6;
}
.catalog-empty-state > span { display: none; }
.catalog-empty-state h2 { margin: 0; font-size: 1.12rem; }
.catalog-empty-state p { margin: .35rem 0 .8rem; color: var(--site-muted); font-size: .88rem; }
.catalog-empty-state .btn { min-height: 40px; padding: .5rem .85rem; font-size: .82rem; }

.floating-whatsapp {
    width: 58px;
    height: 58px;
    border: 3px solid #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(18,140,75,.42); }

@media (min-width: 576px) {
    .site-horizontal-carousel { grid-auto-columns: minmax(260px, 47%); }
    .brand-logo-carousel { grid-auto-columns: minmax(190px, 31%); }
}
@media (min-width: 768px) {
    .site-header-contact-stack { display: flex; }
    .site-horizontal-carousel { grid-auto-columns: minmax(270px, 32%); }
    .brand-logo-carousel { grid-auto-columns: minmax(190px, 23%); }
}
@media (min-width: 1200px) {
    .site-horizontal-carousel { grid-auto-columns: minmax(270px, 24%); }
    .brand-logo-carousel { grid-auto-columns: minmax(190px, 16.666%); }
}
@media (max-width: 991.98px) {
    .site-topbar-message, .site-topbar-email { display: none; }
    .site-topbar-inner { justify-content: center; }
}
@media (max-width: 767.98px) {
    .site-topbar { display: none; }
    .section-heading-actions { width: 100%; justify-content: space-between; }
    .section-heading-actions > a { font-size: .82rem; }
}
.map-link-fallback { min-height: 220px; }

/* --------------------------------------------------------------------------
   Public storefront refinement: header, home, catalog and product detail
   -------------------------------------------------------------------------- */

/* Header: contacts stay only in the strip above the logo. */
.site-topbar {
    display: block;
    border-bottom-width: 3px;
}
.site-topbar-inner {
    min-height: 36px;
}
.site-topbar-message {
    font-size: .73rem;
    white-space: nowrap;
}
.site-mainbar-inner {
    min-height: 82px;
    grid-template-columns: auto minmax(0, 1fr) minmax(220px, 310px) auto;
    gap: 1.35rem;
}
.site-brand img {
    max-width: 142px;
    height: 64px;
}
.site-desktop-nav {
    display: none;
    border: 0;
    background: transparent;
    min-width: 0;
}
.site-desktop-nav-inner {
    min-height: 0;
    gap: 1.25rem;
    padding: 0;
}
.site-desktop-nav-inner > a,
.desktop-categories > a {
    font-size: .84rem;
    white-space: nowrap;
}
.predictive-search {
    width: 100%;
    max-width: 310px;
    grid-column: auto;
    padding-bottom: 0;
    justify-self: end;
}
.predictive-search .form-control {
    min-height: 42px;
    padding-inline: .85rem;
    font-size: .82rem;
}
.site-search-button {
    width: 43px;
    min-width: 43px;
    min-height: 42px;
    padding: 0;
    display: inline-grid;
    place-items: center;
}
.site-search-button svg {
    width: 18px;
    height: 18px;
}
.predictive-results {
    top: calc(100% + .55rem);
}
.desktop-category-panel {
    left: -230px;
}
.site-menu-button {
    grid-column: 4;
}

/* Home: taller, softer hero and cleaner section palette. */
.home-hero .carousel-item,
.home-hero-fallback {
    min-height: 440px;
}
.home-hero .carousel-item > img {
    height: 440px;
}
.home-hero .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.15s ease-in-out;
}
.home-hero .carousel-fade .carousel-item.active,
.home-hero .carousel-fade .carousel-item-next.carousel-item-start,
.home-hero .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}
.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
    width: 8%;
    opacity: .7;
    transition: opacity .25s ease;
}
.home-hero .carousel-control-prev:hover,
.home-hero .carousel-control-next:hover {
    opacity: 1;
}
.home-categories {
    background: #fff;
}
.home-categories .site-horizontal-carousel {
    scrollbar-width: none;
    padding-bottom: .25rem;
}
.home-categories .site-horizontal-carousel::-webkit-scrollbar {
    display: none;
}
.home-about {
    background: linear-gradient(180deg, #fffaf6 0%, #f8f4ef 100%);
}
.home-about-visual {
    min-height: 300px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.04), rgba(30,24,21,.78)),
        radial-gradient(circle at 76% 20%, rgba(247,148,29,.96), transparent 40%),
        #40342e;
    box-shadow: 0 16px 42px rgba(57, 42, 34, .15);
}
.home-about-copy .site-secondary-button {
    border-color: #d9660d;
    background: #fff;
    color: #b84b00;
}
.home-about-copy .site-secondary-button:hover {
    background: #fff4eb;
    color: #8f3a00;
}
.brand-carousel-section {
    background: #fff;
}
.brand-logo-card {
    min-height: 150px;
    border-color: #eee5de;
    box-shadow: 0 8px 22px rgba(54, 43, 36, .055);
}
.brand-logo-card img {
    max-width: 158px;
    height: 76px;
}
.brand-logo-placeholder {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff3e8;
    color: #d75c08;
}
.brand-logo-placeholder svg {
    width: 30px;
    height: 30px;
}
.brand-logo-placeholder + .brand-logo-text {
    min-height: 0;
    font-size: .95rem;
}
.home-products {
    background: linear-gradient(180deg, #f9f7f4 0%, #fff 100%);
}
.home-products .product-card {
    background: #fff;
}

/* Catalog header with an accessible background image and overlay. */
.catalog-page-header {
    position: relative;
    isolation: isolate;
    min-height: 235px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2.75rem 0;
    background: linear-gradient(135deg, #f8f2ec, #fff);
}
.catalog-page-header-image,
.catalog-page-header-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.catalog-page-header-image {
    z-index: -2;
    object-fit: cover;
}
.catalog-page-header-overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(25,20,18,.88) 0%, rgba(32,25,22,.72) 50%, rgba(32,25,22,.35) 100%);
}
.catalog-page-header.has-background-image .catalog-title-row h1,
.catalog-page-header.has-background-image .catalog-title-row p,
.catalog-page-header.has-background-image .site-breadcrumbs,
.catalog-page-header.has-background-image .site-breadcrumbs a {
    color: #fff;
}
.catalog-page-header.has-background-image .site-breadcrumbs li:not(:last-child)::after {
    color: rgba(255,255,255,.55);
}
.catalog-page-header.has-background-image .section-kicker {
    color: #ffc25f;
}
.catalog-title-row h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}
.catalog-filter-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .8rem;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    color: #322924;
    font-size: .8rem;
    font-weight: 750;
}
.catalog-filter-toggle svg {
    width: 17px;
    height: 17px;
}
.catalog-search-button,
.catalog-apply-button {
    min-height: 40px;
    padding: .48rem .9rem;
    border: 1px solid #d85c08;
    border-radius: 10px;
    background: #fff;
    color: #b84900;
    font-size: .8rem;
    font-weight: 750;
}
.catalog-search-button:hover,
.catalog-apply-button:hover {
    background: #fff3e8;
    color: #8f3800;
}
.catalog-filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    text-align: left;
}
.catalog-filter-actions a {
    white-space: nowrap;
}
.catalog-empty-state {
    max-width: 480px;
    margin: 2.2rem auto;
    padding: 1.2rem;
    border: 0;
    border-radius: 14px;
    background: #faf8f6;
    text-align: center;
}
.catalog-empty-state h2 {
    margin: 0;
    font-size: 1rem;
}
.catalog-empty-state p {
    margin: .3rem 0 .65rem;
    font-size: .82rem;
}
.catalog-empty-state a {
    color: #b84b00;
    font-size: .8rem;
    font-weight: 750;
}

/* Product detail: light surfaces, compact titles and clear CTAs. */
.product-detail-page {
    padding-top: 1rem;
}
.product-detail-grid {
    gap: clamp(1.5rem, 4vw, 3.5rem);
}
.product-gallery .carousel-inner {
    border: 0;
    border-radius: 0;
    background: #fff;
}
.product-gallery .carousel-item img {
    aspect-ratio: 1 / .82;
    background: #fff;
}
.product-gallery .carousel-control-prev-icon,
.product-gallery .carousel-control-next-icon {
    padding: .9rem;
    border: 1px solid rgba(41,33,29,.12);
    background-color: rgba(255,255,255,.9);
    filter: invert(1);
    box-shadow: 0 6px 18px rgba(30,24,21,.1);
}
.product-gallery-thumbnails {
    gap: .65rem;
    scrollbar-width: none;
}
.product-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}
.product-gallery-thumbnails button {
    position: relative;
    flex-basis: 78px;
    padding: .18rem;
    border: 0;
    border-radius: 10px;
    background: #fff;
    opacity: .55;
    transition: opacity .2s ease, box-shadow .2s ease, transform .2s ease;
}
.product-gallery-thumbnails button:hover {
    opacity: .85;
}
.product-gallery-thumbnails button.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #e36208, 0 8px 20px rgba(227,98,8,.16);
    transform: translateY(-1px);
}
.product-gallery-thumbnails img {
    height: 60px;
}
.product-summary h1 {
    max-width: 680px;
    margin: .45rem 0 .55rem;
    font-size: clamp(1.65rem, 3.6vw, 2.55rem);
    line-height: 1.08;
}
.product-summary-description {
    margin-top: 1rem;
    font-size: .94rem;
}
.product-downloads {
    margin-top: 1.35rem;
}
.product-downloads h2 {
    margin-bottom: .6rem;
    font-size: .88rem;
    font-weight: 800;
}
.product-downloads > div {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.product-downloads a {
    min-height: 42px;
    display: inline-flex;
    justify-content: flex-start;
    gap: .5rem;
    padding: .55rem .75rem;
    border: 0;
    border-radius: 10px;
    background: #f8f4f0;
    color: #3a302b;
    font-size: .8rem;
}
.product-downloads a:hover {
    background: #fff0e4;
    color: #a33f00;
}
.product-downloads a svg {
    width: 18px;
    height: 18px;
    color: #d65b08;
}
.product-sales-panel {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid #eee7e1;
}
.product-sales-heading > span,
.product-section-heading > span {
    color: #c75205;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.product-sales-heading h2,
.product-section-heading h2 {
    margin: .25rem 0 .8rem;
    color: #2f2824;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.2;
}
.product-sales-list {
    display: grid;
    gap: .65rem;
}
.product-sales-contact {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr) auto;
    align-items: center;
    gap: .75rem;
    padding: .75rem .85rem;
    border: 0;
    border-radius: 14px;
    background: #f0faf4;
    color: #26372d;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.product-sales-contact:hover {
    transform: translateY(-1px);
    background: #e8f7ee;
    color: #174d2d;
    box-shadow: 0 10px 24px rgba(18,140,75,.1);
}
.product-sales-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #fff;
    color: #128c4b;
}
.product-sales-icon svg {
    width: 25px;
    height: 25px;
}
.product-sales-copy {
    min-width: 0;
    display: grid;
    line-height: 1.25;
}
.product-sales-copy strong {
    color: #25352b;
    font-size: .88rem;
}
.product-sales-copy small {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .12rem;
    color: #128c4b;
    font-size: .7rem;
    font-weight: 750;
}
.product-sales-copy small i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20b75a;
    box-shadow: 0 0 0 3px rgba(32,183,90,.12);
}
.product-sales-copy > span {
    margin-top: .22rem;
    color: #5e6d63;
    font-size: .76rem;
}
.product-sales-arrow {
    color: #128c4b;
    font-size: 1.05rem;
}
.product-information-section {
    padding-top: 2.7rem;
}
.product-data-list {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
}
.product-data-list > div {
    display: grid;
    grid-template-columns: minmax(115px, .7fr) minmax(0, 1.3fr);
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid #eee8e3;
}
.product-data-list dt,
.product-data-list dd {
    margin: 0;
    font-size: .84rem;
}
.product-data-list dt {
    color: #6e625a;
    font-weight: 700;
}
.product-data-list dd {
    color: #2c2724;
}
.related-products .section-heading h2 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
}

@media (min-width: 768px) {
    .home-hero .carousel-item,
    .home-hero-fallback {
        min-height: 560px;
    }
    .home-hero .carousel-item > img {
        height: 560px;
    }
    .product-sales-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-data-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .site-desktop-nav {
        display: block;
    }
    .site-menu-button {
        display: none;
    }
    .home-hero .carousel-item,
    .home-hero-fallback {
        min-height: 650px;
    }
    .home-hero .carousel-item > img {
        height: 650px;
    }
    .home-hero-content h1,
    .home-hero-fallback h1 {
        font-size: clamp(3.2rem, 5.5vw, 5rem);
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .site-mainbar-inner {
        grid-template-columns: auto minmax(0,1fr) minmax(190px, 250px);
        gap: .9rem;
    }
    .site-mainbar-inner .site-menu-button {
        display: none;
    }
    .site-desktop-nav-inner {
        gap: .8rem;
    }
    .site-desktop-nav-inner > a,
    .desktop-categories > a {
        font-size: .78rem;
    }
}

@media (max-width: 991.98px) {
    .site-mainbar-inner {
        grid-template-columns: minmax(0,1fr) auto;
        gap: .75rem;
        padding-block: .45rem;
    }
    .site-brand {
        grid-column: 1;
    }
    .site-brand img {
        max-width: 128px;
        height: 54px;
    }
    .site-menu-button {
        grid-column: 2;
        grid-row: 1;
    }
    .predictive-search {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: none;
        justify-self: stretch;
        padding-bottom: .35rem;
    }
    .site-desktop-nav {
        display: none;
    }
    .catalog-page-header {
        min-height: 210px;
    }
}

@media (max-width: 767.98px) {
    .site-topbar {
        display: block;
        overflow: hidden;
    }
    .site-topbar-inner {
        min-height: 34px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .site-topbar-inner::-webkit-scrollbar {
        display: none;
    }
    .site-topbar-message {
        display: none;
    }
    .site-topbar-right {
        min-width: max-content;
        gap: .65rem;
    }
    .site-topbar-links {
        gap: .7rem;
    }
    .site-topbar-links a {
        font-size: .7rem;
    }
    .site-topbar-email {
        display: inline-flex;
    }
    .site-header-socials a {
        width: 27px;
        height: 27px;
    }
    .home-hero-content {
        justify-content: flex-end;
        padding-bottom: 3.5rem;
    }
    .home-hero-content h1,
    .home-hero-fallback h1 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }
    .home-hero-actions .btn {
        min-height: 43px;
        padding: .6rem .9rem;
        font-size: .8rem;
    }
    .catalog-page-header {
        min-height: 195px;
        padding: 2rem 0;
    }
    .catalog-title-row {
        align-items: flex-start;
    }
    .catalog-title-row h1 {
        font-size: 1.75rem;
    }
    .catalog-search-bar {
        align-items: stretch;
    }
    .catalog-search-button {
        padding-inline: .75rem;
    }
    .product-detail-grid {
        gap: 1.25rem;
    }
    .product-summary h1 {
        font-size: 1.7rem;
    }
    .product-gallery-thumbnails button {
        flex-basis: 68px;
    }
    .product-gallery-thumbnails img {
        height: 52px;
    }
    .product-downloads > div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-downloads a {
        justify-content: center;
        padding-inline: .45rem;
    }
    .product-data-list > div {
        grid-template-columns: 1fr;
        gap: .2rem;
    }
    .product-sales-contact {
        padding: .7rem;
    }
}

@media (max-width: 420px) {
    .site-topbar-email span {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .product-downloads > div {
        grid-template-columns: 1fr;
    }
}

/* Product page refinement: compact gallery, sticky media and all product data in summary. */
.desktop-categories > a[data-category-trigger] {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    line-height: 1;
}
.desktop-category-chevron {
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 1px;
    color: currentColor;
    transition: transform .2s ease;
}
.desktop-category-chevron svg {
    width: 100%;
    height: 100%;
    display: block;
}
.desktop-categories.is-open .desktop-category-chevron,
.desktop-categories:focus-within .desktop-category-chevron,
.desktop-categories:hover .desktop-category-chevron {
    transform: rotate(180deg);
}

.product-detail-grid {
    align-items: start;
    gap: clamp(1rem, 2.5vw, 2.25rem);
}
.product-gallery {
    min-width: 0;
}
.product-gallery .carousel-inner {
    margin: 0;
}
.product-gallery .carousel-item img {
    display: block;
    max-height: 590px;
}
.product-gallery-thumbnails {
    gap: .4rem;
    padding-top: .45rem;
}
.product-gallery-thumbnails button {
    flex-basis: 64px;
    border-radius: 8px;
}
.product-gallery-thumbnails img {
    height: 48px;
    border-radius: 6px;
}
.product-summary-specifications {
    margin-top: 1.35rem;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    background: #faf8f6;
}
.product-summary-specifications .product-section-heading h2 {
    margin-bottom: .55rem;
}
.product-summary-specifications .product-data-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.product-summary-specifications .product-data-list > div {
    grid-template-columns: minmax(115px, .75fr) minmax(0, 1.25fr);
    gap: .85rem;
    padding: .62rem 0;
    border-bottom: 1px solid #ece5df;
}
.product-summary-specifications .product-data-list > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.product-summary-specifications .product-data-list > div:first-child {
    padding-top: 0;
}
.product-summary-specifications .product-data-list dt,
.product-summary-specifications .product-data-list dd {
    font-size: .82rem;
}
.related-products {
    clear: both;
}

@media (min-width: 992px) {
    .product-detail-grid {
        grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
    }
    .product-gallery {
        position: sticky;
        top: 1.25rem;
        align-self: start;
    }
}

@media (max-width: 991.98px) {
    .product-gallery {
        position: static;
    }
    .product-gallery .carousel-item img {
        max-height: none;
    }
}

@media (max-width: 575.98px) {
    .product-detail-page {
        padding-top: .65rem;
    }
    .product-detail-grid {
        gap: 1rem;
    }
    .product-gallery-thumbnails {
        gap: .32rem;
        padding-top: .35rem;
    }
    .product-gallery-thumbnails button {
        flex-basis: 58px;
    }
    .product-gallery-thumbnails img {
        height: 43px;
    }
    .product-summary-specifications {
        margin-top: 1.1rem;
        padding: .85rem;
    }
    .product-summary-specifications .product-data-list > div {
        grid-template-columns: 1fr;
        gap: .18rem;
        padding: .58rem 0;
    }
}


/* Final layout refinements: footer pinned to viewport and compact product detail. */
html,
body {
    min-height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#main-content {
    width: 100%;
    min-width: 0;
    flex: 1 0 auto;
}
.site-footer {
    flex-shrink: 0;
    margin-top: auto;
}
.site-footer-grid {
    grid-template-columns: 1.45fr 1fr 1.1fr;
}

.product-summary h1 {
    max-width: 720px;
    margin: 0 0 .45rem;
    color: #2b2522;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.product-summary-sku {
    margin-bottom: .85rem;
    font-size: .82rem;
}
.product-summary-description {
    margin: 0;
    color: #625750;
    font-size: .93rem;
    line-height: 1.72;
}
.product-sales-panel {
    margin-top: 1.15rem;
    padding-top: 0;
    border-top: 0;
}
.product-summary-specifications {
    margin-top: 1.25rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
}
.product-technical-table {
    width: 100%;
    border-collapse: collapse;
}
.product-technical-row {
    display: grid;
    grid-template-columns: minmax(130px, .75fr) minmax(0, 1.25fr);
    gap: 1rem;
    padding: .65rem 0;
    border-bottom: 1px solid #eee8e3;
}
.product-technical-row:first-child {
    border-top: 1px solid #eee8e3;
}
.product-technical-label,
.product-technical-value {
    min-width: 0;
    font-size: .83rem;
}
.product-technical-label {
    color: #625750;
    font-weight: 750;
}
.product-technical-value {
    color: #2f2925;
}
.product-downloads {
    margin-top: 1.15rem;
}
.product-downloads > div {
    margin: 0;
}
.product-gallery-thumbnails {
    margin-top: 0;
}

@media (min-width: 992px) {
    .site-footer-grid {
        grid-template-columns: minmax(280px, 1.45fr) minmax(150px, .75fr) minmax(240px, 1fr);
    }
}

@media (max-width: 991.98px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .site-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }
    .site-footer-brand {
        grid-column: auto;
    }
    .product-summary h1 {
        font-size: 23px;
    }
    .product-technical-row {
        grid-template-columns: 1fr;
        gap: .18rem;
        padding: .6rem 0;
    }
}


/* 2026-07: ajustes de buscador, hero y catálogo. */
.predictive-results {
    max-height: 340px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 98, 8, .55) transparent;
}
.predictive-results::-webkit-scrollbar { width: 7px; }
.predictive-results::-webkit-scrollbar-track { background: transparent; }
.predictive-results::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(227, 98, 8, .52);
}
.predictive-result { min-height: 68px; }

.product-technical-title {
    margin: 0 0 .65rem;
    color: #2f2925;
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    font-weight: 800;
    letter-spacing: -.015em;
}

.catalog-layout-single {
    display: block;
    max-width: 1320px;
}
.catalog-layout-single .catalog-results { width: 100%; }
.catalog-filter-toggle {
    display: inline-flex !important;
    border-color: rgba(227, 98, 8, .38);
    background: #fff7f0;
    color: #a43f00;
    box-shadow: 0 4px 14px rgba(116, 49, 5, .08);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.catalog-filter-toggle:hover,
.catalog-filter-toggle:focus-visible {
    border-color: #e36208;
    background: #e36208;
    color: #fff;
    box-shadow: 0 8px 22px rgba(227, 98, 8, .24);
    transform: translateY(-1px);
}
.catalog-filter-toggle:active { transform: translateY(0); }
.catalog-filter-offcanvas .offcanvas-header {
    border-bottom: 1px solid #eee8e3;
}
.catalog-filter-panel { border: 0; box-shadow: none; }
.catalog-filter-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.catalog-filter-heading h2 { margin: .1rem 0 0; font-size: 1.2rem; }
.catalog-filter-kicker {
    color: #9a4a16;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.catalog-filter-heading > a {
    color: #a43f00;
    font-size: .78rem;
    font-weight: 750;
}

@media (min-width: 992px) {
    .home-hero .carousel-item,
    .home-hero-fallback {
        min-height: 780px;
    }
    .home-hero .carousel-item > img { height: 780px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .home-hero .carousel-item,
    .home-hero-fallback { min-height: 620px; }
    .home-hero .carousel-item > img { height: 620px; }
}

@media (max-width: 767.98px) {
    .predictive-results { max-height: 310px; }
    .catalog-title-row { align-items: flex-end; }
    .catalog-filter-toggle { flex: 0 0 auto; }
}


/* Catalog offcanvas: categories tree + filters. */
.catalog-filter-categories {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee8e3;
}
.catalog-filter-controls {
    padding-top: 1.25rem;
}
.catalog-filter-section-heading {
    margin-bottom: .75rem;
}
.catalog-filter-section-heading h2 {
    margin: .12rem 0 0;
    color: var(--site-navy);
    font-size: 1.08rem;
}
.catalog-category-navigation {
    max-height: 42vh;
    overflow-y: auto;
    padding-right: .25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 98, 8, .42) transparent;
}
.catalog-category-navigation::-webkit-scrollbar { width: 6px; }
.catalog-category-navigation::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(227, 98, 8, .42);
}
.catalog-all-products-link {
    display: block;
    margin-bottom: .35rem;
    padding: .62rem .7rem;
    border-radius: 9px;
    color: #4f453f;
    font-size: .84rem;
    font-weight: 700;
}
.catalog-all-products-link:hover,
.catalog-all-products-link.active {
    background: #fff3e8;
    color: #a43f00;
}
.catalog-filter-offcanvas .catalog-category-tree {
    border-top: 1px solid #f3eee9;
}
.catalog-filter-offcanvas .catalog-tree-row > a {
    min-width: 0;
    padding-block: .58rem;
    overflow-wrap: anywhere;
}
.catalog-filter-offcanvas .catalog-tree-toggle {
    display: grid;
    place-items: center;
    color: #8a7568;
    font-size: 1rem;
    font-weight: 700;
    transition: color .18s ease, transform .18s ease, background-color .18s ease;
}
.catalog-filter-offcanvas .catalog-tree-toggle:hover {
    background: #fff3e8;
    color: #a43f00;
}
.catalog-filter-offcanvas .catalog-tree-item.open > .catalog-tree-row .catalog-tree-toggle {
    transform: rotate(45deg);
}
.catalog-filter-heading {
    margin-bottom: .75rem;
}
.catalog-filter-form {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.catalog-filter-actions {
    align-items: center;
}
.catalog-filter-actions > a {
    color: #a43f00;
    font-weight: 700;
}
.catalog-filter-actions > a:hover {
    color: #e36208;
}

/* Catalog: compact categories and filters beside products. */
.catalog-layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    max-width: 1320px;
    padding-top: 1.25rem;
}
.catalog-layout-with-sidebar .catalog-results {
    min-width: 0;
    width: 100%;
}
.catalog-layout-with-sidebar .catalog-sidebar {
    position: static;
    align-self: start;
    min-width: 0;
}
.catalog-filter-panel-compact {
    padding: .78rem;
    border: 1px solid #e9e2dc;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(72, 45, 28, .045);
}
.catalog-filter-panel-compact .catalog-filter-categories {
    padding-bottom: .8rem;
    border-bottom: 1px solid #eee8e3;
}
.catalog-filter-panel-compact .catalog-filter-controls {
    padding-top: .8rem;
}
.catalog-filter-panel-compact .catalog-filter-section-heading,
.catalog-filter-panel-compact .catalog-filter-heading {
    margin-bottom: .5rem;
}
.catalog-filter-panel-compact .catalog-filter-section-heading h2,
.catalog-filter-panel-compact .catalog-filter-heading h2 {
    margin: 0;
    color: #2f2925;
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.catalog-filter-panel-compact .catalog-category-navigation {
    max-height: 290px;
    overflow-y: auto;
    padding-right: .15rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 98, 8, .35) transparent;
}
.catalog-filter-panel-compact .catalog-category-navigation::-webkit-scrollbar {
    width: 5px;
}
.catalog-filter-panel-compact .catalog-category-navigation::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(227, 98, 8, .35);
}
.catalog-filter-panel-compact .catalog-all-products-link {
    margin-bottom: .2rem;
    padding: .48rem .55rem;
    border-radius: 8px;
    font-size: .76rem;
}
.catalog-filter-panel-compact .catalog-category-tree {
    border-top: 1px solid #f3eee9;
}
.catalog-filter-panel-compact .catalog-tree-row > a {
    min-width: 0;
    padding: .46rem 1.75rem .46rem .12rem;
    color: #514942;
    font-size: .75rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}
.catalog-filter-panel-compact .catalog-tree-toggle {
    right: 0;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #88786d;
    font-size: .9rem;
    font-weight: 750;
    transition: color .18s ease, transform .18s ease, background-color .18s ease;
}
.catalog-filter-panel-compact .catalog-tree-toggle:hover,
.catalog-filter-panel-compact .catalog-tree-toggle:focus-visible {
    background: #fff3e8;
    color: #a43f00;
}
.catalog-filter-panel-compact .catalog-tree-item.open > .catalog-tree-row .catalog-tree-toggle {
    transform: rotate(45deg);
}
.catalog-filter-panel-compact .catalog-tree-children {
    padding-left: .55rem;
}
.catalog-filter-panel-compact .catalog-filter-form {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.catalog-filter-panel-compact .catalog-filter-group {
    margin-bottom: .65rem;
}
.catalog-filter-panel-compact .catalog-filter-group label {
    margin-bottom: .22rem;
    color: #443b35;
    font-size: .72rem;
    font-weight: 750;
}
.catalog-filter-panel-compact .form-select {
    min-height: 36px;
    padding-top: .38rem;
    padding-bottom: .38rem;
    padding-left: .62rem;
    border-radius: 8px;
    font-size: .75rem;
}
.catalog-filter-panel-compact .catalog-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .38rem;
    margin-top: .15rem;
}
.catalog-filter-panel-compact .catalog-apply-button {
    min-height: 36px;
    padding: .42rem .65rem;
    border-color: #e36208;
    border-radius: 8px;
    background: #fff;
    color: #b14604;
    font-size: .75rem;
    font-weight: 800;
}
.catalog-filter-panel-compact .catalog-apply-button:hover,
.catalog-filter-panel-compact .catalog-apply-button:focus-visible {
    border-color: #e36208;
    background: #e36208;
    color: #fff;
}
.catalog-filter-panel-compact .catalog-filter-actions > a {
    display: inline-flex;
    justify-content: center;
    padding: .25rem;
    color: #9a4a16;
    font-size: .72rem;
    font-weight: 700;
}
.catalog-filter-panel-compact .catalog-filter-actions > a:hover {
    color: #e36208;
}

@media (min-width: 992px) {
    .catalog-layout-with-sidebar {
        grid-template-columns: 224px minmax(0, 1fr);
        gap: 1.15rem;
        padding-top: 1.5rem;
    }
    .catalog-layout-with-sidebar .catalog-sidebar {
        position: sticky;
        top: 96px;
        max-height: calc(100vh - 116px);
        overflow-y: auto;
        padding-right: .15rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(227, 98, 8, .28) transparent;
    }
    .catalog-layout-with-sidebar .catalog-sidebar::-webkit-scrollbar {
        width: 5px;
    }
    .catalog-layout-with-sidebar .catalog-sidebar::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(227, 98, 8, .28);
    }
}

@media (max-width: 991.98px) {
    .catalog-filter-panel-compact .catalog-category-navigation {
        max-height: 240px;
    }
}

/* Catalog category flyout: compact first level with floating subcategory navigation. */
.catalog-filter-panel-compact,
.catalog-filter-panel-compact .catalog-filter-categories,
.catalog-filter-panel-compact .catalog-category-navigation,
.catalog-filter-panel-compact .catalog-category-tree {
    overflow: visible;
}

.catalog-filter-panel-compact .catalog-category-navigation {
    max-height: none;
    padding-right: 0;
}

.catalog-filter-panel-compact .catalog-category-tree {
    position: relative;
    margin: .25rem 0 0;
    padding: 0;
    border-top: 1px solid #f3eee9;
    list-style: none;
}

.catalog-flyout-item {
    position: relative;
    margin: 0;
    padding: 0;
}

.catalog-flyout-trigger-row {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 37px;
    border-bottom: 1px solid #f2ece7;
    border-left: 2px solid transparent;
    transition: border-color .18s ease, background-color .18s ease;
}

.catalog-flyout-trigger-link {
    flex: 1;
    min-width: 0;
    padding: .56rem 2rem .56rem .42rem;
    color: #4b433e;
    font-size: .77rem;
    font-weight: 650;
    line-height: 1.22;
    overflow-wrap: anywhere;
    transition: color .18s ease;
}

.catalog-flyout-item:hover > .catalog-flyout-trigger-row,
.catalog-flyout-item:focus-within > .catalog-flyout-trigger-row,
.catalog-flyout-item.is-open > .catalog-flyout-trigger-row,
.catalog-flyout-item.active-path > .catalog-flyout-trigger-row {
    border-left-color: #e36208;
    background: #fff5ec;
}

.catalog-flyout-item:hover > .catalog-flyout-trigger-row .catalog-flyout-trigger-link,
.catalog-flyout-item:focus-within > .catalog-flyout-trigger-row .catalog-flyout-trigger-link,
.catalog-flyout-item.is-open > .catalog-flyout-trigger-row .catalog-flyout-trigger-link,
.catalog-flyout-item.active > .catalog-flyout-trigger-row .catalog-flyout-trigger-link {
    color: #ae4300;
}

.catalog-flyout-item.active > .catalog-flyout-trigger-row .catalog-flyout-trigger-link {
    font-weight: 800;
}

.catalog-flyout-toggle {
    position: absolute;
    top: 50%;
    right: .12rem;
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #8a7a6f;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease;
}

.catalog-flyout-toggle svg {
    width: 15px;
    height: 15px;
    transition: transform .18s ease;
}

.catalog-flyout-toggle:hover,
.catalog-flyout-toggle:focus-visible {
    background: #ffe8d5;
    color: #ad4200;
    outline: none;
}

.catalog-flyout-panel {
    position: absolute;
    z-index: 80;
    top: -.65rem;
    left: calc(100% + .7rem);
    width: min(620px, calc(100vw - 310px));
    min-width: 440px;
    padding: 1rem 1.05rem 1.05rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-7px);
    border: 1px solid #eadfd5;
    border-radius: 14px;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 20px 55px rgba(55, 37, 25, .18);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.catalog-flyout-panel::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -.8rem;
    width: .8rem;
}

.catalog-flyout-item:hover > .catalog-flyout-panel,
.catalog-flyout-item:focus-within > .catalog-flyout-panel,
.catalog-flyout-item.is-open > .catalog-flyout-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.catalog-flyout-panel-header {
    margin: -.15rem 0 .8rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid #f0e8e1;
}

.catalog-flyout-panel-header a {
    color: #a63f00;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.catalog-flyout-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.35rem;
    max-height: min(500px, calc(100vh - 170px));
    overflow-y: auto;
    padding-right: .3rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 98, 8, .28) transparent;
}

.catalog-flyout-groups::-webkit-scrollbar {
    width: 5px;
}

.catalog-flyout-groups::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(227, 98, 8, .28);
}

.catalog-flyout-group {
    min-width: 0;
}

.catalog-flyout-group-title {
    display: inline-block;
    margin-bottom: .35rem;
    color: #2f2925;
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.25;
}

.catalog-flyout-group-title:hover,
.catalog-flyout-group-title.active,
.catalog-flyout-group.active-path > .catalog-flyout-group-title {
    color: #d45205;
}

.catalog-flyout-links {
    display: grid;
    gap: .12rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-flyout-links a {
    display: block;
    padding: .26rem 0;
    color: #5e554f;
    font-size: .77rem;
    line-height: 1.28;
}

.catalog-flyout-links a:hover,
.catalog-flyout-links a.active {
    color: #e36208;
}

@media (min-width: 992px) {
    .catalog-layout-with-sidebar .catalog-sidebar {
        overflow: visible;
        max-height: none;
        padding-right: 0;
    }
}

@media (max-width: 991.98px) {
    .catalog-flyout-item {
        border-bottom: 1px solid #f2ece7;
    }

    .catalog-flyout-trigger-row {
        border-bottom: 0;
    }

    .catalog-flyout-toggle svg {
        transform: rotate(90deg);
    }

    .catalog-flyout-item.is-open > .catalog-flyout-trigger-row .catalog-flyout-toggle svg,
    .catalog-flyout-item.active-path > .catalog-flyout-trigger-row .catalog-flyout-toggle svg {
        transform: rotate(-90deg);
    }

    .catalog-flyout-panel {
        position: static;
        display: none;
        width: auto;
        min-width: 0;
        margin: 0 .25rem .55rem;
        padding: .7rem .75rem;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border-radius: 10px;
        box-shadow: none;
    }

    .catalog-flyout-panel::before,
    .catalog-flyout-panel-header {
        display: none;
    }

    .catalog-flyout-item.is-open > .catalog-flyout-panel,
    .catalog-flyout-item.active-path > .catalog-flyout-panel {
        display: block;
    }

    .catalog-flyout-groups {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
        gap: .7rem;
        padding-right: 0;
    }
}

@media (max-width: 575.98px) {
    .catalog-flyout-trigger-link {
        font-size: .8rem;
    }

    .catalog-flyout-group-title {
        font-size: .82rem;
    }

    .catalog-flyout-links a {
        font-size: .76rem;
    }
}
