/* Brand palette: based on the official RARA logo */
:root{--ink:#194c53;--deep:#32666e;--teal:#4e948c;--cream:#f1f8f6;--paper:#fbfdfc;--mint:#d9eee9;--lime:#e6f2b7;--line:rgba(50,102,110,.22)}

/* Global overflow fix - prevent horizontal scroll on all screen sizes */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Distinct Category Catalog Sections ── */
.category-catalog-section {
    margin-bottom: 64px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(50, 102, 110, 0.15);
}

.category-catalog-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.category-section-header {
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mint);
}

.category-section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(78, 148, 140, 0.12);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.category-section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--ink);
    margin: 4px 0 6px 0;
    font-family: Manrope, sans-serif;
    font-weight: 800;
}

.category-section-header p {
    font-size: 14px;
    color: #53776d;
    max-width: 680px;
    margin: 0;
}

/* ── Product Card Uniform Grid Alignment & Bottom-Pinned Buttons ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 860px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 540px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}

@keyframes searchPulse {
    0% { box-shadow: 0 0 0 0 rgba(78, 148, 140, 0.8); transform: scale(1); }
    40% { box-shadow: 0 0 0 12px rgba(78, 148, 140, 0); transform: scale(1.02); }
    100% { box-shadow: 0 10px 30px rgba(31, 84, 82, 0.15); transform: scale(1); }
}

.product-card.search-highlight {
    animation: searchPulse 1.2s cubic-bezier(0.25, 1, 0.5, 1) 2;
    border-color: #194c53 !important;
    border-width: 2px !important;
}

.product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    background: #ffffff;
    border: 1px solid #dceae6;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(31, 84, 82, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-image {
    height: 220px;
    background: #f1f6f4;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    mix-blend-mode: multiply;
}

.product-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    padding: 18px;
}

.product-info span {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #60867b;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

.product-info h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 4px 0 8px 0;
    color: var(--ink);
    min-height: 2.6em;
}

.product-info p {
    font-size: 12px;
    line-height: 1.5;
    color: #60736e;
    margin: 0 0 14px 0;
    flex-grow: 1 !important;
}

/* ── Interactive Action Buttons (cssbuttons-io style tailored for RARA) ──── */
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto !important;
    padding-top: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.product-card-actions .cssbuttons-io-button {
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 0.8em;
    border: none;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 2.6em;
    padding: 0.3em 3.2em 0.3em 1.1em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Enquire Button (Deep Ink + Lime Icon) */
.product-card-actions .btn-enquire {
    background: #194c53;
    color: #ffffff;
    padding-right: 3.0em;
    min-width: 102px;
    box-shadow: inset 0 0 1.2em -0.4em #0e2f34;
}

.product-card-actions .btn-enquire .icon {
    background: #e6f2b7;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.1em;
    width: 2.1em;
    border-radius: 0.65em;
    box-shadow: 0.1em 0.1em 0.5em 0.1em rgba(16, 47, 52, 0.35);
    right: 0.25em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-actions .btn-enquire .icon svg {
    width: 1.1em;
    height: 1.1em;
    transition: transform 0.3s;
    color: #194c53;
}

.product-card-actions .btn-enquire:hover .icon {
    width: calc(100% - 0.5em);
    background: #e6f2b7;
}

.product-card-actions .btn-enquire:hover .icon svg {
    transform: translateX(0.15em);
}

.product-card-actions .btn-enquire:active .icon {
    transform: scale(0.95);
}

/* Read More Button (Teal Accent + Crisp White Icon) */
.product-card-actions .btn-readmore {
    background: #3e7f78;
    color: #ffffff;
    padding-right: 3.3em;
    min-width: 118px;
    box-shadow: inset 0 0 1.2em -0.4em #255651;
}

.product-card-actions .btn-readmore .icon {
    background: #ffffff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.1em;
    width: 2.1em;
    border-radius: 0.65em;
    box-shadow: 0.1em 0.1em 0.5em 0.1em rgba(30, 70, 66, 0.3);
    right: 0.25em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-actions .btn-readmore .icon svg {
    width: 1.1em;
    height: 1.1em;
    transition: transform 0.3s;
    color: #3e7f78;
}

/* ── Hero Video Audio Toggle Button ── */
.video-audio-toggle {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 6;
    background: rgba(25, 76, 83, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(230, 242, 183, 0.7);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}

.video-audio-toggle:hover {
    background: #194c53;
    border-color: #e6f2b7;
    transform: scale(1.04);
    box-shadow: 0 8px 22px rgba(230, 242, 183, 0.25);
}

.video-audio-toggle svg {
    display: inline-block;
    vertical-align: middle;
}

@media(max-width: 800px) {
    .video-audio-toggle {
        bottom: 16px;
        left: 16px;
        padding: 6px 14px;
        font-size: 12px;
    }
}

.product-card-actions .btn-readmore:hover .icon {
    width: calc(100% - 0.5em);
    background: #ffffff;
}

.product-card-actions .btn-readmore:hover .icon svg {
    transform: translateX(0.15em);
}

.product-card-actions .btn-readmore:active .icon {
    transform: scale(0.95);
}

.site-header{height:86px;background:rgba(50,102,110,.98);box-shadow:0 10px 28px rgba(24,70,74,.16);position:relative;z-index:10}.brand{align-items:center}.brand img{display:block;width:205px;height:66px;object-fit:contain;object-position:left center;mix-blend-mode:screen}.footer-brand img{width:260px;height:84px}.site-nav a{color:#edf9f6}.site-nav a:not(.nav-cta){opacity:.9}.site-nav a:not(.nav-cta):hover{color:var(--lime);opacity:1}.nav-cta{border-color:rgba(230,242,183,.85);background:rgba(255,255,255,.1);border-radius:3px}.nav-cta:hover{background:var(--lime);color:var(--ink)}
.hero{background:var(--deep)}.intro{background:linear-gradient(135deg,#f2faf7,#e2f0eb)}.intro .eyebrow{color:var(--teal)}.categories{background:linear-gradient(125deg,#32666e,#3b7b78 55%,#4e948c)}.categories .section-head{color:white}.categories .eyebrow{color:var(--lime)}.product-card{border:1px solid #dceae6;border-radius:4px;overflow:hidden;box-shadow:0 10px 30px rgba(31,84,82,.08);transition:transform .25s ease,box-shadow .25s ease}.product-card:hover{transform:translateY(-6px);box-shadow:0 18px 38px rgba(31,84,82,.18)}.assurance{background:linear-gradient(120deg,#32666e,#24555d)}.inquiry{background:linear-gradient(125deg,#4e948c,#77afa5)}.site-footer{background:linear-gradient(125deg,#214f57,#173e46)}
@media(max-width:800px){.site-header{height:74px}.site-nav{top:74px}.brand img{width:165px;height:56px}.footer-brand img{width:230px;height:76px}}

/* Midnight header keeps the official teal logo distinct and prominent. */
.site-header{background:#172538;border-bottom:1px solid rgba(230,242,183,.22)}.announcement-bar{min-height:44px;display:flex;align-items:center;gap:17px;padding:0 5.7vw;background:#e6f2b7;color:#183e47;font-size:13px;font-weight:700;box-shadow:0 5px 14px rgba(24,70,74,.1);position:relative;z-index:5}.announcement-label{font-size:10px;text-transform:uppercase;letter-spacing:.15em;color:#fff;background:#32666e;padding:4px 8px;border-radius:2px}.announcement-track{min-width:0;overflow:hidden;flex:1}.announcement-track p{margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.announcement-bar a{color:#183e47;text-decoration:none;white-space:nowrap;font-size:12px}.announcement-bar a span{margin-left:4px}.brand img{filter:drop-shadow(0 4px 8px rgba(0,0,0,.22))}

/* Presentation-style entrances - each section uses its own direction and timing. */
.hero-media video{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.88) contrast(1.04)}
.reveal{opacity:0;transition:opacity .55s ease,transform .75s cubic-bezier(.2,.8,.2,1)}.reveal.is-visible{opacity:1;transform:none}.intro.reveal{transform:translateX(-64px)}.categories.reveal{transform:translateX(64px)}.product-section.reveal{transform:translateY(52px)}.assurance.reveal{transform:scale(.965)}.inquiry.reveal{transform:translateX(-42px) translateY(32px)}.hero-copy>*{animation:slideFromLeft .8s both}.hero-copy .eyebrow{animation-delay:.1s}.hero-copy h1{animation-delay:.22s}.hero-copy .hero-text{animation-delay:.36s}.hero-copy .hero-actions{animation-delay:.5s}.hero-media{animation:slideFromRight .9s .15s both}.hero-stats{animation:riseIn .75s .45s both}.category-card{transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s ease}.category-card:hover{transform:translateY(-9px) scale(1.01);box-shadow:0 18px 34px rgba(3,32,34,.28)}.reveal.is-visible .category-card{animation:riseIn .6s both}.reveal.is-visible .category-card:nth-child(2){animation-delay:.12s}.reveal.is-visible .category-card:nth-child(3){animation-delay:.24s}.reveal.is-visible .product-card{animation:riseIn .55s both}.reveal.is-visible .product-card:nth-child(2){animation-delay:.08s}.reveal.is-visible .product-card:nth-child(3){animation-delay:.16s}.reveal.is-visible .product-card:nth-child(4){animation-delay:.24s}@keyframes slideFromLeft{from{opacity:0;transform:translateX(-54px)}to{opacity:1;transform:none}}@keyframes slideFromRight{from{opacity:0;transform:translateX(64px)}to{opacity:1;transform:none}}@keyframes riseIn{from{opacity:0;transform:translateY(34px)}to{opacity:1;transform:none}}@media(max-width:800px){.announcement-bar{padding:8px 6vw;gap:10px;min-height:42px}.announcement-bar a{display:none}.announcement-track p{font-size:11px}.reveal,.intro.reveal,.categories.reveal,.product-section.reveal,.assurance.reveal,.inquiry.reveal{transform:translateY(28px)}}@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation-duration:.01ms!important;transition-duration:.01ms!important}}

/* Top bar is now hidden */
.top-bar { display: none; }

/* ── Custom Language Selector ─────────────────────────────────── */
.lang-selector {
    position: relative;
    margin-left: 6px;
    flex-shrink: 0;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    color: #edf9f6;
    font: 11.5px/1 'DM Sans', sans-serif;
    padding: 7px 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.15); }
.lang-caret { transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #172538;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 2000;
    overflow: hidden;
}
.lang-dropdown.open { display: flex; flex-direction: column; }

.lang-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #8faaa6;
    flex-shrink: 0;
}
.lang-search {
    border: none;
    background: transparent;
    color: #edf9f6;
    font: 13px 'DM Sans', sans-serif;
    outline: none;
    flex: 1;
    min-width: 0;
}
.lang-search::placeholder { color: #6a8a86; }

.lang-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.lang-list::-webkit-scrollbar { width: 5px; }
.lang-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }
.lang-list li {
    padding: 9px 16px;
    color: #c8ddd9;
    font: 13px 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.lang-list li:hover {
    background: rgba(78,148,140,0.25);
    color: #e6f2b7;
}


/* Glassmorphic Sticky Header */
.site-header {
    height: 80px;
    padding: 0 1.5vw !important;
    background: rgba(23, 37, 56, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.brand img {
    width: 195px !important;
    height: 62px !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

/* Dropdown Styles for Site Nav */
/* ── Nav list (inner UL) ───────────────────────────────────────── */
.nav-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-item {
    position: relative;
    white-space: nowrap;
}
.nav-link {
    color: #edf9f6;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0.9;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 22px 2px;
    white-space: nowrap;
    transition: color 0.25s ease, opacity 0.25s ease;
}
.nav-link:hover {
    color: var(--lime);
    opacity: 1;
}

/* Modern Dropdown Menu with Fade/Slide Transition */
.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #101c2b;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--lime);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 100;
    border-radius: 0 0 6px 6px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s;
}
.dropdown-menu a {
    display: block;
    padding: 11px 22px;
    color: #edf9f6;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.85;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(230, 242, 183, 0.08);
    color: var(--lime);
    opacity: 1;
    padding-left: 26px;
}
.nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Premium Pill-shaped CTA Button */
.nav-cta {
    border: 0 !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 0.02em;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
    opacity: 1 !important;
    box-shadow: 0 4px 14px rgba(230,242,183,0.3) !important;
}
.nav-cta:hover {
    background: #ffffff !important;
    color: var(--ink) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2) !important;
}

/* Language Translator Widget Styling */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    transition: border-color 0.2s;
}
.goog-te-gadget-simple:hover {
    border-color: rgba(230,242,183,0.5) !important;
}
.goog-te-gadget-simple a, .goog-te-gadget-simple span {
    color: #92b0ac !important;
    text-decoration: none !important;
    font-size: 11px !important;
}
.goog-te-gadget-icon {
    display: none !important;
}

@media(max-width:800px) {
    .site-header {
        height: 74px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .site-nav {
        display: none !important;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        z-index: 20;
        flex-direction: column;
        align-items: stretch;
        padding: 15px 6vw !important;
        background: #172538;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
    }
    .site-nav.open {
        display: flex !important;
    }
    /* Nav list inside open mobile nav */
    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .nav-item {
        display: block;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        display: block; /* show submenus expanded inline */
        background: rgba(255,255,255,0.05);
        border: 0;
        border-left: 2px solid var(--lime);
        box-shadow: none;
        margin-left: 10px;
        margin-top: 5px;
        min-width: 0;
        padding: 4px 0;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .dropdown-menu a {
        padding: 8px 15px;
    }
    .nav-link {
        padding: 12px 0;
        width: 100%;
    }
}

/* ── Floating Quick-Contact Icons ─────────────────────────────────── */
.quick-contact {
    position: fixed;
    right: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-icon:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.34);
}

.contact-icon[aria-label="Email"] {
    background: #1a9e9e;
}

.contact-icon[aria-label="Call"] {
    background: #e0302e;
}

.contact-icon[aria-label="WhatsApp"] {
    background: #25d366;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* ── Clean Room Brochure Overview Module (Exact PDF Brochure Spread) ── */
.cleanroom-brochure-showcase {
    background: #ffffff;
    border: 1px solid #cce3de;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 36px;
    box-shadow: 0 6px 24px rgba(24, 70, 74, 0.08);
    overflow: hidden;
}

.brochure-top-banner {
    background: linear-gradient(135deg, #17383e 0%, #1f4f56 60%, #2e7178 100%);
    color: #ffffff;
    padding: 18px 24px;
    border-bottom: 3px solid #e6f2b7;
}

.brochure-top-banner .company-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e6f2b7;
    margin: 0 0 6px 0;
}

.brochure-top-banner p {
    font-size: 12.5px;
    line-height: 1.5;
    color: #e2f0ed;
    margin: 0 0 6px 0;
}

.brochure-top-banner .credentials {
    font-size: 11.5px;
    color: #c7e3de;
    margin: 0;
    font-weight: 600;
}

.brochure-columns-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 22px 24px;
    background: #ffffff;
}

.brochure-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brochure-group {
    display: flex;
    flex-direction: column;
}

.brochure-group-title {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #17383e;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin: 0 0 6px 0;
}

.brochure-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brochure-list li {
    font-size: 12px;
    color: #23373b;
    line-height: 1.35;
    position: relative;
    padding-left: 14px;
}

.brochure-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #17383e;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.1;
}

@media(max-width: 900px) {
    .brochure-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 16px;
    }
}

/* ── Product Filter Search Bar & Search Button ──────────────────────── */
.product-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 36px 0 32px;
}

.search-field-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-field {
    border: 1.5px solid #194c53;
    width: 320px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #ffffff;
    padding: 0 14px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(25, 76, 83, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-field:focus-within {
    border-color: #3e7f78;
    box-shadow: 0 0 0 3px rgba(62, 127, 120, 0.2);
}

.search-field span {
    font-size: 20px;
    color: #194c53;
    line-height: 1;
}

.search-field input {
    border: 0;
    background: transparent;
    outline: none;
    padding: 11px 0;
    width: 100%;
    font: 14px 'DM Sans', sans-serif;
    color: #194c53;
}

.search-submit-btn {
    background: #194c53;
    color: #ffffff;
    border: 1.5px solid #194c53;
    border-radius: 6px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(25, 76, 83, 0.15);
}

.search-submit-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.search-submit-btn:hover {
    background: #3e7f78;
    border-color: #3e7f78;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(25, 76, 83, 0.25);
}

.search-submit-btn:active {
    transform: translateY(0);
}

@media(max-width: 800px) {
    .search-field-group {
        width: 100%;
        display: flex;
        gap: 8px;
    }
    .search-field {
        flex: 1;
        width: auto;
    }
    .search-submit-btn {
        padding: 10px 18px;
        white-space: nowrap;
    }
    .brochure-columns-wrapper {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .product-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin: 24px 0 28px;
    }
    .chips {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .category-chip {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media(max-width: 540px) {
    .product-section {
        padding: 40px 4.5vw;
    }
    .product-image {
        height: 230px;
    }
    .product-info {
        padding: 16px 14px;
    }
    .product-info h3 {
        font-size: 18px;
        min-height: auto;
    }
    .product-card-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }
    .product-card-actions .cssbuttons-io-button {
        flex: 1;
        justify-content: center;
        padding-left: 0.6em;
        padding-right: 2.8em;
        font-size: 11px;
        height: 2.7em;
    }
    .category-section-header h2 {
        font-size: 22px;
    }
}

/* ── Social Media Icon Buttons ── */
.social-links-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 14px !important;
    flex-wrap: wrap !important;
}

.site-footer a.social-icon-btn,
.social-icon-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.site-footer a.social-icon-btn svg,
.social-icon-btn svg {
    display: block !important;
    margin: auto !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.social-icon-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
}

.social-icon-btn.fb:hover {
    background: #1877f2 !important;
    color: #ffffff !important;
    border-color: #1877f2 !important;
}

.social-icon-btn.insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.social-icon-btn.yt:hover {
    background: #ff0000 !important;
    color: #ffffff !important;
    border-color: #ff0000 !important;
}

.social-icon-btn.li:hover {
    background: #0a66c2 !important;
    color: #ffffff !important;
    border-color: #0a66c2 !important;
}

.contact-info-side .social-icon-btn {
    background: #ffffff !important;
    border-color: #cce2dc !important;
    color: #194c53 !important;
}

.contact-info-side .social-icon-btn:hover {
    color: #ffffff !important;
}
