

/* ===== Extracted from index.html — inline style block 1 ===== */
/* =========================================================
   AR CABLES — PROFESSIONAL DESIGNER SYSTEM V2
   ========================================================= */

:root{
    --ar-orange:#ff5a1f;
    --ar-orange-2:#ff7a3d;
    --ar-black:#0b0d10;
    --ar-ink:#15171b;
    --ar-muted:#70757d;
    --ar-soft:#f6f7f9;
    --ar-line:#e9ebef;
    --ar-radius:20px;
    --ar-shadow:0 18px 55px rgba(16,24,40,.08);
}

*{box-sizing:border-box}

body{
    overflow-x:hidden;
    background:#fff;
    color:var(--ar-ink);
}

.container{
    width:min(1180px,calc(100% - 40px));
}

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

.header{
    position:fixed;
    inset:0 0 auto 0;
    z-index:9999;
    background:rgba(7,9,12,.78);
    border-bottom:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    box-shadow:0 10px 35px rgba(0,0,0,.10);
}

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

.logo{
    flex:0 0 auto;
}

.logo a{
    display:flex;
    align-items:center;
}

.logo img{
    width:54px;
    height:54px;
    object-fit:contain;
    display:block;
}

.navbar{
    margin-left:auto;
}

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

.navbar a{
    position:relative;
    display:flex;
    align-items:center;
    padding:10px 14px;
    color:rgba(255,255,255,.74);
    border-radius:10px;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    letter-spacing:.15px;
    transition:.25s ease;
}

.navbar a:hover{
    color:#fff;
    background:rgba(255,255,255,.07);
}

.navbar a.active{
    color:#fff;
    background:rgba(255,255,255,.075);
}

.navbar a.active::after{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:4px;
    height:2px;
    border-radius:10px;
    background:var(--ar-orange);
    box-shadow:0 0 12px rgba(255,90,31,.65);
}

.quote-btn{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:118px;
    min-height:42px;
    padding:10px 18px;
    border-radius:11px;
    background:linear-gradient(135deg,var(--ar-orange-2),var(--ar-orange));
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(255,90,31,.22);
    transition:.25s ease;
}

.quote-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 32px rgba(255,90,31,.32);
}

.mobile-menu-btn{
    display:none;
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:11px;
    background:rgba(255,255,255,.06);
    cursor:pointer;
    padding:0;
}

.mobile-menu-btn span,
.mobile-menu-btn span::before,
.mobile-menu-btn span::after{
    display:block;
    width:19px;
    height:2px;
    margin:auto;
    border-radius:5px;
    background:#fff;
    transition:.25s ease;
}

.mobile-menu-btn span{
    position:relative;
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after{
    content:"";
    position:absolute;
    left:0;
}

.mobile-menu-btn span::before{top:-7px}
.mobile-menu-btn span::after{top:7px}

/* =========================================================
   HERO
   ========================================================= */

.hero{
    min-height:100svh;
    padding-top:78px;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#090b0e;
}

.hero-slider,
.hero-slider .slide{
    position:absolute;
    inset:0;
}

.hero-slider .slide{
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    transform:scale(1.02);
}

.hero-slider::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 78% 46%,rgba(255,90,31,.10),transparent 28%),
        linear-gradient(90deg,rgba(4,6,9,.88) 0%,rgba(4,6,9,.70) 40%,rgba(4,6,9,.32) 73%,rgba(4,6,9,.48) 100%);
}

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

.hero-content{
    width:min(720px,100%);
    padding:80px 0 110px;
}

.hero .section-subtitle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border:1px solid rgba(255,119,68,.35);
    border-radius:999px;
    background:rgba(255,90,31,.11);
    color:#ffb18e;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    backdrop-filter:blur(10px);
}

.hero h1{
    margin:22px 0 18px;
    max-width:790px;
    color:#fff;
    font-size:clamp(44px,5.8vw,78px);
    line-height:1.01;
    letter-spacing:-3px;
    font-weight:800;
    text-shadow:0 12px 35px rgba(0,0,0,.32);
}

.hero h1 span{
    display:block;
    color:#ff6427;
    margin-top:5px;
}

.hero p{
    max-width:610px;
    margin:0;
    color:rgba(255,255,255,.80);
    font-size:15px;
    line-height:1.85;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:31px;
}

.hero-buttons .btn{
    min-width:156px;
    min-height:48px;
    padding:12px 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
    transition:.25s ease;
}

.hero-buttons .btn:not(.btn-outline){
    background:linear-gradient(135deg,#ff7439,#f34f14);
    color:#fff;
    box-shadow:0 12px 30px rgba(255,90,31,.26);
}

.hero-buttons .btn:not(.btn-outline):hover{
    transform:translateY(-3px);
    box-shadow:0 17px 35px rgba(255,90,31,.34);
}

.hero-buttons .btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
    background:rgba(255,255,255,.065);
    backdrop-filter:blur(10px);
}

.hero-buttons .btn-outline:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,.12);
}

.hero-trust{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:34px;
}

.hero-trust-item{
    display:flex;
    align-items:center;
    gap:8px;
    padding:9px 12px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:10px;
    background:rgba(255,255,255,.045);
    color:rgba(255,255,255,.74);
    font-size:10px;
    font-weight:600;
    backdrop-filter:blur(8px);
}

.hero-trust-item strong{
    color:#fff;
    font-weight:700;
}

.hero-trust-dot{
    width:6px;
    height:6px;
    flex:0 0 6px;
    border-radius:50%;
    background:#53d769;
    box-shadow:0 0 10px rgba(83,215,105,.7);
}

/* Remove old wave for cleaner premium composition */
.hero-wave{
    display:none!important;
}

.hero-shape{
    opacity:.15;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about{
    padding:105px 0;
    background:#fff;
}

.about .container{
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
    gap:72px;
    align-items:center;
}

.about-image{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--ar-shadow);
}

.about-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.12));
}

.about-image img{
    width:100%;
    min-height:450px;
    display:block;
    object-fit:cover;
    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.025);
}

.about-content h2{
    margin:0 0 20px;
    color:#15171b;
    font-size:clamp(32px,3.8vw,48px);
    line-height:1.08;
    letter-spacing:-1.5px;
}

.about-content p{
    color:#6e747c;
    font-size:14px;
    line-height:1.9;
}

.about-content .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    margin-top:10px;
    padding:11px 22px;
    border-radius:10px;
    background:#111317;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    transition:.25s ease;
}

.about-content .btn:hover{
    background:var(--ar-orange);
    transform:translateY(-2px);
}

/* =========================================================
   PRODUCT SECTION
   ========================================================= */

.home-product-section{
    padding:105px 0;
    background:
        radial-gradient(circle at 7% 12%,rgba(255,90,31,.055),transparent 25%),
        #f7f8fa;
}

.home-product-section .section-heading{
    max-width:680px;
    margin:0 auto 48px;
    text-align:center;
}

.home-product-section .section-subtitle{
    background:#fff;
    border:1px solid #f1d9ce;
    box-shadow:0 5px 16px rgba(15,23,42,.04);
}

.home-product-section .section-title{
    margin-top:13px;
    color:#15171b;
    font-size:clamp(31px,4vw,45px);
    letter-spacing:-1.5px;
}

.home-product-section .section-description{
    color:#777d85;
}

.home-product-section .home-product-grid{
    max-width:1180px;
    gap:27px;
}

.home-product-section .home-product-card{
    border:1px solid #e9ebef;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 34px rgba(15,23,42,.055);
}

.home-product-section .home-product-card:hover{
    transform:translateY(-7px);
    border-color:rgba(255,90,31,.22);
    box-shadow:0 24px 55px rgba(15,23,42,.12);
}

.home-product-section .product-image{
    height:220px;
    background:#fff;
}

.home-product-section .product-image img{
    width:100%;
    height:100%;
    padding:0;
    object-fit:cover;
}

.home-product-section .product-content{
    padding:3px 23px 23px;
}

.home-product-section .product-content h3{
    color:#181a1e;
    font-size:18px;
    letter-spacing:-.2px;
}

.home-product-section .product-content p{
    color:#777d85;
    line-height:1.65;
}

.home-product-section .product-rating{
    color:#eaa322;
}

.home-product-section .product-specs span{
    background:#f7f8fa;
    border-color:#e9ebef;
}

.home-product-section .product-action{
    padding-top:20px;
}

.home-product-section .product-action a{
    min-height:43px;
    border-radius:10px;
    background:#111317;
}

.home-product-section .product-action a:hover{
    background:var(--ar-orange);
}

.home-product-section .view-all-products{
    margin-top:34px;
}

.home-product-section .view-all-products a{
    min-height:44px;
    padding:11px 28px;
    border-radius:10px;
    background:var(--ar-orange);
    box-shadow:0 10px 24px rgba(255,90,31,.17);
}

/* =========================================================
   ALL LOWER SECTIONS
   ========================================================= */

.why-us,
.services,
.reviews,
.stats,
.seo-content{
    padding:95px 0;
}

.why-us{
    background:#fff;
}

.services{
    background:#f7f8fa;
}

.reviews{
    background:#fff;
}

.why-card,
.service-box,
.review-card,
.stat-box{
    border:1px solid #e9ebef;
    border-radius:18px;
    box-shadow:0 8px 28px rgba(15,23,42,.05);
    transition:.3s ease;
}

.why-card:hover,
.service-box:hover,
.review-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 42px rgba(15,23,42,.09);
}

.cta{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
        radial-gradient(circle at 82% 20%,rgba(255,90,31,.25),transparent 28%),
        linear-gradient(135deg,#0b0d10,#171a20);
}

.cta .btn{
    min-height:45px;
    padding:11px 26px;
    border-radius:10px;
    background:var(--ar-orange);
    box-shadow:0 10px 25px rgba(255,90,31,.18);
}

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

@media(max-width:760px){

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

    .logo img{
        width:48px;
        height:48px;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        flex:0 0 42px;
    }

    .navbar{
        position:absolute;
        top:calc(100% + 8px);
        left:15px;
        right:15px;
        margin:0;
        padding:8px;
        border:1px solid rgba(255,255,255,.10);
        border-radius:16px;
        background:rgba(12,14,18,.97);
        box-shadow:0 20px 45px rgba(0,0,0,.28);
        backdrop-filter:blur(18px);
        opacity:0;
        visibility:hidden;
        transform:translateY(-8px);
        transition:.25s ease;
    }

    .navbar.mobile-open{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .navbar ul{
        display:grid!important;
        gap:3px!important;
    }

    .navbar a{
        width:100%;
        padding:12px 13px;
        font-size:12px;
    }

    .navbar a.active::after{
        left:13px;
        right:auto;
        width:20px;
        bottom:7px;
    }

    .quote-btn{
        min-width:84px;
        min-height:39px;
        padding:9px 10px;
        font-size:10px;
    }

    .hero{
        min-height:700px;
        padding-top:68px;
    }

    .hero-slider::after{
        background:
            linear-gradient(90deg,rgba(4,6,9,.87),rgba(4,6,9,.53)),
            linear-gradient(0deg,rgba(4,6,9,.35),transparent 55%);
    }

    .hero .container{
        width:min(100% - 34px,1180px);
    }

    .hero-content{
        padding:62px 0 82px;
    }

    .hero h1{
        margin:18px 0 16px;
        font-size:clamp(37px,10vw,52px);
        line-height:1.04;
        letter-spacing:-1.6px;
    }

    .hero h1 span{
        margin-top:5px;
    }

    .hero p{
        font-size:13px;
        line-height:1.75;
    }

    .hero-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:9px;
        margin-top:25px;
    }

    .hero-buttons .btn{
        min-width:0;
        width:100%;
        min-height:45px;
        padding:10px 12px;
        font-size:11px;
    }

    .hero-trust{
        gap:7px;
        margin-top:22px;
    }

    .hero-trust-item{
        padding:8px 9px;
        font-size:9px;
    }

    .about,
    .home-product-section,
    .why-us,
    .services,
    .reviews,
    .stats,
    .seo-content{
        padding:70px 0;
    }

    .about .container{
        grid-template-columns:1fr;
        gap:32px;
    }

    .about-image img{
        min-height:280px;
        max-height:350px;
    }

    .about-content h2{
        font-size:32px;
    }

    .home-product-section .home-product-grid{
        grid-template-columns:1fr;
        max-width:500px;
        gap:19px;
    }

    .home-product-section .product-image{
        height:215px;
    }

    .home-product-section .product-content h3,
    .home-product-section .product-content p{
        min-height:auto;
    }

    .home-product-section .product-action{
        padding-top:18px;
    }

    .cta{
        padding:75px 0;
    }
}

@media(max-width:430px){

    .container{
        width:calc(100% - 28px);
    }

    .header .container{
        padding:0;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .quote-btn{
        min-width:76px;
        font-size:9px;
    }

    .hero{
        min-height:660px;
    }

    .hero-content{
        padding:55px 0 70px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:12.5px;
    }

    .hero-buttons{
        grid-template-columns:1fr;
    }

    .hero-trust{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .hero-trust-item{
        justify-content:center;
    }

    .home-product-section .product-image{
        height:190px;
    }
}

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


/* ===== Extracted from index.html — inline style block 2 ===== */
/* =========================================================
   AR CABLES — FINAL DESIGNER POLISH
   Based on desktop + mobile preview
   ========================================================= */

/* ---------- HEADER / DESKTOP ---------- */

.header{
    position:fixed!important;
    top:0!important;
    left:0!important;
    right:0!important;
    z-index:99999!important;
    background:rgba(8,10,13,.86)!important;
    backdrop-filter:blur(18px)!important;
    -webkit-backdrop-filter:blur(18px)!important;
    border-bottom:1px solid rgba(255,255,255,.075)!important;
}

.header .container{
    min-height:74px!important;
    display:grid!important;
    grid-template-columns:1fr auto 1fr!important;
    align-items:center!important;
    gap:24px!important;
}

.header .logo{
    justify-self:start!important;
}

.header .navbar{
    justify-self:center!important;
    margin:0!important;
}

.header .navbar ul{
    gap:3px!important;
}

.header .quote-btn{
    justify-self:end!important;
    min-width:112px!important;
    min-height:40px!important;
    border-radius:10px!important;
}

/* ---------- HERO / DESKTOP ---------- */

.hero{
    min-height:100svh!important;
    padding-top:74px!important;
}

.hero-slider::after{
    background:
        linear-gradient(90deg,
            rgba(3,5,8,.84) 0%,
            rgba(3,5,8,.68) 36%,
            rgba(3,5,8,.31) 72%,
            rgba(3,5,8,.42) 100%)!important;
}

.hero .container{
    width:min(1180px,calc(100% - 40px))!important;
}

.hero-content{
    max-width:670px!important;
    padding:72px 0 90px!important;
    text-align:left!important;
}

.hero h1{
    max-width:700px!important;
    margin:20px 0 18px!important;
    font-size:clamp(44px,5.4vw,70px)!important;
    line-height:1.02!important;
    letter-spacing:-2.5px!important;
}

.hero h1 span{
    display:block!important;
    margin-top:4px!important;
}

.hero p{
    max-width:570px!important;
    font-size:14px!important;
    line-height:1.8!important;
}

.hero-buttons{
    margin-top:27px!important;
}

.hero-trust{
    margin-top:24px!important;
    gap:8px!important;
}

.hero-trust-item{
    padding:8px 10px!important;
    font-size:9px!important;
}

/* ---------- PRODUCT IMAGE ---------- */

.home-product-section .product-image{
    height:215px!important;
    overflow:hidden!important;
}

.home-product-section .product-image img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center!important;
}

/* ---------- MOBILE ---------- */

@media(max-width:760px){

    .header{
        height:68px!important;
    }

    .header .container{
        width:calc(100% - 28px)!important;
        min-height:68px!important;
        grid-template-columns:1fr auto auto!important;
        gap:9px!important;
    }

    .header .logo img{
        width:45px!important;
        height:45px!important;
    }

    /* REAL THREE-LINE HAMBURGER */
    .mobile-menu-btn{
        position:relative!important;
        width:40px!important;
        height:40px!important;
        min-width:40px!important;
        padding:0!important;
        margin:0!important;
        display:flex!important;
        flex-direction:column!important;
        align-items:center!important;
        justify-content:center!important;
        gap:5px!important;
        border:1px solid rgba(255,255,255,.12)!important;
        border-radius:11px!important;
        background:rgba(255,255,255,.07)!important;
        box-shadow:0 7px 18px rgba(0,0,0,.16)!important;
        cursor:pointer!important;
        z-index:100002!important;
        -webkit-tap-highlight-color:transparent!important;
    }

    .mobile-menu-btn span,
    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after{
        content:none!important;
    }

    .mobile-menu-btn span{
        display:block!important;
        width:18px!important;
        height:2px!important;
        flex:0 0 2px!important;
        margin:0!important;
        border-radius:20px!important;
        background:#fff!important;
        transform-origin:center!important;
        transition:transform .22s ease,opacity .22s ease!important;
    }

    .mobile-menu-btn.is-open span:nth-child(1){
        transform:translateY(7px) rotate(45deg)!important;
    }

    .mobile-menu-btn.is-open span:nth-child(2){
        opacity:0!important;
    }

    .mobile-menu-btn.is-open span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg)!important;
    }

    .header .quote-btn{
        justify-self:end!important;
        min-width:82px!important;
        width:82px!important;
        height:39px!important;
        min-height:39px!important;
        padding:0 9px!important;
        border-radius:10px!important;
        font-size:10px!important;
        line-height:1!important;
        white-space:nowrap!important;
    }

    /* MOBILE DROPDOWN */
    .header .navbar{
        position:absolute!important;
        top:calc(100% + 9px)!important;
        left:14px!important;
        right:14px!important;
        width:auto!important;
        margin:0!important;
        padding:8px!important;
        display:block!important;
        opacity:0!important;
        visibility:hidden!important;
        pointer-events:none!important;
        transform:translateY(-10px) scale(.985)!important;
        transform-origin:top center!important;
        border:1px solid rgba(255,255,255,.10)!important;
        border-radius:16px!important;
        background:rgba(9,11,14,.98)!important;
        box-shadow:0 22px 50px rgba(0,0,0,.35)!important;
        backdrop-filter:blur(20px)!important;
        -webkit-backdrop-filter:blur(20px)!important;
        transition:opacity .22s ease,transform .22s ease,visibility .22s ease!important;
        z-index:100001!important;
    }

    .header .navbar.mobile-open{
        opacity:1!important;
        visibility:visible!important;
        pointer-events:auto!important;
        transform:translateY(0) scale(1)!important;
    }

    .header .navbar ul{
        width:100%!important;
        display:grid!important;
        grid-template-columns:1fr!important;
        gap:2px!important;
        margin:0!important;
        padding:0!important;
    }

    .header .navbar li{
        width:100%!important;
    }

    .header .navbar a{
        width:100%!important;
        min-height:42px!important;
        display:flex!important;
        align-items:center!important;
        padding:11px 13px!important;
        border-radius:10px!important;
        font-size:12px!important;
    }

    .header .navbar a.active{
        background:rgba(255,90,31,.10)!important;
        color:#fff!important;
    }

    .header .navbar a.active::after{
        left:13px!important;
        right:auto!important;
        bottom:7px!important;
        width:18px!important;
        height:2px!important;
    }

    /* HERO MOBILE */
    .hero{
        min-height:calc(100svh - 0px)!important;
        height:auto!important;
        padding-top:68px!important;
        display:flex!important;
        align-items:center!important;
    }

    .hero-slider .slide{
        background-position:center center!important;
    }

    .hero-slider::after{
        background:
            linear-gradient(90deg,
                rgba(3,5,8,.86) 0%,
                rgba(3,5,8,.62) 58%,
                rgba(3,5,8,.44) 100%)!important;
    }

    .hero .container{
        width:calc(100% - 30px)!important;
    }

    .hero-content{
        max-width:100%!important;
        padding:64px 0 68px!important;
        text-align:left!important;
    }

    .hero .section-subtitle{
        padding:7px 11px!important;
        font-size:9px!important;
        letter-spacing:.8px!important;
    }

    .hero h1{
        max-width:100%!important;
        margin:17px 0 15px!important;
        font-size:clamp(33px,9.6vw,43px)!important;
        line-height:1.055!important;
        letter-spacing:-1.25px!important;
    }

    .hero h1 span{
        margin-top:3px!important;
    }

    .hero p{
        max-width:100%!important;
        font-size:12.5px!important;
        line-height:1.72!important;
    }

    .hero-buttons{
        width:100%!important;
        display:grid!important;
        grid-template-columns:1fr 1fr!important;
        gap:8px!important;
        margin-top:23px!important;
    }

    .hero-buttons .btn{
        width:100%!important;
        min-width:0!important;
        min-height:43px!important;
        padding:9px 8px!important;
        border-radius:9px!important;
        font-size:10.5px!important;
    }

    .hero-trust{
        display:grid!important;
        grid-template-columns:repeat(3,1fr)!important;
        width:100%!important;
        gap:6px!important;
        margin-top:17px!important;
    }

    .hero-trust-item{
        min-width:0!important;
        justify-content:center!important;
        padding:7px 4px!important;
        border-radius:8px!important;
        font-size:7.5px!important;
        text-align:center!important;
    }

    .hero-trust-dot{
        width:5px!important;
        height:5px!important;
        flex-basis:5px!important;
    }

    /* LOWER SECTION */
    .about,
    .home-product-section,
    .why-us,
    .services,
    .reviews,
    .stats,
    .seo-content{
        padding:65px 0!important;
    }

    .about .container{
        grid-template-columns:1fr!important;
        gap:30px!important;
    }

    .about-image img{
        min-height:260px!important;
        max-height:330px!important;
    }

    .home-product-section .home-product-grid{
        grid-template-columns:1fr!important;
        gap:18px!important;
    }

    .home-product-section .product-image{
        height:205px!important;
    }
}

@media(max-width:430px){

    .header .container{
        width:calc(100% - 22px)!important;
        gap:7px!important;
    }

    .header .logo img{
        width:43px!important;
        height:43px!important;
    }

    .header .quote-btn{
        width:78px!important;
        min-width:78px!important;
        font-size:9px!important;
    }

    .mobile-menu-btn{
        width:38px!important;
        min-width:38px!important;
        height:38px!important;
    }

    .hero .container{
        width:calc(100% - 26px)!important;
    }

    .hero-content{
        padding:57px 0 62px!important;
    }

    .hero h1{
        font-size:34px!important;
    }

    .hero p{
        font-size:12px!important;
    }

    .hero-buttons{
        grid-template-columns:1fr!important;
    }

    .hero-trust{
        grid-template-columns:1fr!important;
    }

    .hero-trust-item{
        min-height:30px!important;
    }
}


/* ===== Extracted from index.html — inline style block 3 ===== */
/* =========================================================
   FINAL FIX:
   MOBILE HEADER MUST STAY ABOVE THE HERO — NOT ON THE BANNER
   ========================================================= */

@media(max-width:760px){

    /* Header takes its own space */
    .header{
        position:relative!important;
        top:auto!important;
        left:auto!important;
        right:auto!important;
        width:100%!important;
        height:68px!important;
        min-height:68px!important;
        background:#0a0c0f!important;
        box-shadow:0 6px 20px rgba(0,0,0,.20)!important;
    }

    .header .container{
        height:68px!important;
        min-height:68px!important;
    }

    /* Logo stays inside header */
    .header .logo,
    .header .logo a,
    .header .logo img{
        position:relative!important;
        z-index:10!important;
    }

    /* Menu stays inside header */
    .header .mobile-menu-btn{
        position:relative!important;
        z-index:100!important;
    }

    /* Get Quote stays inside header */
    .header .quote-btn{
        position:relative!important;
        z-index:100!important;
    }

    /* Navigation dropdown also belongs to header */
    .header .navbar{
        top:calc(100% + 9px)!important;
    }

    /* Hero starts BELOW header */
    .hero{
        position:relative!important;
        margin-top:0!important;
        padding-top:0!important;
        min-height:calc(100svh - 68px)!important;
    }

    .hero .container{
        position:relative!important;
        z-index:5!important;
    }

    /* Keep hero content comfortably inside the banner */
    .hero-content{
        padding-top:62px!important;
        padding-bottom:62px!important;
    }
}

@media(max-width:430px){

    .header{
        height:64px!important;
        min-height:64px!important;
    }

    .header .container{
        height:64px!important;
        min-height:64px!important;
    }

    .hero{
        min-height:calc(100svh - 64px)!important;
    }

    .hero-content{
        padding-top:52px!important;
        padding-bottom:58px!important;
    }
}


/* ===== Extracted from index.html — inline style block 4 ===== */
/* =========================================================
   HERO — NO BANNER / NO BACKGROUND IMAGE
   ========================================================= */

.hero{
    background:#090b0e!important;
    background-image:none!important;
}

.hero-slider,
.hero-slider::before,
.hero-slider::after,
.hero .slide{
    display:none!important;
    background-image:none!important;
}

.hero::before,
.hero::after{
    background-image:none!important;
}

.hero-wave{
    display:none!important;
}


/* ===== Extracted from index.html — inline style block 5 ===== */
/* =========================================================
   AR CABLES — FINAL MOBILE HEADER FIX
   Header stays locked to the viewport while the page scrolls.
   ========================================================= */

@media screen and (max-width:760px){

    html{
        overflow-x:hidden !important;
    }

    body{
        overflow-x:hidden !important;
        padding-top:68px !important;
    }

    .header{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        right:0 !important;
        bottom:auto !important;
        width:100% !important;
        height:68px !important;
        min-height:68px !important;
        margin:0 !important;
        transform:none !important;
        z-index:2147483647 !important;
        background:#0a0c0f !important;
        isolation:isolate !important;
    }

    .header .container{
        position:relative !important;
        width:calc(100% - 22px) !important;
        height:68px !important;
        min-height:68px !important;
        margin:0 auto !important;
        padding:0 !important;
        display:grid !important;
        grid-template-columns:minmax(0,1fr) 40px 82px !important;
        align-items:center !important;
        gap:7px !important;
    }

    .header .logo{
        position:relative !important;
        z-index:2 !important;
        justify-self:start !important;
        margin:0 !important;
    }

    .header .logo img{
        width:48px !important;
        height:48px !important;
        display:block !important;
        object-fit:contain !important;
    }

    .header .mobile-menu-btn{
        position:relative !important;
        z-index:3 !important;
        display:flex !important;
        width:40px !important;
        height:40px !important;
        min-width:40px !important;
        min-height:40px !important;
        margin:0 !important;
        padding:0 !important;
        align-items:center !important;
        justify-content:center !important;
        flex-direction:column !important;
        gap:5px !important;
        border:1px solid rgba(255,255,255,.14) !important;
        border-radius:10px !important;
        background:rgba(255,255,255,.07) !important;
        cursor:pointer !important;
    }

    .header .mobile-menu-btn span{
        display:block !important;
        width:19px !important;
        height:2px !important;
        min-height:2px !important;
        margin:0 !important;
        padding:0 !important;
        background:#fff !important;
        border-radius:20px !important;
        position:relative !important;
    }

    .header .quote-btn{
        position:relative !important;
        z-index:3 !important;
        justify-self:end !important;
        width:82px !important;
        min-width:82px !important;
        height:39px !important;
        min-height:39px !important;
        margin:0 !important;
        padding:0 8px !important;
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        border-radius:10px !important;
        white-space:nowrap !important;
        font-size:10px !important;
        line-height:1 !important;
    }

    /* Dropdown belongs to the fixed header */
    .header .navbar{
        position:absolute !important;
        top:calc(100% + 8px) !important;
        left:10px !important;
        right:10px !important;
        width:auto !important;
        margin:0 !important;
        padding:8px !important;
        z-index:4 !important;
        background:rgba(9,11,14,.98) !important;
    }

}

@media screen and (max-width:430px){

    body{
        padding-top:64px !important;
    }

    .header{
        height:64px !important;
        min-height:64px !important;
    }

    .header .container{
        width:calc(100% - 16px) !important;
        height:64px !important;
        min-height:64px !important;
        grid-template-columns:minmax(0,1fr) 38px 78px !important;
        gap:5px !important;
    }

    .header .logo img{
        width:44px !important;
        height:44px !important;
    }

    .header .mobile-menu-btn{
        width:38px !important;
        height:38px !important;
        min-width:38px !important;
        min-height:38px !important;
    }

    .header .quote-btn{
        width:78px !important;
        min-width:78px !important;
        height:38px !important;
        min-height:38px !important;
        font-size:9px !important;
    }
}


/* ===== Extracted from index.html — inline style block 6 ===== */
/* =========================================================
   AR CABLES — PREMIUM HERO ENHANCEMENT
   Keeps existing hero content; upgrades visual presentation.
   ========================================================= */

.hero{
    position:relative !important;
    isolation:isolate !important;
    overflow:hidden !important;
    background:
        radial-gradient(circle at 78% 38%,rgba(255,91,31,.13),transparent 28%),
        radial-gradient(circle at 18% 82%,rgba(255,255,255,.045),transparent 24%),
        #090b0e !important;
}

/* Premium ambient glow */
.hero::before{
    content:"" !important;
    position:absolute !important;
    inset:-20% -10% !important;
    z-index:0 !important;
    pointer-events:none !important;
    background:
        radial-gradient(circle at 72% 45%,rgba(255,90,31,.16),transparent 22%),
        radial-gradient(circle at 52% 80%,rgba(255,255,255,.045),transparent 25%) !important;
    filter:blur(8px) !important;
}

/* Diagonal premium light */
.hero::after{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
    pointer-events:none !important;
    background:
        linear-gradient(115deg,
            rgba(255,90,31,.08) 0%,
            transparent 28%,
            transparent 68%,
            rgba(255,90,31,.10) 100%),
        linear-gradient(90deg,
            rgba(5,7,10,.92) 0%,
            rgba(5,7,10,.67) 42%,
            rgba(5,7,10,.24) 74%,
            rgba(5,7,10,.46) 100%) !important;
}

/* Decorative cable-like rings */
.hero-shape{
    z-index:2 !important;
    pointer-events:none !important;
    border:1px solid rgba(255,90,31,.16) !important;
    background:transparent !important;
    box-shadow:
        0 0 55px rgba(255,90,31,.06),
        inset 0 0 35px rgba(255,90,31,.025) !important;
}

.hero-shape.shape1{
    width:390px !important;
    height:390px !important;
    right:-150px !important;
    top:8% !important;
    border-radius:50% !important;
    opacity:.7 !important;
}

.hero-shape.shape2{
    width:250px !important;
    height:250px !important;
    right:5% !important;
    bottom:-130px !important;
    border-radius:50% !important;
    opacity:.45 !important;
}

.hero-shape.shape3{
    width:120px !important;
    height:120px !important;
    right:30% !important;
    top:18% !important;
    border-radius:50% !important;
    opacity:.32 !important;
}

/* Content sits cleanly above effects */
.hero .container{
    position:relative !important;
    z-index:5 !important;
}

.hero-content{
    position:relative !important;
    z-index:6 !important;
    max-width:720px !important;
}

/* Small premium eyebrow */
.hero .section-subtitle{
    position:relative !important;
    overflow:hidden !important;
    border:1px solid rgba(255,117,68,.35) !important;
    background:rgba(255,90,31,.09) !important;
    box-shadow:
        0 10px 35px rgba(0,0,0,.18),
        inset 0 0 20px rgba(255,90,31,.04) !important;
}

.hero .section-subtitle::before{
    content:"" !important;
    width:6px !important;
    height:6px !important;
    margin-right:2px !important;
    border-radius:50% !important;
    background:#ff6427 !important;
    box-shadow:0 0 12px rgba(255,90,31,.8) !important;
}

/* More premium headline */
.hero h1{
    position:relative !important;
    text-shadow:
        0 8px 30px rgba(0,0,0,.38),
        0 0 35px rgba(255,255,255,.025) !important;
}

.hero h1 span{
    background:linear-gradient(90deg,#ff5a1f 0%,#ff8b55 48%,#ff5a1f 100%) !important;
    background-size:180% auto !important;
    -webkit-background-clip:text !important;
    background-clip:text !important;
    -webkit-text-fill-color:transparent !important;
    animation:arHeroText 5s ease-in-out infinite !important;
}

@keyframes arHeroText{
    0%,100%{background-position:0% center}
    50%{background-position:100% center}
}

/* Better paragraph */
.hero p{
    max-width:620px !important;
    color:rgba(255,255,255,.76) !important;
    text-shadow:0 3px 15px rgba(0,0,0,.25) !important;
}

/* Premium buttons */
.hero-buttons{
    position:relative !important;
    z-index:7 !important;
}

.hero-buttons .btn{
    position:relative !important;
    overflow:hidden !important;
    border-radius:12px !important;
}

.hero-buttons .btn:not(.btn-outline){
    background:linear-gradient(135deg,#ff7a3d,#f34f14) !important;
    box-shadow:
        0 12px 30px rgba(255,90,31,.24),
        0 0 0 1px rgba(255,255,255,.06) inset !important;
}

.hero-buttons .btn:not(.btn-outline)::before{
    content:"" !important;
    position:absolute !important;
    top:0 !important;
    left:-120% !important;
    width:70% !important;
    height:100% !important;
    transform:skewX(-20deg) !important;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.20),transparent) !important;
    transition:left .65s ease !important;
}

.hero-buttons .btn:not(.btn-outline):hover::before{
    left:140% !important;
}

.hero-buttons .btn-outline{
    border:1px solid rgba(255,255,255,.24) !important;
    background:rgba(255,255,255,.055) !important;
    box-shadow:0 10px 25px rgba(0,0,0,.12) !important;
}

/* Trust chips */
.hero-trust{
    position:relative !important;
    z-index:7 !important;
}

.hero-trust-item{
    border:1px solid rgba(255,255,255,.10) !important;
    background:rgba(255,255,255,.045) !important;
    box-shadow:0 8px 25px rgba(0,0,0,.12) !important;
    backdrop-filter:blur(12px) !important;
    -webkit-backdrop-filter:blur(12px) !important;
}

.hero-trust-dot{
    animation:arHeroDot 2.2s ease-in-out infinite !important;
}

@keyframes arHeroDot{
    0%,100%{box-shadow:0 0 6px rgba(83,215,105,.45)}
    50%{box-shadow:0 0 15px rgba(83,215,105,.95)}
}

/* Floating particles */
.hero-particles{
    position:absolute !important;
    inset:0 !important;
    z-index:3 !important;
    pointer-events:none !important;
    overflow:hidden !important;
}

.hero-particles span{
    position:absolute !important;
    width:4px !important;
    height:4px !important;
    border-radius:50% !important;
    background:rgba(255,108,53,.65) !important;
    box-shadow:0 0 14px rgba(255,90,31,.65) !important;
    animation:arParticle 7s linear infinite !important;
}

.hero-particles span:nth-child(1){left:63%;top:24%;animation-delay:0s}
.hero-particles span:nth-child(2){left:78%;top:62%;animation-delay:1.2s}
.hero-particles span:nth-child(3){left:88%;top:32%;animation-delay:2.4s}
.hero-particles span:nth-child(4){left:69%;top:78%;animation-delay:3.3s}
.hero-particles span:nth-child(5){left:54%;top:18%;animation-delay:4.1s}

@keyframes arParticle{
    0%{transform:translate3d(0,18px,0);opacity:0}
    15%{opacity:.8}
    50%{transform:translate3d(14px,-24px,0);opacity:.45}
    85%{opacity:.75}
    100%{transform:translate3d(-8px,-58px,0);opacity:0}
}

/* Mobile: keep it stylish without overcrowding */
@media(max-width:760px){

    .hero{
        background:
            radial-gradient(circle at 85% 32%,rgba(255,90,31,.15),transparent 31%),
            #090b0e !important;
    }

    .hero::after{
        background:
            linear-gradient(90deg,
                rgba(4,6,9,.88) 0%,
                rgba(4,6,9,.60) 62%,
                rgba(4,6,9,.38) 100%) !important;
    }

    .hero-shape.shape1{
        width:260px !important;
        height:260px !important;
        right:-135px !important;
        top:15% !important;
    }

    .hero-shape.shape2{
        width:170px !important;
        height:170px !important;
        right:-65px !important;
        bottom:-80px !important;
    }

    .hero-shape.shape3{
        width:75px !important;
        height:75px !important;
        right:28% !important;
        top:16% !important;
    }

    .hero h1 span{
        background-size:150% auto !important;
    }

    .hero-particles span{
        width:3px !important;
        height:3px !important;
    }

}

@media(prefers-reduced-motion:reduce){
    .hero h1 span,
    .hero-particles span,
    .hero-trust-dot{
        animation:none !important;
    }
}


/* ===== Extracted from index.html — inline style block 7 ===== */
.home-product-section{padding:80px 0;background:#fff}
.home-product-section .section-heading{text-align:center;max-width:720px;margin:0 auto 35px}
.home-product-section .section-subtitle{display:inline-block;padding:6px 14px;border-radius:20px;background:#fff1eb;color:#ff5a1f;font-size:11px;font-weight:700;letter-spacing:.7px}
.home-product-section .section-title{margin:12px 0 10px;font-size:34px;line-height:1.2}
.home-product-section .section-description{margin:0;color:#777;font-size:14px;line-height:1.6}
.home-product-section .home-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;max-width:1120px;margin:0 auto;align-items:stretch}
.home-product-section .home-product-card{position:relative;display:flex;flex-direction:column;min-width:0;height:100%;overflow:hidden;background:#fff;border:1px solid #eceef2;border-radius:18px;box-shadow:0 8px 28px rgba(15,23,42,.07);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease}
.home-product-section .home-product-card:hover{transform:translateY(-7px);border-color:rgba(255,90,31,.22);box-shadow:0 18px 42px rgba(15,23,42,.13)}
.home-product-section .product-badge{position:absolute;top:14px;left:14px;z-index:3;padding:6px 12px;border-radius:20px;background:#ff5a1f;color:#fff;font-size:10px;font-weight:700;letter-spacing:.6px}
.home-product-section .product-image{width:100%;height:205px;display:flex;align-items:center;justify-content:center;background:#fff;overflow:hidden}
.home-product-section .product-image img{width:100%;height:100%;object-fit:contain;padding:20px 28px;display:block;transition:transform .35s ease}
.home-product-section .home-product-card:hover .product-image img{transform:scale(1.045)}
.home-product-section .product-content{display:flex;flex-direction:column;flex:1;padding:0 22px 21px}
.home-product-section .product-content h3{margin:17px 0 7px;min-height:52px;color:#151515;font-size:20px;line-height:1.3;font-weight:700}
.home-product-section .product-content p{margin:0;min-height:42px;color:#70757d;font-size:13px;line-height:1.6}
.home-product-section .product-rating{padding-top:12px;font-size:13px;line-height:1}
.home-product-section .product-rating span{margin-left:5px;color:#666;font-size:12px}
.home-product-section .product-specs{display:flex;flex-wrap:wrap;gap:7px;padding-top:14px}
.home-product-section .product-specs span{padding:6px 10px;border:1px solid #eceef1;border-radius:20px;background:#f7f8fa;color:#555b63;font-size:11px;font-weight:600}
.home-product-section .product-action{margin-top:auto;padding-top:17px}
.home-product-section .product-action a{width:100%;min-height:40px;display:flex;align-items:center;justify-content:center;padding:9px 12px;border-radius:10px;background:#111;color:#fff;text-decoration:none;font-size:12px;font-weight:700;transition:.25s ease}
.home-product-section .product-action a:hover{background:#ff5a1f;transform:translateY(-2px)}
.home-product-section .view-all-products{display:flex;justify-content:center;margin-top:32px}
.home-product-section .view-all-products a{display:inline-flex;align-items:center;justify-content:center;padding:12px 28px;border-radius:10px;background:#ff5a1f;color:#fff;text-decoration:none;font-size:13px;font-weight:700;transition:.25s ease}
.home-product-section .view-all-products a:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(255,90,31,.2)}
@media(max-width:991px){.home-product-section .home-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.home-product-section{padding:60px 0}.home-product-section .section-title{font-size:28px}.home-product-section .home-product-grid{grid-template-columns:1fr;max-width:420px}}
@media(max-width:430px){.home-product-section .product-image{height:200px}.home-product-section .product-content h3{font-size:19px}}


/* =========================================================
   FINAL HOME HERO — REMOVE BACKGROUND IMAGE/VIDEO/GRAPHICS
   ========================================================= */
.hero{
    background:#090b0e !important;
    background-image:none !important;
}

.hero::before,
.hero::after{
    content:none !important;
    display:none !important;
    background:none !important;
    animation:none !important;
    transform:none !important;
}

.hero-slider,
.hero-slider::before,
.hero-slider::after,
.hero-slider .slide{
    display:none !important;
    background:none !important;
    background-image:none !important;
}


/* =========================
   HOME HERO VIDEO
========================= */
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
    pointer-events:none;
}
.hero-video + .hero-slider{display:none!important;}

/* ==========================
   TOP SELLING PRODUCTS
========================== */
.top-selling-section{padding:78px 0;background:linear-gradient(180deg,#f8f9fb 0%,#ffffff 100%);border-top:1px solid #edf0f4}
.top-selling-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;max-width:1160px;margin:0 auto 34px}
.top-selling-kicker{display:inline-flex;align-items:center;padding:7px 13px;border-radius:999px;background:#fff1eb;color:#f45a22;font-size:11px;font-weight:800;letter-spacing:1px}
.top-selling-heading h2{margin:13px 0 8px;color:#14171b;font-size:34px;line-height:1.18;font-weight:800}
.top-selling-heading p{margin:0;max-width:690px;color:#737982;font-size:14px;line-height:1.7}
.top-selling-view-all{display:inline-flex;align-items:center;gap:9px;white-space:nowrap;padding:12px 18px;border:1px solid #e3e7ec;border-radius:12px;background:#fff;color:#17191d;text-decoration:none;font-size:12px;font-weight:800;box-shadow:0 7px 20px rgba(15,23,42,.05);transition:.25s ease}
.top-selling-view-all:hover{transform:translateY(-2px);border-color:#ff6a31;color:#f45a22}
.top-selling-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;max-width:1160px;margin:0 auto}
.top-selling-card{position:relative;display:flex;flex-direction:column;overflow:hidden;min-width:0;background:#fff;border:1px solid #e7eaf0;border-radius:18px;box-shadow:0 9px 28px rgba(15,23,42,.06);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease}
.top-selling-card:hover{transform:translateY(-6px);border-color:rgba(244,90,34,.25);box-shadow:0 18px 38px rgba(15,23,42,.12)}
.top-selling-badge{position:absolute;top:13px;left:13px;z-index:2;padding:6px 9px;border-radius:999px;background:#f45a22;color:#fff;font-size:9px;font-weight:800;letter-spacing:.65px}
.top-selling-badge.aluminium{background:#20252b}
.top-selling-image{height:185px;display:flex;align-items:center;justify-content:center;padding:16px;background:linear-gradient(145deg,#fff,#f7f8fa);border-bottom:1px solid #eef0f3}
.top-selling-image img{width:100%;height:100%;object-fit:contain;display:block;transition:transform .3s ease}
.top-selling-card:hover .top-selling-image img{transform:scale(1.05)}
.top-selling-content{display:flex;flex-direction:column;flex:1;padding:18px 18px 17px}
.top-selling-type{color:#f45a22;font-size:9px;font-weight:800;letter-spacing:1px}
.top-selling-content h3{margin:8px 0 7px;color:#17191d;font-size:17px;line-height:1.28;font-weight:800}
.top-selling-content p{margin:0;color:#737982;font-size:12px;line-height:1.55;min-height:56px}
.top-selling-meta{display:flex;flex-wrap:wrap;gap:6px;margin:13px 0 15px}
.top-selling-meta span{padding:5px 8px;border-radius:999px;background:#f6f7f9;border:1px solid #e9ebef;color:#555c65;font-size:9px;font-weight:700}
.top-selling-action{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding:10px 12px;border-radius:10px;background:#111418;color:#fff;text-decoration:none;font-size:11px;font-weight:800;transition:.25s ease}
.top-selling-action:hover{background:#f45a22;transform:translateY(-1px)}
@media(max-width:1100px){.top-selling-grid{grid-template-columns:repeat(3,minmax(0,1fr));padding:0 12px}.top-selling-heading{padding:0 12px}}
@media(max-width:760px){.top-selling-section{padding:62px 0}.top-selling-heading{display:block;margin-bottom:26px}.top-selling-heading h2{font-size:29px}.top-selling-view-all{margin-top:18px}.top-selling-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.top-selling-image{height:165px}.top-selling-content{padding:15px}.top-selling-content h3{font-size:16px}.top-selling-content p{min-height:auto}}
@media(max-width:480px){.top-selling-grid{grid-template-columns:1fr;max-width:390px;margin:0 auto}.top-selling-image{height:205px}.top-selling-heading{padding:0 18px}.top-selling-heading h2{font-size:27px}.top-selling-heading p{font-size:13px}}
