/* =========================================================
   AR CABLES — PRODUCTS PAGE PROFESSIONAL CSS
   Works with the existing products.html
   No HTML buttons/content removed or changed.
   
   ========================================================= */

   :root{
    --pc-orange:#f45b2a;
    --pc-orange-dark:#d9481c;
    --pc-navy:#07111f;
    --pc-navy-2:#0e1d31;
    --pc-text:#172033;
    --pc-muted:#68768a;
    --pc-line:#e7ebf0;
    --pc-soft:#f6f8fb;
    --pc-white:#fff;
    --pc-shadow:0 18px 55px rgba(15,23,42,.09);
}

body{
    overflow-x:hidden;
}

/* =========================================================
   HEADER
   ========================================================= */

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(7,17,31,.97);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:0 8px 30px rgba(0,0,0,.13);
}

.header .container{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.header .logo{
    flex:0 0 auto;
}

.header .logo img{
    width:68px;
    height:68px;
    object-fit:contain;
    display:block;
    transition:transform .25s ease;
}

.header .logo img:hover{
    transform:scale(1.04);
}

.header .navbar{
    margin-left:auto;
}

.header .navbar ul{
    display:flex;
    align-items:center;
    gap:4px;
    margin:0;
    padding:0;
    list-style:none;
}

.header .navbar a{
    position:relative;
    display:flex;
    align-items:center;
    min-height:42px;
    padding:0 14px;
    border-radius:10px;
    color:#dce4ef;
    font-size:12px;
    font-weight:600;
    text-decoration:none;
    transition:.25s ease;
}

.header .navbar a:hover,
.header .navbar a.active{
    color:#fff;
    background:rgba(244,91,42,.12);
}

.header .navbar a.active::after{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:5px;
    height:2px;
    border-radius:10px;
    background:var(--pc-orange);
}

.header .quote-btn{
    flex:0 0 auto;
    min-width:104px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 17px;
    border-radius:11px;
    background:linear-gradient(135deg,var(--pc-orange),#ff7b4e);
    color:#fff;
    font-size:11px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(244,91,42,.20);
    transition:.25s ease;
}

.header .quote-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(244,91,42,.28);
}

/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner{
    position:relative;
    min-height:390px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 82% 25%,rgba(244,91,42,.20),transparent 30%),
        linear-gradient(135deg,var(--pc-navy),var(--pc-navy-2));
}

.page-banner::before{
    content:"";
    position:absolute;
    width:460px;
    height:460px;
    right:-250px;
    top:-210px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    box-shadow:
        0 0 0 55px rgba(255,255,255,.025),
        0 0 0 110px rgba(255,255,255,.015);
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner .sub-title{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:999px;
    background:rgba(255,255,255,.06);
    color:#ff9a78;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.6px;
}

.page-banner h1{
    max-width:800px;
    margin:18px 0 13px;
    color:#fff;
    font-size:clamp(36px,5vw,60px);
    line-height:1.08;
    letter-spacing:-1.5px;
}

.page-banner p{
    max-width:700px;
    margin:0;
    color:rgba(255,255,255,.76);
    font-size:13px;
    line-height:1.85;
}

/* =========================================================
   SEARCH / FILTER
   ========================================================= */

.product-search{
    position:relative;
    z-index:10;
    margin-top:-38px;
}

.product-search .container{
    width:min(92%,1160px);
}

.search-box{
    padding:10px;
    border:1px solid rgba(255,255,255,.5);
    border-radius:16px;
    background:rgba(255,255,255,.95);
    box-shadow:0 18px 45px rgba(15,23,42,.13);
}

.search-box input{
    width:100%;
    height:50px;
    box-sizing:border-box;
    padding:0 17px;
    border:1px solid var(--pc-line);
    border-radius:10px;
    outline:none;
    background:#fff;
    color:var(--pc-text);
    font-size:12px;
    transition:.2s ease;
}

.search-box input:focus{
    border-color:rgba(244,91,42,.55);
    box-shadow:0 0 0 4px rgba(244,91,42,.08);
}

.filter-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    margin-top:15px;
}

.filter-btn{
    min-height:38px;
    padding:0 15px;
    border:1px solid var(--pc-line);
    border-radius:999px;
    background:#fff;
    color:#556277;
    font-size:10px;
    font-weight:700;
    cursor:pointer;
    transition:.22s ease;
}

.filter-btn:hover,
.filter-btn.active{
    border-color:var(--pc-orange);
    background:var(--pc-orange);
    color:#fff;
    box-shadow:0 8px 18px rgba(244,91,42,.16);
}

/* =========================================================
   PRODUCT AREA
   ========================================================= */

.products-page{
    padding:82px 0 92px;
    background:var(--pc-soft);
}

.products-page .container{
    width:min(94%,1180px);
}

.product-grid{
    display:grid;
    gap:20px;
}

.product-grid.three-top,
.product-grid.three-bottom{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.product-grid.three-bottom{
    margin-top:20px;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    padding:22px;
    overflow:hidden;
    border:1px solid var(--pc-line);
    border-radius:20px;
    background:#fff;
    box-shadow:var(--pc-shadow);
    transition:
        transform .3s cubic-bezier(.2,.7,.2,1),
        box-shadow .3s ease,
        border-color .3s ease;
}

.product-card::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.85),
        transparent 42%
    );
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:rgba(244,91,42,.22);
    box-shadow:0 25px 70px rgba(15,23,42,.14);
}

.product-card > img{
    position:relative;
    z-index:1;
    width:100%;
    height:235px;
    display:block;
    object-fit:contain;
    margin-bottom:18px;
    border-radius:13px;
    background:#fff;
    transition:transform .4s ease;
}

.product-card:hover > img{
    transform:scale(1.035);
}

.product-card h3{
    position:relative;
    z-index:1;
    margin:0 0 9px;
    color:var(--pc-text);
    font-size:19px;
    line-height:1.25;
    letter-spacing:-.3px;
}

.product-card > p{
    position:relative;
    z-index:1;
    min-height:53px;
    margin:0 0 16px;
    color:var(--pc-muted);
    font-size:11px;
    line-height:1.7;
}

.badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:5;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:25px;
    padding:0 9px;
    border-radius:999px;
    color:#fff;
    font-size:8px;
    font-weight:800;
    letter-spacing:.7px;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.badge.new{
    background:var(--pc-orange);
}

.badge.hot{
    background:#18263a;
}

.badge.sale{
    background:#1c9a63;
}

/* =========================================================
   RATING
   ========================================================= */

.product-rating{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:7px;
    margin-bottom:15px;
    color:#f59e0b;
    font-size:12px;
}

.product-rating span{
    color:#8490a1;
    font-size:9px;
    font-weight:600;
}

/* =========================================================
   SPECS
   ========================================================= */

.product-specs{
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:17px;
}

.product-specs span{
    padding:7px 9px;
    border:1px solid #e8edf2;
    border-radius:8px;
    background:#f8fafc;
    color:#667388;
    font-size:8px;
    font-weight:700;
}

/* =========================================================
   CORE BUTTONS
   ========================================================= */

.core-buttons{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    margin-bottom:15px;
}

.core-btn{
    min-height:39px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 7px;
    border:1px solid #dfe5ec;
    border-radius:9px;
    background:#fff;
    color:#536075;
    font-size:8px;
    font-weight:700;
    text-align:center;
    text-decoration:none;
    transition:.2s ease;
}

.core-btn:hover,
.core-btn.active{
    border-color:var(--pc-orange);
    background:rgba(244,91,42,.07);
    color:var(--pc-orange-dark);
}

/* =========================================================
   PRODUCT BUTTONS
   ========================================================= */

.product-buttons{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:auto;
}

.product-buttons .btn{
    min-height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    padding:0 10px;
    border:1px solid var(--pc-orange);
    border-radius:10px;
    background:linear-gradient(135deg,var(--pc-orange),#ff784c);
    color:#fff;
    font-size:9px;
    font-weight:800;
    text-decoration:none;
    transition:.22s ease;
}

.product-buttons .btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(244,91,42,.18);
}

.product-buttons .btn.btn-outline{
    border-color:#dfe5ec;
    background:#fff;
    color:#344054;
}

.product-buttons .btn.btn-outline:hover{
    border-color:#25d366;
    background:#f4fff8;
    color:#16864b;
}

/* =========================================================
   CATALOGUE DOWNLOAD
   ========================================================= */

.catalogue-download{
    position:relative;
    overflow:hidden;
    padding:78px 0;
    text-align:center;
    background:#fff;
}

.catalogue-download .container{
    width:min(92%,800px);
}

.catalogue-download h2{
    margin:0 0 12px;
    color:var(--pc-text);
    font-size:clamp(28px,4vw,40px);
    line-height:1.15;
}

.catalogue-download p{
    max-width:650px;
    margin:0 auto 24px;
    color:var(--pc-muted);
    font-size:12px;
    line-height:1.8;
}

.catalogue-download .btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 22px;
    border-radius:10px;
    background:var(--pc-orange);
    color:#fff;
    font-size:10px;
    font-weight:800;
    text-decoration:none;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section{
    position:relative;
    overflow:hidden;
    padding:78px 0;
    text-align:center;
    background:
        radial-gradient(circle at 85% 20%,rgba(244,91,42,.18),transparent 30%),
        linear-gradient(135deg,var(--pc-navy),var(--pc-navy-2));
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section h2{
    margin:0 0 12px;
    color:#fff;
    font-size:clamp(29px,4vw,42px);
}

.cta-section p{
    max-width:670px;
    margin:0 auto 24px;
    color:#b9c5d4;
    font-size:12px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.cta-buttons .btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 21px;
    border-radius:10px;
    background:var(--pc-orange);
    color:#fff;
    font-size:10px;
    font-weight:800;
    text-decoration:none;
}

.cta-buttons .btn-outline{
    border:1px solid rgba(255,255,255,.20);
    background:rgba(255,255,255,.06);
    color:#fff;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
    background:#07111f;
}

.footer-container{
    width:min(92%,1180px);
    display:grid;
    grid-template-columns:1.35fr .8fr 1fr;
    gap:45px;
}

.footer-logo{
    width:62px;
    height:62px;
    object-fit:contain;
    margin-bottom:13px;
}

.footer-box h3{
    color:#fff;
}

.footer-box p,
.footer-box li,
.footer-box a{
    color:#93a1b4;
    font-size:11px;
    line-height:1.8;
}

.footer-box a{
    text-decoration:none;
    transition:.2s ease;
}

.footer-box a:hover{
    color:#ff7650;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.07);
}

/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9998;
    width:58px;
    height:58px;
    padding:6px;
    box-sizing:border-box;
    border-radius:50%;
    background:#25d366;
    box-shadow:0 13px 32px rgba(37,211,102,.28);
    transition:.25s ease;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.04);
}

.whatsapp-float img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:980px){

    .header .container{
        min-height:72px;
    }

    .header .logo img{
        width:62px;
        height:62px;
    }

    .header .navbar a{
        padding:0 9px;
        font-size:10px;
    }

    .header .quote-btn{
        min-width:90px;
    }

    .product-grid.three-top,
    .product-grid.three-bottom{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .product-grid.three-top .product-card:last-child{
        grid-column:1 / -1;
        max-width:calc(50% - 10px);
        width:100%;
        justify-self:center;
    }

    .product-card > img{
        height:215px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

    .footer-container .footer-box:first-child{
        grid-column:1 / -1;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:760px){

    .header{
        position:relative;
    }

    .header .container{
        min-height:68px;
        gap:9px;
    }

    .header .logo img{
        width:56px;
        height:56px;
    }

    /*
      No new HTML button is added here.
      The existing navigation becomes a clean
      mobile vertical navigation.
    */

    .header .navbar{
        width:100%;
        margin:0;
    }

    .header .navbar ul{
        gap:2px;
    }

    .header .navbar a{
        min-height:38px;
        padding:0 8px;
        font-size:9px;
    }

    .header .navbar a.active::after{
        display:none;
    }

    .header .quote-btn{
        min-width:78px;
        height:40px;
        padding:0 9px;
        border-radius:9px;
        font-size:9px;
    }

    .page-banner{
        min-height:330px;
        padding:55px 0;
    }

    .page-banner h1{
        font-size:35px;
    }

    .page-banner p{
        font-size:11px;
    }

    .product-search{
        margin-top:-25px;
    }

    .filter-buttons{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding:2px 1px 8px;
        scrollbar-width:none;
    }

    .filter-buttons::-webkit-scrollbar{
        display:none;
    }

    .filter-btn{
        flex:0 0 auto;
        min-height:35px;
        padding:0 12px;
        font-size:8px;
    }

    .products-page{
        padding:58px 0 65px;
    }

    .product-grid.three-top,
    .product-grid.three-bottom{
        grid-template-columns:1fr 1fr;
        gap:11px;
    }

    .product-grid.three-bottom{
        margin-top:11px;
    }

    .product-grid.three-top .product-card:last-child{
        grid-column:auto;
        max-width:none;
    }

    .product-card{
        padding:12px;
        border-radius:15px;
    }

    .product-card > img{
        height:150px;
        margin-bottom:11px;
    }

    .product-card h3{
        font-size:13px;
        margin-bottom:7px;
    }

    .product-card > p{
        min-height:auto;
        margin-bottom:11px;
        font-size:8px;
        line-height:1.55;
    }

    .badge{
        top:10px;
        left:10px;
        min-height:21px;
        padding:0 7px;
        font-size:7px;
    }

    .product-rating{
        gap:4px;
        margin-bottom:10px;
        font-size:9px;
    }

    .product-rating span{
        font-size:7px;
    }

    .product-specs{
        gap:4px;
        margin-bottom:10px;
    }

    .product-specs span{
        padding:5px 6px;
        font-size:6.5px;
    }

    .core-buttons{
        gap:5px;
        margin-bottom:10px;
    }

    .core-btn{
        min-height:32px;
        padding:0 4px;
        font-size:6.5px;
    }

    .product-buttons{
        gap:5px;
    }

    .product-buttons .btn{
        min-height:35px;
        padding:0 5px;
        font-size:7px;
        border-radius:8px;
    }

    .catalogue-download{
        padding:60px 0;
    }

    .catalogue-download p{
        font-size:10px;
    }

    .cta-section{
        padding:60px 0;
    }

    .cta-buttons{
        width:calc(100% - 30px);
        margin:auto;
    }

    .cta-buttons .btn{
        flex:1 1 145px;
        min-height:42px;
        font-size:8px;
    }

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

    .footer-container .footer-box:first-child{
        grid-column:auto;
    }

    .whatsapp-float{
        width:51px;
        height:51px;
        right:14px;
        bottom:14px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media(max-width:430px){

    .header .container{
        min-height:64px;
        gap:5px;
    }

    .header .logo img{
        width:52px;
        height:52px;
    }

    .header .navbar{
        overflow-x:auto;
        scrollbar-width:none;
    }

    .header .navbar::-webkit-scrollbar{
        display:none;
    }

    .header .navbar ul{
        width:max-content;
    }

    .header .navbar a{
        padding:0 6px;
        font-size:8px;
    }

    .header .quote-btn{
        min-width:73px;
        height:38px;
        font-size:8px;
    }

    .page-banner{
        min-height:300px;
    }

    .page-banner h1{
        font-size:30px;
    }

    .product-grid.three-top,
    .product-grid.three-bottom{
        grid-template-columns:1fr;
    }

    .product-card > img{
        height:205px;
    }

    .product-card h3{
        font-size:16px;
    }

    .product-card > p{
        font-size:9px;
    }

    .product-specs span{
        font-size:7px;
    }

    .core-btn{
        font-size:7px;
    }

    .product-buttons .btn{
        min-height:40px;
        font-size:8px;
    }
}

/* =========================================================
   AR CABLES — FINAL HEADER FIX FOR ALUMINIUM PRODUCT PAGES
   Keeps the header on one row, keeps Get Quote inside it,
   shows Cart, and gives mobile a real menu button.
   ========================================================= */
.header{
    position:sticky !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    z-index:99999 !important;
}

.header .container{
    width:min(94%,1320px) !important;
    min-height:76px !important;
    height:76px !important;
    margin:0 auto !important;
    padding:7px 0 !important;
    display:grid !important;
    grid-template-columns:auto minmax(0,1fr) auto auto auto !important;
    align-items:center !important;
    gap:12px !important;
    box-sizing:border-box !important;
}

.header .logo{grid-column:1 !important; min-width:0 !important;}
.header .navbar{grid-column:2 !important; justify-self:center !important; margin:0 !important; min-width:0 !important;}
.header .navbar ul{display:flex !important; align-items:center !important; justify-content:center !important; gap:3px !important; margin:0 !important; padding:0 !important; white-space:nowrap !important;}
.header .header-cart{grid-column:3 !important; justify-self:center !important; margin:0 !important; position:relative !important; display:flex !important; align-items:center !important; justify-content:center !important; width:46px !important; height:46px !important; min-width:46px !important; border-radius:12px !important; background:rgba(255,255,255,.07) !important; color:#fff !important; text-decoration:none !important; border:1px solid rgba(255,255,255,.10) !important; box-sizing:border-box !important;}
.header .header-cart a{width:100% !important; height:100% !important; display:flex !important; align-items:center !important; justify-content:center !important; color:inherit !important; text-decoration:none !important; position:relative !important;}
.header .header-cart i{font-size:17px !important;}
.header .header-cart span{position:absolute !important; top:-5px !important; right:-5px !important; min-width:17px !important; height:17px !important; padding:0 4px !important; display:flex !important; align-items:center !important; justify-content:center !important; border-radius:999px !important; background:#ff5a1f !important; color:#fff !important; font-size:8px !important; line-height:1 !important; font-weight:800 !important; box-sizing:border-box !important;}
.header .quote-btn{grid-column:4 !important; justify-self:center !important; margin:0 !important; min-width:96px !important; width:96px !important; height:42px !important; min-height:42px !important; padding:0 12px !important; display:inline-flex !important; align-items:center !important; justify-content:center !important; white-space:nowrap !important; box-sizing:border-box !important;}
.header .mobile-menu-btn{grid-column:5 !important; justify-self:end !important; display:none !important;}

@media (max-width:980px) and (min-width:761px){
    .header .container{gap:7px !important; width:96% !important;}
    .header .navbar a{padding:7px 8px !important; font-size:10px !important;}
    .header .header-cart{width:42px !important; height:42px !important; min-width:42px !important;}
    .header .quote-btn{width:88px !important; min-width:88px !important; height:40px !important; min-height:40px !important; font-size:10px !important;}
}

@media (max-width:760px){
    .header,
    .header .container{height:68px !important; min-height:68px !important;}
    .header .container{
        width:calc(100% - 12px) !important;
        padding:5px 0 !important;
        grid-template-columns:minmax(0,1fr) 38px 78px 40px !important;
        gap:5px !important;
    }
    .header .logo{grid-column:1 !important;}
    .header .logo img{width:51px !important; height:51px !important;}
    .header .navbar{grid-column:1 / -1 !important; grid-row:2 !important; position:absolute !important; top:calc(100% + 7px) !important; left:6px !important; right:6px !important; width:auto !important; margin:0 !important; padding:8px !important; display:block !important; visibility:hidden !important; opacity:0 !important; pointer-events:none !important; transform:translateY(-8px) !important; background:rgba(7,13,25,.985) !important; border:1px solid rgba(255,255,255,.10) !important; border-radius:14px !important; box-shadow:0 22px 55px rgba(0,0,0,.38) !important; z-index:100000 !important;}
    .header .navbar.mobile-open{visibility:visible !important; opacity:1 !important; pointer-events:auto !important; transform:translateY(0) !important;}
    .header .navbar ul{display:grid !important; grid-template-columns:1fr !important; gap:2px !important; white-space:normal !important;}
    .header .navbar a{width:100% !important; min-height:42px !important; justify-content:flex-start !important; padding:10px 13px !important; font-size:12px !important; box-sizing:border-box !important;}
    .header .header-cart{grid-column:2 !important; width:38px !important; height:38px !important; min-width:38px !important; border-radius:10px !important;}
    .header .header-cart i{font-size:15px !important;}
    .header .header-cart span{top:-4px !important; right:-4px !important; min-width:15px !important; height:15px !important; font-size:7px !important;}
    .header .quote-btn{grid-column:3 !important; width:78px !important; min-width:78px !important; height:38px !important; min-height:38px !important; padding:0 6px !important; font-size:8.5px !important; border-radius:10px !important;}
    .header .mobile-menu-btn{grid-column:4 !important; display:flex !important; align-items:center !important; justify-content:center !important; flex-direction:column !important; gap:5px !important; width:38px !important; height:38px !important; min-width:38px !important; min-height:38px !important; padding:0 !important; margin:0 !important; border:1px solid rgba(255,255,255,.14) !important; border-radius:10px !important; background:rgba(255,255,255,.07) !important; cursor:pointer !important; z-index:100001 !important;}
    .header .mobile-menu-btn span{display:block !important; width:18px !important; height:2px !important; margin:0 !important; border-radius:999px !important; background:#fff !important; transition:transform .22s ease,opacity .22s ease !important;}
    .header .mobile-menu-btn.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg) !important;}
    .header .mobile-menu-btn.is-open span:nth-child(2){opacity:0 !important;}
    .header .mobile-menu-btn.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg) !important;}
}

@media (max-width:420px){
    .header,
    .header .container{height:64px !important; min-height:64px !important;}
    .header .container{width:calc(100% - 10px) !important; grid-template-columns:minmax(0,1fr) 36px 74px 36px !important; gap:4px !important;}
    .header .logo img{width:49px !important; height:49px !important;}
    .header .header-cart,.header .mobile-menu-btn{width:36px !important; height:36px !important; min-width:36px !important; min-height:36px !important;}
    .header .quote-btn{width:74px !important; min-width:74px !important; height:36px !important; min-height:36px !important; font-size:8px !important;}
}

/* ===== Extracted from products.html — inline style block 1 ===== */
/* AR CABLES PRODUCTS PAGE — HEADER FIX ONLY */
html, body {
    margin: 0;
    padding: 0;
}

body {
    padding-top: 78px;
}

.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    margin: 0 !important;
}

/* Keep the page content below the fixed header */
.page-banner {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
}


/* =========================================================
   FINAL MOBILE HEADER FIX — PRODUCTS PAGE
   Fixed header; Get Quote stays inside header.
   ========================================================= */
@media (max-width:760px){
    html,body{overflow-x:hidden !important;}
    body{padding-top:72px !important;}
    .header{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        right:0 !important;
        width:100% !important;
        height:68px !important;
        min-height:68px !important;
        margin:0 !important;
        z-index:999999 !important;
    }
    .header .container{
        width:calc(100% - 12px) !important;
        height:68px !important;
        min-height:68px !important;
        margin:0 auto !important;
        padding:5px 0 !important;
        display:grid !important;
        grid-template-columns:minmax(0,1fr) 78px 40px !important;
        grid-template-rows:68px !important;
        align-items:center !important;
        gap:5px !important;
        box-sizing:border-box !important;
    }
    .header .logo{grid-column:1 !important;grid-row:1 !important;}
    .header .logo img{width:51px !important;height:51px !important;max-width:51px !important;}
    .header .navbar{top:68px !important;}
    .header .quote-btn{grid-column:2 !important;grid-row:1 !important;justify-self:center !important;width:78px !important;min-width:78px !important;max-width:78px !important;height:38px !important;min-height:38px !important;margin:0 !important;padding:0 6px !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;box-sizing:border-box !important;white-space:nowrap !important;}
    .header .mobile-menu-btn{grid-column:3 !important;grid-row:1 !important;justify-self:end !important;width:40px !important;height:40px !important;min-width:40px !important;min-height:40px !important;margin:0 !important;}
}
@media (max-width:420px){
    body{padding-top:64px !important;}
    .header,.header .container{height:64px !important;min-height:64px !important;}
    .header .container{grid-template-columns:minmax(0,1fr) 74px 36px !important;grid-template-rows:64px !important;gap:4px !important;}
    .header .navbar{top:64px !important;}
    .header .logo img{width:49px !important;height:49px !important;}
    .header .quote-btn{width:74px !important;min-width:74px !important;max-width:74px !important;height:36px !important;min-height:36px !important;font-size:8px !important;}
    .header .mobile-menu-btn{width:36px !important;height:36px !important;min-width:36px !important;min-height:36px !important;}
}
