/* GadgetMobi LED TVs & Audio — Apple/Product page style */
:root{--dark:#1f1f1f;--orange:#dc7123;--orange-light:#ffad68;--cream:#f4f1ea;--text:#2d2d2d;--muted:#777;--border:#e2ddd5}
*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif}html{scroll-behavior:smooth}body{background:var(--cream);color:var(--text);overflow-x:hidden}a{text-decoration:none;color:inherit}
.container{width:min(100% - 100px,1300px);margin:auto}
.announcement-bar{height:36px;background:#1f1f1f;color:#fff;display:flex;align-items:center}.announcement-content{display:flex;justify-content:center;gap:55px;font-size:12px}
header{height:88px;background:#fff;position:sticky;top:0;z-index:1000;box-shadow:0 4px 20px rgba(0,0,0,.08)}.navbar{height:100%;display:flex;align-items:center;justify-content:space-between;gap:25px}
.brand{display:flex;align-items:center;min-width:250px}.brand img{width:55px;height:55px;object-fit:contain}.logo-text{margin-left:10px}.logo-text h2{font-size:28px;line-height:1;font-weight:800;color:#464646}.logo-text h2 span,.footer h2 span{color:var(--orange)}.logo-text p{font-size:11px;color:#999;margin-top:5px}
.nav-links{display:flex;gap:7px}.nav-links a{position:relative;padding:12px 14px;color:#444;font-size:15px;font-weight:600}.nav-links a:hover,.nav-links a.active{color:var(--orange)}.nav-links a.active:after{content:"";position:absolute;left:14px;right:14px;bottom:1px;height:3px;background:var(--orange);border-radius:5px}
.header-actions{display:flex;gap:10px}.call-btn,.whatsapp-btn,.cart-btn,.user-btn{width:46px;height:46px;border:0;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:17px}.call-btn{background:#464646;color:#fff}.whatsapp-btn{background:#25d366;color:#fff}.cart-btn{background:var(--orange);color:#fff;position:relative}.user-btn{background:#f3f3f3;color:#333}.call-btn:hover,.whatsapp-btn:hover,.cart-btn:hover,.user-btn:hover{transform:translateY(-4px)}#cartCount{position:absolute;top:-5px;right:-4px;width:19px;height:19px;border-radius:50%;background:red;color:#fff;font-size:10px;display:flex;align-items:center;justify-content:center}
.product-hero{min-height:540px;color:#fff;background:linear-gradient(110deg,#292929,#464646 45%,#8a5c40 75%,#dc7123);position:relative;overflow:hidden}.product-hero:after{content:"";position:absolute;width:500px;height:500px;border:1px solid rgba(255,255,255,.13);border-radius:50%;right:-170px;bottom:-330px}
.hero-grid{min-height:540px;padding:65px 0;display:grid;grid-template-columns:1.2fr .8fr;align-items:center;gap:45px;position:relative;z-index:2}.hero-badge{display:inline-block;padding:10px 18px;border:1px solid rgba(255,255,255,.3);border-radius:30px;background:rgba(255,255,255,.08);font-size:12px;font-weight:600;margin-bottom:23px}.hero-content h1{font-size:56px;line-height:1.06;letter-spacing:-2px;margin-bottom:22px}.hero-content h1 span{color:#ffad68}.hero-content p{max-width:680px;color:#eee;font-size:15px;line-height:1.9;margin-bottom:28px}.hero-buttons{display:flex;gap:13px;margin-bottom:30px}.hero-btn{padding:15px 24px;border-radius:14px;font-size:13px;font-weight:700}.hero-btn.primary{background:#fff;color:var(--orange)}.hero-btn.secondary{color:#fff;border:1px solid rgba(255,255,255,.4)}.hero-features{display:flex;gap:28px;flex-wrap:wrap;font-size:12px}.hero-visual{display:flex;justify-content:center}.tv-card{width:320px;height:270px;border-radius:30px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.09);display:flex;flex-direction:column;align-items:center;justify-content:center;backdrop-filter:blur(8px)}.tv-card i{font-size:110px;margin-bottom:18px}.tv-card span{font-size:14px}
.products-section{padding:70px 0 90px}.section-title{text-align:center;margin-bottom:28px}.section-title span{color:var(--orange);font-size:13px;font-weight:700}.section-title h2{font-size:36px;margin:7px 0}.section-title p{font-size:14px;color:#777}.search-box{position:relative;margin-bottom:30px}.search-box i{position:absolute;left:20px;top:50%;transform:translateY(-50%);color:var(--orange)}.search-box input{width:100%;height:56px;padding:0 20px 0 50px;border:1px solid var(--border);border-radius:16px;outline:0;background:#fff;box-shadow:0 7px 25px rgba(0,0,0,.06)}
/* =========================================
   PRODUCT COLLECTION CARDS
========================================= */

.products-section{
    padding:45px 0 80px;
    background:var(--cream);
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    align-items:stretch;
}

/* =========================================
   PRODUCT CARD
========================================= */

.product-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    height:100%;
    min-height:455px;
    padding:16px;
    background:#fff;
    border:1px solid #e2ddd5;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.07);
    transition:all .35s ease;
}

.product-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 42px rgba(220,113,35,.18);
    border-color:rgba(220,113,35,.35);
}

/* =========================================
   IMAGE AREA
========================================= */

.product-image{
    position:relative;
    width:100%;
    height:235px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:14px;
    background:#f8f7f4;
    margin-bottom:14px;
}

.product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
    padding:8px;
    transition:transform .4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}

/* =========================================
   DISCOUNT BADGE
========================================= */

.discount-badge{
    position:absolute;
    top:10px;
    right:10px;
    z-index:5;
    padding:7px 11px;
    border-radius:10px;
    background:var(--orange);
    color:#fff;
    font-size:11px;
    font-weight:700;
    box-shadow:0 5px 12px rgba(220,113,35,.25);
}

/* =========================================
   STOCK BADGE
========================================= */

.stock-badge{
    position:absolute;
    top:48px;
    right:10px;
    z-index:5;
    padding:7px 11px;
    border-radius:10px;
    background:#40573d;
    color:#fff;
    font-size:11px;
    font-weight:600;
}

.stock-badge.out{
    background:#777;
}

/* =========================================
   PRODUCT INFO
========================================= */

.product-info{
    display:flex;
    flex-direction:column;
    flex:1;
    text-align:center;
}

.product-name{
    margin:0 0 5px;
    color:#252525;
    font-size:18px;
    font-weight:700;
    line-height:1.3;
}

.product-card:hover .product-name{
    color:var(--orange);
}

/* OLD PRICE */

.old-price{
    margin:0 0 4px;
    color:#999;
    font-size:12px;
    text-decoration:line-through;
}

/* CURRENT PRICE */

.current-price{
    margin:0 0 15px;
    color:var(--orange);
    font-size:18px;
    font-weight:800;
}

/* =========================================
   VIEW BUTTON
========================================= */

.product-btn{
    width:100%;
    height:43px;
    margin-top:auto;
    border:0;
    border-radius:12px;
    background:linear-gradient(
        135deg,
        #464646,
        var(--orange)
    );
    color:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.product-btn:hover{
    background:linear-gradient(
        135deg,
        var(--orange),
        #f58a2b
    );
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(220,113,35,.25);
}

/* OUT OF STOCK BUTTON */

.product-btn.disabled{
    background:#888;
    cursor:not-allowed;
}

.product-btn.disabled:hover{
    transform:none;
    box-shadow:none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:800px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .product-card{
        min-height:440px;
    }

    .product-image{
        height:220px;
    }

}

@media(max-width:550px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-card{
        min-height:430px;
    }

    .product-image{
        height:240px;
    }

}
.popup,.cartPopup,.checkoutPopup,.installmentPopup,.orderPopup,.installmentOrderPopup{position:fixed;inset:0;background:rgba(0,0,0,.68);display:none;align-items:center;justify-content:center;z-index:9999;padding:20px}.popup-box{background:#fff;width:90%;max-width:900px;padding:25px;border-radius:22px;display:flex;gap:25px;flex-wrap:wrap;max-height:90vh;overflow-y:auto}.install-box,.orderBox{background:#fff;width:90%;max-width:550px;padding:28px;border-radius:20px;max-height:85vh;overflow-y:auto}.popup .gallery img{width:70px;height:70px;object-fit:contain;border:2px solid #ddd;margin:5px;border-radius:10px}.imgWrapper{position:relative;overflow:hidden;width:300px}#mainImg{width:100%}.zoomControls{position:absolute;bottom:10px;right:10px}.zoomControls button{background:#1f1f1f;color:#fff;border:0;width:35px;height:35px;border-radius:50%}.actions button,.installBtn,.whatsappBtn,.closeOrder{padding:12px 16px;margin:5px;border:0;border-radius:10px;cursor:pointer}.actions button:first-child,.installBtn{background:var(--orange);color:#fff}.whatsappBtn{background:#25d366;color:#fff;width:100%}.actions button:last-child,.closeOrder{background:#de162a;color:#fff}.orderBox input,.install-box input,.install-box select{width:100%;padding:11px;margin:7px 0;border:1px solid #ddd;border-radius:9px}.cart-box{display:block}.cartPopup table{width:100%;border-collapse:collapse;margin:15px 0}.cartPopup td,.cartPopup th{padding:10px;border:1px solid #ddd;text-align:center}.cartPopup th{background:#1f1f1f;color:#fff}
.footer{background:#1f1f1f;color:#ddd;padding:70px 0 20px}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.3fr;gap:45px}.footer h2{font-size:34px;color:#fff}.footer p{color:#aaa;font-size:12px;line-height:1.8}.footer-col{display:flex;flex-direction:column;gap:9px}.footer-col h3{color:#fff;font-size:16px}.footer-col a,.footer-col span{color:#aaa;font-size:12px}.footer-col a:hover{color:var(--orange)}.footer-col i{width:18px;color:var(--orange)}.footer-bottom{text-align:center;margin-top:35px;padding-top:18px;border-top:1px solid #333;color:#888;font-size:11px}
@media(max-width:1100px){.products{grid-template-columns:repeat(3,1fr)}.hero-content h1{font-size:48px}.nav-links a{padding:10px 8px;font-size:13px}}
@media(max-width:800px){.container{width:min(100% - 36px,1300px)}.announcement-content{gap:18px;font-size:10px}header{height:auto}.navbar{padding:12px 0;flex-wrap:wrap}.brand{width:100%;justify-content:center}.nav-links{order:3;width:100%;overflow:auto}.header-actions{position:absolute;right:0;top:17px}.user-btn,.call-btn{display:none}.hero-grid{grid-template-columns:1fr;text-align:center;padding:55px 0}.hero-content p{margin-left:auto;margin-right:auto}.hero-buttons,.hero-features{justify-content:center}.hero-visual{display:none}.products{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:550px){.announcement-content span:not(:first-child){display:none}.hero-content h1{font-size:37px}.hero-buttons{flex-direction:column}.hero-btn{width:100%}.products{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr}.popup-box{width:96%}.imgWrapper{width:100%}}
