:root {
    --ink: #17202a;
    --muted: #64717f;
    --line: #e3e7eb;
    --steel: #2f3b46;
    --accent: #c9a34d;
    --accent-dark: #a98228;
    --surface: #f5f6f7;
    --white: #fff;
    --danger-bg: #fff0f0;
    --danger-line: #efb7b7;
    --danger-text: #842626;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(201, 163, 77, .45);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--white);
    border-bottom: 1px solid rgba(17, 24, 39, .1);
    box-shadow: 0 14px 32px rgba(17, 24, 39, .08);
}

.header-top {
    background: #17202a;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.4;
}

.header-top-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-top-inner > span {
    font-weight: 700;
}

.header-contact-links {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.header-contact-links a {
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.header-contact-links a:hover {
    color: var(--white);
}

.nav-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 196px;
    max-height: 72px;
    min-width: 0;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    min-width: 0;
    flex: 0 0 auto;
}

.main-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    color: #1f2937;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease;
}

.main-menu a:hover,
.main-menu a.active {
    color: #111820;
    background: #f4f6f8;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    transform: scaleX(1);
}

.nav-tools {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
    padding: 0;
    background: transparent;
    flex: 0 0 auto;
}

.nav-tools::before {
    display: none;
}

.nav-contact-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px !important;
    border: 1px solid #b88f32;
    border-radius: 4px;
    background: var(--accent);
    color: #111820 !important;
    font-weight: 900 !important;
    text-transform: none !important;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(169, 130, 40, .22);
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-contact-cta:hover {
    background: #d8b45e;
    border-color: #a98228;
    color: #111820 !important;
    transform: translateY(-1px);
}

.language-switcher {
    position: relative;
    z-index: 30;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid #d8dee6;
    border-radius: 4px;
    background: #fff;
    color: #1f2937;
    padding: 0 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.language-toggle:hover,
.language-switcher.open .language-toggle {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 163, 77, .14);
}

.flag {
    font-size: 18px;
    line-height: 1;
}

.language-chevron {
    display: inline-block;
    color: #3b4652;
    font-size: 18px;
    line-height: 1;
    transition: transform .18s ease;
}

.language-switcher.open .language-chevron {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    display: grid;
    gap: 4px;
    width: 182px;
    padding: 8px;
    border: 1px solid #dbe3ec;
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(17, 24, 39, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-switcher.open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu a,
.language-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 12px !important;
    border-radius: 6px;
    color: #1f2937 !important;
    font-weight: 800;
    text-transform: none !important;
}

.language-menu a.active {
    background: #eef1ff;
    color: #244fd6 !important;
}

.language-menu a:hover {
    background: #f5f7fb;
}

.language-option.disabled {
    color: #6f7b89 !important;
    cursor: not-allowed;
    opacity: .72;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #d8dee6;
    border-radius: 4px;
    background: var(--white);
    color: #17202a;
    padding: 0 14px;
    font-weight: 900;
    cursor: pointer;
}

.home-hero,
.page-hero {
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-color: #17202a;
    background-image: linear-gradient(90deg, rgba(11, 20, 28, .76), rgba(11, 20, 28, .28)), var(--hero-image);
    background-position: center;
    background-size: cover;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg,
.home-hero::before {
    z-index: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.06);
    animation: heroKenBurns 18s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-img {
    display: block;
    pointer-events: none;
}

.home-hero::before {
    display: none;
}

.home-hero::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(11, 20, 28, .76), rgba(11, 20, 28, .28)),
        linear-gradient(0deg, rgba(11, 20, 28, .22), rgba(11, 20, 28, .06));
}

.landing-intent {
    padding: 34px 0;
    background: #f8f9fa;
    border-bottom: 1px solid var(--line);
}

.landing-intent-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.landing-intent h2 {
    margin: 0;
    color: #111820;
    font-size: 32px;
    line-height: 1.2;
}

.landing-intent p {
    max-width: 780px;
    margin: 10px 0 0;
    color: #48535e;
    font-size: 17px;
}

.landing-intent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.landing-seo-detail {
    padding: 46px 0;
    background: var(--white);
}

.landing-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr);
    gap: 34px;
    align-items: start;
}

.landing-seo-detail h2 {
    margin: 0 0 18px;
    color: #111820;
    font-size: 28px;
    line-height: 1.24;
}

.landing-seo-detail ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-seo-detail li {
    position: relative;
    padding-left: 24px;
    color: #3d4852;
    font-weight: 700;
}

.landing-seo-detail li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 9px;
    height: 9px;
    background: var(--accent);
}

.landing-mini-faq {
    display: grid;
    gap: 10px;
}

.landing-mini-faq details {
    border: 1px solid var(--line);
    background: #f8f9fa;
    padding: 16px;
}

.landing-mini-faq summary {
    color: #111820;
    font-weight: 900;
    cursor: pointer;
}

.landing-mini-faq p {
    margin: 10px 0 0;
    color: var(--muted);
}

.landing-copy {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.landing-copy p {
    margin: 0;
    color: #4b5560;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-copy {
    opacity: 0;
    transform: translateY(22px);
    max-width: 620px;
    padding: 70px 0;
    animation: heroTextIn .9s ease forwards .25s;
}

.hero-copy img {
    opacity: 0;
    transform: translateY(16px) scale(.96);
    width: 250px;
    margin-bottom: 28px;
    animation: heroLogoIn .9s ease forwards .05s;
}

.hero-copy h1 {
    margin: 0 0 14px;
    font-size: 60px;
    line-height: 1.08;
}

.hero-copy p {
    margin: 0 0 30px;
    font-size: 21px;
    color: rgba(255, 255, 255, .9);
}

.hero-actions {
    opacity: 0;
    transform: translateY(14px);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: heroTextIn .8s ease forwards .5s;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.06) translate3d(-1.5%, -1%, 0);
    }

    100% {
        transform: scale(1.16) translate3d(1.5%, 1%, 0);
    }
}

@keyframes heroTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero::before,
    .hero-copy,
    .hero-copy img,
    .hero-actions {
        animation: none;
    }

    .home-hero::before {
        transform: scale(1.06);
    }

    .hero-copy,
    .hero-copy img,
    .hero-actions {
        opacity: 1;
        transform: none;
    }
}

.cta,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    background: var(--accent);
    color: #111820;
    font-weight: 800;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cta:hover,
.contact-form button:hover,
.mini-quote-form button:hover {
    background: var(--accent-dark);
}

.cta:active,
.contact-form button:active,
.mini-quote-form button:active {
    transform: translateY(1px);
}

.ghost-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .42);
    color: var(--white);
    font-weight: 800;
    transition: background-color .18s ease, border-color .18s ease;
}

.ghost-cta:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .7);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-intro,
.home-band,
.home-split,
.home-process,
.home-gallery,
.home-quality,
.home-faq {
    padding: 72px 0;
}

.home-intro {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 50px;
    align-items: start;
}

.intro-grid h2,
.section-head h2,
.split-copy h2,
.cta-panel h2 {
    margin: 0;
    color: #111820;
    font-size: 34px;
    line-height: 1.22;
}

.intro-text {
    color: #48535e;
    font-size: 17px;
}

.intro-text p:first-child {
    margin-top: 0;
}

.home-band {
    background: var(--surface);
}

.home-band.muted {
    background: #202830;
    color: var(--white);
}

.section-head {
    margin-bottom: 30px;
}

.section-head p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--muted);
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    display: grid;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 32, 42, .1);
}

.product-card img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    background: #dfe4e8;
}

.product-card span {
    display: block;
    padding: 12px 14px;
    color: #111820;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

.product-card p {
    margin: 0;
    padding: 0 14px 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-gallery {
    background: #202830;
    color: var(--white);
}

.home-gallery .section-head h2 {
    color: var(--white);
}

.home-band.muted .section-head h2 {
    color: var(--white);
}

.home-gallery .section-kicker,
.home-band.muted .section-kicker {
    color: rgba(255, 255, 255, .72);
}

.home-gallery .section-head p {
    color: rgba(255, 255, 255, .72);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #2f3b46;
    border: 1px solid rgba(255, 255, 255, .08);
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform .25s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-grid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(0deg, rgba(17, 24, 32, .82), rgba(17, 24, 32, 0));
}

.home-split {
    background: var(--white);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.split-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.check-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: #3d4852;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 10px;
    height: 10px;
    background: var(--accent);
}

.text-link {
    color: #111820;
    font-weight: 800;
    border-bottom: 2px solid var(--accent);
}

.home-quality {
    background: #f8f9fa;
}

.quality-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: start;
}

.quality-grid h2 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.22;
}

.quality-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.quality-points {
    display: grid;
    gap: 14px;
}

.quality-points div {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px;
}

.quality-points strong {
    display: block;
    color: #111820;
    font-size: 18px;
}

.quality-points span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sector-grid div {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 20px;
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
}

.home-process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-card {
    border: 1px solid var(--line);
    padding: 24px;
    background: #fafbfc;
}

.process-card span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.process-card h3 {
    margin: 10px 0 8px;
    font-size: 21px;
}

.process-card p {
    margin: 0;
    color: var(--muted);
}

.home-faq {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 42px;
    align-items: start;
}

.faq-grid h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.22;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    background: #fafbfc;
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    color: #111820;
    font-weight: 800;
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--muted);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 0;
}

.cta-panel h2 {
    max-width: 780px;
    color: var(--white);
}

.cta-panel p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .76);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quote-panel {
    grid-template-columns: minmax(0, .85fr) minmax(340px, .75fr);
    align-items: start;
}

.mini-quote-form {
    display: grid;
    gap: 12px;
}

.mini-quote-form label {
    display: grid;
    gap: 6px;
}

.mini-quote-form input,
.mini-quote-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    padding: 12px 13px;
    font: inherit;
}

.mini-quote-form .captcha-field {
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
}

.mini-quote-form .cf-turnstile {
    min-height: 65px;
}

.mini-quote-form .cf-turnstile[data-size="invisible"],
.contact-form .cf-turnstile[data-size="invisible"] {
    min-height: 0;
    height: 0;
    overflow: hidden;
}

.mini-quote-form .captcha-field input {
    margin-top: 7px;
}

.mini-quote-form input::placeholder,
.mini-quote-form textarea::placeholder {
    color: rgba(255, 255, 255, .62);
}

.mini-quote-form button {
    min-height: 46px;
    border: 0;
    background: var(--accent);
    color: #111820;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.mini-quote-form .ghost-cta {
    width: 100%;
}

.page-hero {
    min-height: 290px;
    display: flex;
    align-items: center;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    padding: 55px 0;
    font-size: 42px;
    line-height: 1.15;
}

.content-section {
    background: var(--surface);
    padding: 68px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
}

.content-layout.product-page,
.content-layout:has(.product-nav) {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
}

.page-content {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 42px;
}

.page-content:has(.catalog-hero) {
    padding: 24px;
}

.catalog-hero {
    background: var(--surface);
    color: #111820;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
    gap: 18px;
    align-items: end;
    border: 1px solid var(--line);
    padding: 18px;
    margin-bottom: 16px;
}

.catalog-hero h2 {
    max-width: 760px;
    margin: 0;
    color: #111820;
    font-size: 20px;
    line-height: 1.22;
}

.catalog-hero p {
    max-width: 680px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.catalog-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.catalog-stats div {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 9px 11px;
}

.catalog-stats strong {
    display: block;
    color: #111820;
    font-size: 16px;
    line-height: 1;
}

.catalog-stats span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.catalog-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.catalog-nav a,
.catalog-nav button {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-right: 1px solid var(--line);
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
    color: #202830;
    font-size: 12px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
}

.catalog-nav a:hover,
.catalog-nav button:hover,
.catalog-nav button.active {
    background: #202830;
    border-color: #202830;
    color: var(--white);
}

.catalog-actions,
.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.catalog-help .cta {
    background: #202830;
    color: var(--white);
}

.catalog-help .cta:hover {
    background: #2f3b46;
}

.catalog-help .cta {
    border: 1px solid rgba(255, 255, 255, .16);
}

.plain-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--line);
    color: #111820;
    font-weight: 800;
    transition: background-color .18s ease, border-color .18s ease;
}

.plain-cta:hover {
    background: #f4f0e5;
    border-color: rgba(201, 163, 77, .5);
}

.catalog-group + .catalog-group {
    margin-top: 24px;
}

.catalog-group-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 10px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--line);
}

.catalog-group-head h3 {
    margin: 0;
    color: #111820;
    font-size: 18px;
    font-weight: 800;
}

.catalog-group-head span {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.catalog-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    border: 1px solid var(--line);
    background: var(--white);
    overflow: hidden;
    min-height: 88px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.catalog-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.catalog-filter-grid .catalog-card {
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 210px;
}

.catalog-card:hover {
    border-color: #bfc7cf;
    box-shadow: 0 10px 22px rgba(23, 32, 42, .08);
}

.catalog-card-media {
    display: block;
    min-height: 100%;
}

.catalog-card img {
    width: 100%;
    height: 100%;
    min-height: 88px;
    object-fit: cover;
    background: #dfe4e8;
}

.catalog-card-body {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
    padding: 10px;
}

.catalog-grid:not(.catalog-filter-grid) .catalog-card-body {
    display: flex;
    align-items: center;
}

.catalog-filter-grid .catalog-card-body {
    padding: 16px;
}

.catalog-card span {
    color: #5d6975;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-card h4 {
    margin: 0;
    color: #111820;
    font-size: 14px;
    line-height: 1.25;
}

.catalog-card h4 a {
    color: inherit;
}

.catalog-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.catalog-card ul {
    display: grid;
    gap: 5px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.catalog-card li {
    color: #202830;
    font-size: 12px;
    font-weight: 700;
}

.catalog-card li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--accent);
    vertical-align: 2px;
}

.catalog-card.is-hidden,
.comparison-table tr.is-hidden {
    display: none;
}

.catalog-comparison {
    margin-top: 30px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    background: var(--white);
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    color: #202830;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    background: var(--surface);
    color: #111820;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table a {
    color: #111820;
    font-weight: 900;
}

.page-content:has(.products-showroom) {
    padding: 0;
    border: 0;
    background: #07111A;
}

.products-showroom {
    --boz-bg-main: #07111A;
    --boz-bg-secondary: #0D1A26;
    --boz-bg-card: #111E2A;
    --boz-bg-card-soft: #172635;
    --boz-border: #2A3A48;
    --boz-border-active: #C9A34D;
    --boz-primary: #C9A34D;
    --boz-primary-hover: #B58932;
    --boz-primary-soft: rgba(201, 163, 77, 0.14);
    --boz-text-main: #F5F7FA;
    --boz-text-muted: #B9C3CC;
    --boz-text-soft: #7F8C99;
    display: grid;
    gap: 34px;
    padding: 34px;
    background:
        radial-gradient(circle at 16% 0%, rgba(201, 163, 77, .18), transparent 32%),
        linear-gradient(180deg, var(--boz-bg-secondary), var(--boz-bg-main) 460px);
    color: var(--boz-text-main);
}

.bz-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: end;
    min-height: 430px;
    padding: 46px;
    border: 1px solid rgba(201, 163, 77, .28);
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(7, 17, 26, .96), rgba(13, 26, 38, .72)),
        url('/assets/uploads/2020/07/metal-sections.jpg') center / cover;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
    overflow: hidden;
}

.bz-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(201, 163, 77, .34);
    border-radius: 999px;
    background: var(--boz-primary-soft);
    color: var(--boz-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bz-hero h2 {
    max-width: 850px;
    margin: 0;
    color: var(--boz-text-main);
    font-size: 48px;
    line-height: 1.06;
    letter-spacing: 0;
}

.bz-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    color: var(--boz-text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.bz-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bz-btn,
.bz-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.bz-btn.primary,
.bz-card-cta {
    border: 1px solid var(--boz-primary);
    background: var(--boz-primary);
    color: #111820;
}

.bz-btn.primary:hover,
.bz-card-cta:hover {
    background: var(--boz-primary-hover);
    border-color: var(--boz-primary-hover);
    color: #111820;
    transform: translateY(-2px);
}

.bz-btn.secondary {
    border: 1px solid rgba(245, 247, 250, .22);
    background: rgba(245, 247, 250, .08);
    color: var(--boz-text-main);
}

.bz-btn.secondary:hover {
    border-color: var(--boz-primary);
    color: var(--boz-primary);
    transform: translateY(-2px);
}

.bz-stats {
    display: grid;
    gap: 12px;
}

.bz-stats div {
    padding: 18px;
    border: 1px solid rgba(245, 247, 250, .14);
    border-radius: 18px;
    background: rgba(17, 30, 42, .78);
    backdrop-filter: blur(8px);
}

.bz-stats strong {
    display: block;
    color: var(--boz-text-main);
    font-size: 28px;
    line-height: 1;
}

.bz-stats span {
    display: block;
    margin-top: 8px;
    color: var(--boz-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.bz-category-select {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bz-category-select button {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--boz-border);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--boz-bg-card-soft), var(--boz-bg-card));
    color: var(--boz-text-main);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.bz-category-select button:hover {
    transform: translateY(-5px);
    border-color: var(--boz-border-active);
    box-shadow: 0 18px 40px rgba(201, 163, 77, .14);
}

.bz-category-select span {
    display: block;
    margin-bottom: 16px;
    color: var(--boz-primary);
    font-size: 12px;
    font-weight: 900;
}

.bz-category-select strong {
    display: block;
    color: var(--boz-text-main);
    font-size: 22px;
    line-height: 1.18;
}

.bz-section {
    scroll-margin-top: 110px;
    padding: 34px 0 0;
}

.bz-section-head {
    max-width: 780px;
    margin-bottom: 22px;
}

.bz-section-head h3,
.bz-final-cta h3 {
    margin: 0;
    color: var(--boz-text-main);
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: 0;
}

.bz-section-head p,
.bz-final-cta p {
    margin: 12px 0 0;
    color: var(--boz-text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.bz-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 22px;
}

.bz-card {
    min-width: 0;
    border: 1px solid var(--boz-border);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--boz-bg-card-soft), var(--boz-bg-card));
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.bz-card:hover {
    transform: translateY(-7px);
    border-color: var(--boz-border-active);
    box-shadow: 0 24px 54px rgba(201, 163, 77, .16);
}

.bz-card-image {
    display: block;
    height: 220px;
    background: #0b1620;
    overflow: hidden;
}

.bz-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.bz-card:hover .bz-card-image img {
    transform: scale(1.04);
}

.bz-card-body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.bz-card h4 {
    margin: 0;
    color: var(--boz-text-main);
    font-size: 22px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.bz-card h4 a {
    color: inherit;
}

.bz-card p {
    min-height: 48px;
    margin: 0;
    color: var(--boz-text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.bz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bz-tags span {
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(201, 163, 77, .24);
    border-radius: 999px;
    background: var(--boz-primary-soft);
    color: var(--boz-text-main);
    font-size: 11px;
    font-weight: 800;
    white-space: normal;
}

.bz-card-cta {
    width: fit-content;
    margin-top: 2px;
}

.bz-guide,
.bz-final-cta {
    padding: 32px;
    border: 1px solid var(--boz-border);
    border-radius: 22px;
    background: var(--boz-bg-secondary);
}

.bz-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.bz-guide-grid div {
    padding: 18px;
    border: 1px solid var(--boz-border);
    border-radius: 16px;
    background: var(--boz-bg-card);
}

.bz-guide-grid strong,
.bz-guide-grid span {
    display: block;
}

.bz-guide-grid strong {
    color: var(--boz-text-main);
    font-size: 15px;
}

.bz-guide-grid span {
    margin-top: 8px;
    color: var(--boz-text-muted);
    font-size: 13px;
    line-height: 1.55;
}

.bz-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(201, 163, 77, .15), transparent 48%),
        var(--boz-bg-secondary);
}

.catalog-help {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 24px;
    background: #202830;
    color: var(--white);
}

.catalog-help h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 22px;
}

.catalog-help p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.catalog-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.product-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 26px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.product-detail-head h2 {
    margin: 0;
    font-size: 34px;
}

.product-detail-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.product-detail-head img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: #dfe4e8;
}

.product-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.product-info-strip div {
    border: 1px solid var(--line);
    background: #fafbfc;
    padding: 17px;
}

.product-info-strip strong {
    display: block;
    color: #111820;
}

.product-info-strip span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.product-body {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.product-bottom-cta {
    margin-top: 34px;
    padding: 28px;
    background: #202830;
    color: var(--white);
}

.product-bottom-cta h3 {
    margin: 0 0 8px;
    color: var(--white);
}

.product-bottom-cta p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .76);
}

.about-page {
    display: grid;
    gap: 34px;
}

.about-text {
    max-width: 980px;
}

.about-text h2 {
    margin: 10px 0 22px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.about-text p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.82;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
    gap: 42px;
    align-items: start;
}

.about-lead h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.18;
}

.about-lead p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.about-visual {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    background: #f8f9fa;
    border: 1px solid var(--line);
}

.about-visual img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.about-visual h3 {
    margin: 0 0 12px;
    font-size: 28px;
}

.about-visual p {
    color: var(--muted);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-values div {
    border: 1px solid var(--line);
    background: #fafbfc;
    padding: 22px;
}

.about-values h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.about-values p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.about-process {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 34px;
    padding: 32px;
    background: #202830;
    color: var(--white);
}

.about-process h3 {
    margin: 0;
    color: var(--white);
    font-size: 29px;
}

.about-steps {
    display: grid;
    gap: 14px;
}

.about-steps div {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    padding: 18px;
}

.about-steps span {
    color: var(--accent);
    font-weight: 900;
}

.about-steps strong {
    display: block;
    margin-top: 6px;
    color: var(--white);
}

.about-steps p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .74);
}

.about-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    background: #fafbfc;
}

.about-cta h3 {
    margin: 0 0 6px;
    font-size: 25px;
}

.about-cta p {
    margin: 0;
    color: var(--muted);
}

.about-cta > div:last-child {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-page {
    display: grid;
    gap: 34px;
}

.contact-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
    gap: 32px;
    align-items: stretch;
}

.contact-lead h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.18;
}

.contact-lead p {
    max-width: 780px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.contact-quick-card {
    display: grid;
    align-content: center;
    gap: 8px;
    background: #202830;
    color: var(--white);
    padding: 28px;
}

.contact-quick-card strong {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
}

.contact-quick-card span {
    color: rgba(255, 255, 255, .82);
}

.contact-quick-card a {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    border: 1px solid var(--line);
    background: #fafbfc;
    padding: 30px;
}

.contact-info-panel h3,
.contact-form-panel h3,
.contact-map-head h3 {
    margin: 0;
    font-size: 28px;
}

.contact-form-panel p {
    margin: 8px 0 22px;
    color: var(--muted);
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.contact-info-list div {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.contact-info-list span {
    display: block;
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-info-list strong {
    display: block;
    color: #111820;
    line-height: 1.45;
}

.contact-info-list small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-form.refined {
    max-width: none;
}

.contact-form.refined input,
.contact-form.refined textarea {
    background: var(--white);
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-map-section {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 30px;
}

.contact-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.contact-map-wrap {
    overflow: hidden;
    background: #dfe4e8;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 470px;
    border: 0;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin: 10px 0 20px;
    color: #111820;
    line-height: 1.22;
}

.page-content h2,
.page-content h3 {
    font-size: 31px;
}

.page-content .product-bottom-cta h3,
.page-content .about-process h3 {
    color: var(--white);
}

.page-content h4 {
    font-size: 25px;
}

.page-content .catalog-hero h2 {
    color: #111820;
    font-size: 24px;
    line-height: 1.25;
}

.page-content .catalog-card h4 {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.22;
}

.page-content .catalog-card span {
    font-size: 9px;
    line-height: 1.2;
}

.text-block {
    color: #3d4852;
}

.text-block p:first-child {
    margin-top: 0;
}

.content-image {
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #edf0f2;
}

.content-image img {
    width: 100%;
}

.spacer {
    height: 22px;
}

.section-rule {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 34px 0;
}

.product-nav {
    position: sticky;
    top: 110px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px;
}

.product-nav h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.product-nav a {
    display: block;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: #3c4650;
    font-weight: 700;
    font-size: 14px;
}

.product-nav a:hover,
.product-nav a.active {
    color: var(--accent);
}

.contact-form {
    display: grid;
    gap: 16px;
    max-width: 620px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #34404b;
    font-weight: 700;
}

.captcha-field {
    display: grid;
    gap: 7px;
    color: #34404b;
    font-weight: 800;
}

.cf-turnstile {
    max-width: 100%;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ccd3da;
    padding: 12px 13px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.mini-quote-form input:focus,
.mini-quote-form textarea:focus,
.captcha-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 163, 77, .13);
    outline: 0;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid,
.captcha-field input:user-invalid {
    border-color: var(--danger-line);
    box-shadow: 0 0 0 3px rgba(239, 183, 183, .22);
}

.mini-quote-form input:user-invalid,
.mini-quote-form textarea:user-invalid {
    border-color: #f2b4b4;
    box-shadow: 0 0 0 3px rgba(242, 180, 180, .2);
}

.map-wrap {
    margin-top: 26px;
}

.map-frame {
    width: 100%;
    height: 360px;
    border: 0;
}

.notice {
    margin-top: 26px;
    padding: 16px 18px;
    background: #eaf6ee;
    border: 1px solid #b9dfc5;
    color: #245b36;
    font-weight: 700;
}

.notice.error {
    background: var(--danger-bg);
    border-color: var(--danger-line);
    color: var(--danger-text);
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 66px;
    padding: 0 28px 0 18px;
    border: 2px solid rgba(35, 211, 102, .2);
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        0 0 0 14px rgba(37, 211, 102, .16),
        0 14px 30px rgba(17, 24, 32, .18);
    animation: whatsappSway 4.8s ease-in-out infinite;
    transform-origin: center bottom;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.whatsapp-bubble {
    position: fixed;
    right: 22px;
    bottom: 112px;
    z-index: 31;
    width: min(312px, calc(100vw - 44px));
    min-height: 84px;
    padding: 18px 48px 18px 20px;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    background: var(--white);
    color: #111827;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.98);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    pointer-events: none;
}

.whatsapp-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-bubble::after {
    content: "";
    position: absolute;
    right: 38px;
    bottom: -13px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-right: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
    transform: rotate(45deg);
}

.whatsapp-bubble strong {
    display: block;
    max-width: 210px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

.whatsapp-bubble-close {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #758195;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.whatsapp-bubble-close:hover {
    color: #111827;
}

.whatsapp:hover {
    background: #1fc45c;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 0 16px rgba(37, 211, 102, .2),
        0 18px 36px rgba(17, 24, 32, .22);
    animation-play-state: paused;
}

.mobile-conversion-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 32;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #111820;
    box-shadow: 0 -12px 28px rgba(17, 24, 39, .18);
}

.mobile-conversion-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 10px;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.mobile-conversion-bar a:last-child {
    border-right: 0;
}

.mobile-conversion-bar a.primary {
    background: var(--accent);
    color: #111820;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    color: #25d366;
    flex: 0 0 auto;
}

.whatsapp-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

@keyframes whatsappSway {
    0%,
    72%,
    100% {
        transform: translateY(0) rotate(0);
    }

    76% {
        transform: translateY(-2px) rotate(-2deg);
    }

    80% {
        transform: translateY(0) rotate(2deg);
    }

    84% {
        transform: translateY(-1px) rotate(-1deg);
    }

    88% {
        transform: translateY(0) rotate(0);
    }
}

.footer {
    background: #202830;
    color: rgba(255, 255, 255, .88);
    padding: 44px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.35fr) minmax(160px, .85fr) minmax(160px, .9fr) minmax(190px, .95fr);
    gap: 54px;
    align-items: start;
}

.footer img {
    width: 176px;
    margin-bottom: 12px;
}

.footer h2 {
    color: var(--white);
    margin: 0 0 13px;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 900;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 0;
    transition: color .18s ease, transform .18s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer-brand p {
    max-width: 330px;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.38;
}

.footer-brand p + p {
    font-weight: 500;
}

.footer-brand strong {
    color: var(--white);
    font-weight: 900;
}

.footer-section {
    padding-top: 4px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom {
    display: grid;
    gap: 4px;
    justify-items: center;
    margin-top: 42px;
    padding: 15px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .86);
    font-size: 10px;
    line-height: 1.35;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    display: inline;
    color: var(--white);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover {
    color: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    display: block;
    overflow-x: auto;
}

td,
th {
    border: 1px solid var(--line);
    padding: 8px;
}

@media (max-width: 1180px) {
    .container {
        width: min(100% - 28px, 1170px);
    }

    .nav-inner {
        min-height: 76px;
        gap: 16px;
    }

    .brand img {
        width: 176px;
        max-height: 64px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-actions {
        align-items: center;
        gap: 10px;
        flex: 0 1 auto;
    }

    .main-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 10px 20px 16px;
        box-shadow: 0 18px 28px rgba(17, 24, 39, .1);
        flex: none;
    }

    .main-menu.open {
        display: flex;
    }

    .main-menu a {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 0 12px;
    }

    .main-menu a::after {
        left: 12px;
        right: auto;
        width: 38px;
        bottom: 4px;
    }

    .nav-tools {
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 8px;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .nav-tools::before {
        display: none;
    }

    .nav-contact-cta {
        justify-content: center;
        min-height: 44px;
        padding: 0 16px !important;
    }

    .language-switcher {
        margin: 0;
    }

    .language-toggle {
        justify-content: center;
        min-height: 44px;
        padding: 0 13px;
    }

    .language-menu {
        position: absolute;
        width: 182px;
        margin-top: 0;
    }

    .home-hero {
        min-height: 480px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy img {
        width: 205px;
    }

    .home-intro,
    .home-band,
    .home-split,
    .home-process,
    .home-gallery,
    .home-quality,
    .home-faq {
        padding: 42px 0;
    }

    .intro-grid,
    .split-grid,
    .cta-panel,
    .quality-grid,
    .faq-grid,
    .quote-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .intro-grid h2,
    .section-head h2,
    .split-copy h2,
    .cta-panel h2,
    .quality-grid h2,
    .faq-grid h2 {
        font-size: 27px;
    }

    .gallery-grid,
    .sector-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .cta,
    .hero-actions .ghost-cta {
        width: 100%;
    }

    .product-card span {
        font-size: 14px;
    }

    .cta-panel {
        padding: 26px;
    }

    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-actions .cta,
    .cta-actions .ghost-cta {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .content-section {
        padding: 38px 0;
    }

    .content-layout,
    .content-layout.product-page,
    .content-layout:has(.product-nav) {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 24px;
    }

    .catalog-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .catalog-hero h2,
    .product-detail-head h2 {
        font-size: 27px;
    }

    .catalog-grid,
    .product-detail-head,
    .product-info-strip,
    .catalog-help,
    .about-lead,
    .about-visual,
    .about-values,
    .about-process,
    .about-cta,
    .contact-lead,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-filter-grid {
        grid-template-columns: 1fr;
    }

    .products-showroom {
        padding: 24px;
    }

    .bz-hero,
    .bz-final-cta {
        grid-template-columns: 1fr;
    }

    .bz-hero {
        min-height: 0;
        padding: 34px;
    }

    .bz-hero h2 {
        font-size: 38px;
    }

    .bz-category-select,
    .bz-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bz-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }

    .catalog-filter-grid .catalog-card {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .catalog-card img {
        min-height: 0;
        min-height: 112px;
    }

    .catalog-card-body {
        padding: 18px;
    }

    .catalog-stats {
        grid-template-columns: 1fr;
    }

    .catalog-nav {
        position: static;
        margin-top: 0;
    }

    .catalog-actions,
    .catalog-help-actions,
    .product-detail-actions,
    .about-cta > div:last-child,
    .contact-actions {
        flex-direction: column;
    }

    .catalog-actions .cta,
    .catalog-actions .plain-cta,
    .catalog-help-actions .cta,
    .catalog-help-actions .ghost-cta,
    .product-detail-actions .cta,
    .product-detail-actions .plain-cta,
    .catalog-help .cta,
    .about-cta .cta,
    .about-cta .plain-cta,
    .contact-actions .cta,
    .contact-actions .plain-cta,
    .contact-map-head .plain-cta {
        width: 100%;
    }

    .about-lead h2,
    .about-process h3,
    .contact-lead h2 {
        font-size: 27px;
    }

    .about-visual,
    .about-process,
    .about-cta,
    .contact-info-panel,
    .contact-form-panel,
    .contact-map-section,
    .contact-quick-card {
        padding: 22px;
    }

    .contact-map-head {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-map-wrap iframe {
        min-height: 360px;
    }

    .product-nav {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }
}

@media (max-width: 860px) {
    .header-top-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }

    .header-contact-links {
        flex-wrap: wrap;
        gap: 6px 14px;
        white-space: normal;
    }

    .nav-inner {
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .nav-actions {
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .nav-tools {
        align-self: auto;
        display: inline-flex;
        flex: 0 0 auto;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        background: transparent;
        border-top: 0;
        border-radius: 0;
        width: auto;
    }

    .nav-tools::before {
        display: none;
    }

    .nav-contact-cta {
        width: 100%;
        background: var(--accent);
    }

    .language-toggle {
        width: auto;
        justify-content: center;
    }

    .language-menu {
        position: absolute;
        width: 182px;
        margin-top: 8px;
        box-shadow: 0 18px 40px rgba(17, 24, 39, .18);
    }

    .landing-intent-inner {
        grid-template-columns: 1fr;
    }

    .landing-intent-actions {
        justify-content: flex-start;
    }

    .landing-seo-grid {
        grid-template-columns: 1fr;
    }

    .mobile-conversion-bar {
        display: grid;
    }

    .whatsapp,
    .whatsapp-bubble {
        display: none;
    }

    body {
        padding-bottom: 54px;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 20px, 1280px);
    }

    .nav-inner {
        min-height: 68px;
        gap: 8px;
    }

    .brand img {
        width: 132px;
        max-height: 58px;
    }

    .nav-actions {
        gap: 6px;
    }

    .menu-toggle,
    .language-toggle {
        min-height: 38px;
        padding: 0 9px;
        font-size: 13px;
    }

    .language-toggle {
        gap: 5px;
    }

    .language-toggle .flag,
    .language-toggle span:nth-child(2) {
        display: none;
    }

    .language-menu {
        right: 0;
        width: min(182px, calc(100vw - 20px));
    }

    .main-menu {
        padding: 8px 10px 12px;
    }

    .home-hero {
        min-height: 430px;
    }

    .hero-copy {
        padding: 42px 0;
    }

    .hero-copy img {
        width: 170px;
        margin-bottom: 18px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .page-content,
    .catalog-hero,
    .cta-panel,
    .quote-panel,
    .catalog-help,
    .about-visual,
    .about-process,
    .about-cta,
    .contact-info-panel,
    .contact-form-panel,
    .contact-map-section,
    .contact-quick-card {
        padding: 18px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .products-showroom {
        gap: 24px;
        padding: 16px;
    }

    .bz-hero,
    .bz-guide,
    .bz-final-cta {
        padding: 22px;
        border-radius: 18px;
    }

    .bz-hero h2 {
        font-size: 30px;
    }

    .bz-hero p {
        font-size: 15px;
    }

    .bz-stats,
    .bz-category-select,
    .bz-grid,
    .bz-guide-grid {
        grid-template-columns: 1fr;
    }

    .bz-category-select button {
        min-height: 118px;
    }

    .bz-section-head h3,
    .bz-final-cta h3 {
        font-size: 26px;
    }

    .bz-card {
        min-width: 0;
    }

    .bz-card-image {
        height: 220px;
    }

    .bz-actions,
    .bz-btn,
    .bz-card-cta {
        width: 100%;
    }

    .catalog-card {
        grid-template-columns: 88px minmax(0, 1fr);
        min-height: 104px;
    }

    .catalog-filter-grid .catalog-card {
        grid-template-columns: 1fr;
    }

    .catalog-card img {
        min-height: 104px;
    }

    .catalog-filter-grid .catalog-card img {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .quote-panel,
    .cta-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mini-quote-form,
    .contact-form {
        min-width: 0;
    }

    .intro-grid h2,
    .section-head h2,
    .split-copy h2,
    .cta-panel h2,
    .quality-grid h2,
    .faq-grid h2,
    .catalog-hero h2,
    .product-detail-head h2,
    .about-lead h2,
    .about-process h3,
    .contact-lead h2 {
        font-size: 24px;
    }

    .mini-quote-form .cf-turnstile,
    .contact-form .cf-turnstile {
        min-height: 65px;
        width: 100%;
    }

    .contact-quick-card a {
        font-size: 20px;
    }

    .whatsapp-icon {
        width: 34px;
        height: 34px;
    }

    .whatsapp-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer {
        padding: 34px 0 84px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer img {
        width: 168px;
    }

    .footer-section {
        padding-top: 0;
    }

    .footer-bottom {
        gap: 4px;
        margin-top: 28px;
        justify-items: start;
        text-align: left;
    }

    .mobile-conversion-bar a {
        min-height: 52px;
        padding: 0 6px;
        font-size: 12px;
        line-height: 1.2;
    }
}

@media (max-width: 340px) {
    .brand img {
        width: 118px;
    }

    .menu-toggle,
    .language-toggle {
        padding: 0 7px;
        font-size: 12px;
    }

    .mini-quote-form .cf-turnstile,
    .contact-form .cf-turnstile {
        transform: scale(.92);
        transform-origin: left top;
        width: 300px;
        max-width: none;
        margin-bottom: -5px;
    }
}
/* Boz Grup Metal products showroom: scoped final overrides */
.content-layout .products-page-content,
.products-page-content,
.content-layout .page-content:has(.products-showroom),
.page-content:has(.products-showroom) {
    max-width: none !important;
    width: 100% !important;
    padding: 48px 0 !important;
    border: 0 !important;
    background: linear-gradient(180deg, #f5f6f7 0%, #eef1f4 100%) !important;
    overflow: visible !important;
}

.page-content .products-showroom,
.products-showroom {
    --bz-page-bg: #F3F5F7;
    --bz-dark: #0D1A26;
    --bz-dark-soft: #102131;
    --bz-dark-card: #122435;
    --bz-border: #24384A;
    --bz-orange: #C9A34D;
    --bz-orange-hover: #B58932;
    --bz-white: #FFFFFF;
    --bz-muted: #B9C3CC;
    --bz-light-text: #26313D;
    --boz-bg-main: var(--bz-dark);
    --boz-bg-secondary: #101820;
    --boz-bg-card: var(--bz-dark-soft);
    --boz-bg-card-soft: var(--bz-dark-card);
    --boz-border: var(--bz-border);
    --boz-border-active: var(--bz-orange);
    --boz-primary: var(--bz-orange);
    --boz-primary-hover: var(--bz-orange-hover);
    --boz-primary-soft: rgba(201, 163, 77, 0.14);
    --boz-text-main: var(--bz-white);
    --boz-text-muted: var(--bz-muted);
    --boz-text-soft: #7F8C99;
    display: block !important;
    width: min(1200px, calc(100% - 48px)) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 32px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(201, 163, 77, .12), transparent 32%),
        linear-gradient(180deg, #122435 0%, var(--bz-dark) 520px) !important;
    box-shadow: 0 24px 70px rgba(7, 17, 26, .14) !important;
    color: var(--boz-text-main) !important;
}

.products-showroom *,
.products-showroom *::before,
.products-showroom *::after {
    box-sizing: border-box;
}

.products-showroom .bz-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 65fr) minmax(260px, 35fr) !important;
    gap: 32px !important;
    align-items: end !important;
    width: 100% !important;
    min-height: 390px;
    padding: 44px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 24px !important;
    background:
        linear-gradient(90deg, rgba(13, 26, 38, .96), rgba(16, 33, 49, .74)),
        url('/assets/uploads/2020/07/metal-sections.jpg') center / cover no-repeat !important;
    box-shadow: 0 20px 56px rgba(7, 17, 26, .2) !important;
}

.products-showroom .bz-kicker {
    display: inline-flex !important;
    width: fit-content;
    margin: 0 0 14px !important;
    padding: 7px 12px !important;
    border: 1px solid rgba(201, 163, 77, .36) !important;
    border-radius: 999px !important;
    background: var(--boz-primary-soft) !important;
    color: var(--boz-primary) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

.products-showroom .bz-hero h2 {
    max-width: 900px !important;
    margin: 0 !important;
    color: var(--boz-text-main) !important;
    font-size: clamp(32px, 4vw, 56px) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
}

.products-showroom .bz-hero p {
    max-width: 820px !important;
    margin: 18px 0 0 !important;
    color: var(--boz-text-muted) !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

.products-showroom .bz-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 18px !important;
}

.products-showroom .bz-btn,
.products-showroom .bz-card-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.products-showroom .bz-btn.primary,
.products-showroom .bz-card-cta {
    border: 1px solid var(--boz-primary) !important;
    background: var(--boz-primary) !important;
    color: #111820 !important;
}

.products-showroom .bz-btn.secondary {
    border: 1px solid rgba(245, 247, 250, .24) !important;
    background: rgba(245, 247, 250, .08) !important;
    color: var(--boz-text-main) !important;
}

.products-showroom .bz-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-content: end !important;
}

.products-showroom .bz-stats div {
    display: block !important;
    padding: 20px !important;
    border: 1px solid rgba(245, 247, 250, .14) !important;
    border-radius: 18px !important;
    background: rgba(18, 36, 53, .86) !important;
}

.products-showroom .bz-stats strong,
.products-showroom .bz-stats span {
    display: block !important;
}

.products-showroom .bz-stats strong {
    color: var(--boz-text-main) !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

.products-showroom .bz-stats span {
    margin-top: 8px !important;
    color: var(--boz-text-muted) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.products-showroom .bz-category-select {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-top: 30px !important;
}

.products-showroom .bz-category-select button {
    display: block !important;
    min-height: 150px !important;
    width: 100% !important;
    padding: 22px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 18px !important;
    background: #122435 !important;
    color: var(--boz-text-main) !important;
    font: inherit !important;
    text-align: left !important;
    cursor: pointer !important;
}

.products-showroom .bz-category-select button:hover,
.products-showroom .bz-card:hover {
    transform: translateY(-4px) !important;
    border-color: var(--boz-border-active) !important;
    box-shadow: 0 18px 44px rgba(201, 163, 77, .12) !important;
}

.products-showroom .bz-category-select span,
.products-showroom .bz-category-select strong {
    display: block !important;
}

.products-showroom .bz-category-select span {
    margin-bottom: 16px !important;
    color: var(--boz-primary) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.products-showroom .bz-category-select strong {
    color: var(--boz-text-main) !important;
    font-size: 22px !important;
    line-height: 1.18 !important;
}

.products-showroom .bz-section {
    display: block !important;
    margin-top: 44px !important;
    scroll-margin-top: 110px !important;
}

.products-showroom .bz-section-head {
    max-width: 820px !important;
    margin: 0 0 22px !important;
}

.products-showroom .bz-section-head h3,
.products-showroom .bz-final-cta h3 {
    margin: 0 !important;
    color: var(--boz-text-main) !important;
    font-size: 34px !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
}

.products-showroom .bz-section-head p,
.products-showroom .bz-final-cta p {
    margin: 12px 0 0 !important;
    color: var(--boz-text-muted) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.products-showroom .bz-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
    width: 100% !important;
}

.products-showroom .bz-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    height: 100% !important;
    border: 1px solid var(--boz-border) !important;
    border-radius: 8px !important;
    background: rgba(16, 33, 49, .56) !important;
    overflow: hidden !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

.products-showroom .bz-card-image {
    display: block !important;
    flex: 0 0 96px !important;
    width: 100% !important;
    height: 96px !important;
    min-height: 96px !important;
    background: #0b1620 !important;
    overflow: hidden !important;
}

.products-showroom .bz-card-image img {
    display: block !important;
    width: 100% !important;
    height: 96px !important;
    max-width: none !important;
    object-fit: cover !important;
}

.products-showroom .bz-card-body {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    gap: 7px !important;
    padding: 12px !important;
    min-width: 0 !important;
}

.products-showroom .bz-card h4 {
    margin: 0 !important;
    color: var(--boz-text-main) !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    overflow-wrap: anywhere !important;
}

.products-showroom .bz-card h4 a {
    color: inherit !important;
    text-decoration: none !important;
}

.products-showroom .bz-card p {
    display: none !important;
}

.products-showroom .bz-tags {
    display: none !important;
}

.products-showroom .bz-tags span {
    display: inline-flex !important;
    max-width: 100% !important;
    padding: 3px 6px !important;
    border: 1px solid rgba(201, 163, 77, .24) !important;
    border-radius: 5px !important;
    background: rgba(255, 255, 255, .04) !important;
    color: var(--boz-text-main) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.products-showroom .bz-card-cta {
    width: fit-content !important;
    margin-top: 0 !important;
}

.products-showroom .bz-guide,
.products-showroom .bz-final-cta {
    margin-top: 44px !important;
    padding: 32px !important;
    border: 1px solid var(--boz-border) !important;
    border-radius: 22px !important;
    background: #101820 !important;
}

.products-showroom .bz-guide-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.products-showroom .bz-guide-grid div {
    padding: 18px !important;
    border: 1px solid var(--boz-border) !important;
    border-radius: 16px !important;
    background: #102131 !important;
}

.products-showroom .bz-guide-grid strong,
.products-showroom .bz-guide-grid span {
    display: block !important;
}

.products-showroom .bz-guide-grid strong {
    color: var(--boz-text-main) !important;
    font-size: 15px !important;
}

.products-showroom .bz-guide-grid span {
    margin-top: 8px !important;
    color: var(--boz-text-muted) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.products-showroom .bz-final-cta {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 24px !important;
    align-items: center !important;
    background: linear-gradient(90deg, rgba(201, 163, 77, .15), transparent 48%), var(--boz-bg-secondary) !important;
}

@media (max-width: 1100px) {
    .products-showroom {
        width: min(1200px, calc(100% - 40px)) !important;
        padding: 24px !important;
    }

    .products-showroom .bz-hero,
    .products-showroom .bz-final-cta {
        grid-template-columns: 1fr !important;
    }

    .products-showroom .bz-category-select,
    .products-showroom .bz-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .products-showroom .bz-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .content-layout .products-page-content,
    .products-page-content {
        padding: 32px 0 !important;
    }

    .products-showroom {
        width: calc(100% - 24px) !important;
        padding: 16px !important;
        border-radius: 20px !important;
    }

    .products-showroom .bz-hero,
    .products-showroom .bz-guide,
    .products-showroom .bz-final-cta {
        padding: 22px !important;
        border-radius: 18px !important;
    }

    .products-showroom .bz-hero {
        min-height: 0 !important;
    }

    .products-showroom .bz-category-select,
    .products-showroom .bz-guide-grid {
        grid-template-columns: 1fr !important;
    }

    .products-showroom .bz-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .products-showroom .bz-card-image,
    .products-showroom .bz-card-image img {
        height: 82px !important;
    }

    .products-showroom .bz-card-image {
        flex-basis: 82px !important;
        min-height: 82px !important;
    }

    .products-showroom .bz-category-select button {
        min-height: 118px !important;
    }

    .products-showroom .bz-section-head h3,
    .products-showroom .bz-final-cta h3 {
        font-size: 26px !important;
    }

    .products-showroom .bz-actions,
    .products-showroom .bz-btn,
    .products-showroom .bz-card-cta {
        width: 100% !important;
    }

    .products-showroom .bz-card .bz-card-cta {
        width: auto !important;
    }

    .whatsapp {
        right: 12px !important;
        bottom: 78px !important;
        min-height: 46px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        z-index: 18 !important;
    }

    .whatsapp-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .whatsapp-bubble {
        right: 12px !important;
        bottom: 132px !important;
        z-index: 18 !important;
    }
}

.whatsapp,
.whatsapp-bubble {
    z-index: 18 !important;
}

/* Products showroom integration pass */
.content-section:has(.bz-products-showroom) {
    padding: 0 !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .08), transparent 30%),
        linear-gradient(180deg, #1a2530 0%, #101820 34%, #0D1A26 100%) !important;
}

.content-layout .products-page-content:has(.bz-products-showroom),
.products-page-content:has(.bz-products-showroom),
.content-layout .page-content:has(.bz-products-showroom),
.page-content:has(.bz-products-showroom) {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 48px 0 80px !important;
    border: 0 !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .08), transparent 30%),
        linear-gradient(180deg, #1a2530 0%, #101820 34%, #0D1A26 100%) !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.page-content .bz-products-showroom,
.bz-products-showroom {
    --bz-page-bg: #F3F5F7;
    --bz-dark: #0D1A26;
    --bz-dark-soft: #102131;
    --bz-dark-card: #122435;
    --bz-border: #24384A;
    --bz-orange: #C9A34D;
    --bz-orange-hover: #B58932;
    --bz-white: #FFFFFF;
    --bz-muted: #B9C3CC;
    --bz-soft-muted: #7F8C99;
    --bz-light-text: #26313D;
    --boz-bg-main: var(--bz-dark);
    --boz-bg-secondary: #101820;
    --boz-bg-card: var(--bz-dark-soft);
    --boz-bg-card-soft: var(--bz-dark-card);
    --boz-border: var(--bz-border);
    --boz-border-active: var(--bz-orange);
    --boz-primary: var(--bz-orange);
    --boz-primary-hover: var(--bz-orange-hover);
    --boz-primary-soft: rgba(201, 163, 77, .14);
    --boz-text-main: var(--bz-white);
    --boz-text-muted: var(--bz-muted);
    --boz-text-soft: var(--bz-soft-muted);
    display: block !important;
    width: calc(100% - 48px) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 32px !important;
    border-radius: 22px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--bz-white) !important;
}

.bz-products-showroom *,
.bz-products-showroom *::before,
.bz-products-showroom *::after {
    box-sizing: border-box;
}

.bz-products-showroom .bz-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr) !important;
    gap: 32px !important;
    align-items: end !important;
    min-height: 400px !important;
    padding: 46px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 22px !important;
    background:
        linear-gradient(90deg, rgba(13, 26, 38, .95), rgba(16, 33, 49, .68)),
        url('/assets/uploads/2020/07/metal-sections.jpg') center / cover no-repeat !important;
    box-shadow: 0 18px 48px rgba(7, 17, 26, .22) !important;
    overflow: hidden !important;
}

.bz-products-showroom .bz-hero h2 {
    max-width: 920px !important;
    font-size: clamp(34px, 4vw, 56px) !important;
}

.bz-products-showroom .bz-hero p {
    max-width: 830px !important;
}

.bz-products-showroom .bz-kicker {
    border-color: rgba(201, 163, 77, .36) !important;
    background: rgba(201, 163, 77, .14) !important;
    color: var(--bz-orange) !important;
}

.bz-products-showroom .bz-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.bz-products-showroom .bz-btn,
.bz-products-showroom .bz-card-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease !important;
}

.bz-products-showroom .bz-btn.primary,
.bz-products-showroom .bz-card-cta {
    border: 1px solid var(--bz-orange) !important;
    background: var(--bz-orange) !important;
    color: #111820 !important;
    box-shadow: 0 10px 24px rgba(201, 163, 77, .22) !important;
}

.bz-products-showroom .bz-btn.primary:hover,
.bz-products-showroom .bz-card-cta:hover {
    border-color: var(--bz-orange-hover) !important;
    background: var(--bz-orange-hover) !important;
    color: #111820 !important;
    transform: translateY(-2px) !important;
}

.bz-products-showroom .bz-btn.secondary {
    border: 1px solid rgba(255, 255, 255, .22) !important;
    background: rgba(255, 255, 255, .08) !important;
    color: var(--bz-white) !important;
}

.bz-products-showroom .bz-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-content: end !important;
}

.bz-products-showroom .bz-stats div {
    min-height: 94px !important;
    padding: 18px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;
    background: rgba(16, 33, 49, .72) !important;
}

.bz-products-showroom .bz-category-select {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-top: 30px !important;
}

.bz-products-showroom .bz-category-select button {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 132px !important;
    width: 100% !important;
    padding: 20px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;
    background: rgba(18, 36, 53, .72) !important;
    color: var(--bz-white) !important;
}

.bz-products-showroom .bz-category-select button:hover {
    transform: translateY(-3px) !important;
    border-color: var(--bz-orange) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16), 0 0 14px rgba(201, 163, 77, .1) !important;
}

.bz-products-showroom .bz-section {
    margin-top: 56px !important;
    padding-top: 0 !important;
    scroll-margin-top: 110px !important;
}

.bz-products-showroom .bz-section-head {
    max-width: 820px !important;
    margin: 0 0 24px !important;
    text-align: left !important;
}

.bz-products-showroom .bz-section-head h3,
.bz-products-showroom .bz-final-cta h3 {
    color: var(--bz-white) !important;
}

.bz-products-showroom .bz-section-head p,
.bz-products-showroom .bz-final-cta p {
    color: var(--bz-muted) !important;
}

.bz-products-showroom .bz-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.bz-products-showroom .bz-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 8px !important;
    background: rgba(16, 33, 49, .56) !important;
    overflow: hidden !important;
}

.bz-products-showroom .bz-card:hover {
    transform: translateY(-2px) !important;
    border-color: var(--bz-orange) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16) !important;
}

.bz-products-showroom .bz-card-image,
.bz-products-showroom .bz-card-image img {
    width: 100% !important;
    height: 96px !important;
}

.bz-products-showroom .bz-card-image {
    flex: 0 0 96px !important;
}

.bz-products-showroom .bz-card-image img {
    object-fit: cover !important;
}

.bz-products-showroom .bz-card h4 {
    font-size: 15px !important;
    line-height: 1.22 !important;
}

.bz-products-showroom .bz-card-body {
    gap: 7px !important;
    padding: 12px !important;
}

.bz-products-showroom .bz-card p {
    display: none !important;
}

.bz-products-showroom .bz-tags {
    display: none !important;
}

.bz-products-showroom .bz-tags span {
    display: inline-flex !important;
    align-items: center !important;
    padding: 3px 6px !important;
    border-color: rgba(255, 255, 255, .1) !important;
    border-radius: 5px !important;
    background: rgba(255, 255, 255, .04) !important;
    color: var(--bz-muted) !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
}

.bz-products-showroom .bz-card .bz-card-cta {
    min-height: 32px !important;
    align-self: flex-start !important;
    padding: 0 12px !important;
    border-radius: 6px !important;
    font-size: 10.5px !important;
    box-shadow: none !important;
}

.bz-products-showroom .bz-guide,
.bz-products-showroom .bz-final-cta {
    margin-top: 56px !important;
    padding: 30px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 16px !important;
}

.bz-products-showroom .bz-guide {
    background: linear-gradient(180deg, rgba(18, 36, 53, .92), rgba(16, 33, 49, .92)) !important;
}

.bz-products-showroom .bz-guide-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.bz-products-showroom .bz-guide-grid div {
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 12px !important;
    background: rgba(16, 33, 49, .72) !important;
}

.bz-products-showroom .bz-final-cta {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 24px !important;
    align-items: center !important;
    background:
        radial-gradient(circle at 88% 50%, rgba(201, 163, 77, .2), transparent 32%),
        linear-gradient(90deg, rgba(201, 163, 77, .13), rgba(16, 33, 49, .96) 46%),
        #101820 !important;
}

@media (max-width: 1100px) {
    .bz-products-showroom {
        width: calc(100% - 40px) !important;
        padding: 24px !important;
    }

    .bz-products-showroom .bz-hero,
    .bz-products-showroom .bz-final-cta {
        grid-template-columns: 1fr !important;
    }

    .bz-products-showroom .bz-category-select,
    .bz-products-showroom .bz-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .bz-products-showroom .bz-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .content-layout .products-page-content:has(.bz-products-showroom),
    .products-page-content:has(.bz-products-showroom),
    .content-layout .page-content:has(.bz-products-showroom),
    .page-content:has(.bz-products-showroom) {
        padding: 40px 0 64px !important;
    }

    .bz-products-showroom {
        width: calc(100% - 24px) !important;
        padding: 16px !important;
        border-radius: 20px !important;
    }

    .bz-products-showroom .bz-hero,
    .bz-products-showroom .bz-guide,
    .bz-products-showroom .bz-final-cta {
        padding: 22px !important;
        border-radius: 18px !important;
    }

    .bz-products-showroom .bz-hero {
        min-height: 0 !important;
    }

    .bz-products-showroom .bz-category-select,
    .bz-products-showroom .bz-guide-grid {
        grid-template-columns: 1fr !important;
    }

    .bz-products-showroom .bz-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .bz-products-showroom .bz-card-image,
    .bz-products-showroom .bz-card-image img {
        height: 82px !important;
    }

    .bz-products-showroom .bz-card-image {
        flex-basis: 82px !important;
    }

    .bz-products-showroom .bz-category-select button {
        min-height: 118px !important;
    }

    .bz-products-showroom .bz-actions,
    .bz-products-showroom .bz-btn,
    .bz-products-showroom .bz-card-cta {
        width: 100% !important;
    }

    .bz-products-showroom .bz-card .bz-card-cta {
        width: auto !important;
    }
}

@media (max-width: 420px) {
    .product-card-grid {
        grid-template-columns: 1fr;
    }
}
