/* =========================================================
   GADGETMOBI DEALS PAGE
   Premium design matching Complaint + Contact pages
   ========================================================= */

:root{
    --orange:#dc7123;
    --orange-dark:#c65f16;
    --dark:#464646;
    --dark-2:#2e2e2e;
    --cream:#f4f1ea;
    --white:#fff;
    --muted:#777;
    --border:#e9e5df;
    --shadow:0 12px 35px rgba(0,0,0,.08);
    --shadow-hover:0 22px 50px rgba(0,0,0,.14);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:'Poppins',sans-serif;
    color:var(--dark-2);
    background:#fff;
    line-height:1.6;
    overflow-x:hidden;
}
img{max-width:100%;display:block}
button,input{font-family:inherit}
a{color:inherit}
.container{width:min(1200px,92%);margin:auto}
.announcement-bar{background:var(--dark);color:#fff;font-size:13px}.announcement-content{min-height:38px;display:flex;align-items:center;justify-content:center;gap:38px;flex-wrap:wrap;padding:7px 0}.announcement-content span{white-space:nowrap}


/* =========================================================
   HEADER
   ========================================================= */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(14px);
    border-bottom:1px solid #eee;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.navbar{
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:2px;
    flex-shrink:0;
}
.logo img{width:65px;height:50px;object-fit:contain}
.logo-text h2{font-size:30px;line-height:1.1;color:var(--dark)}
.logo-text h2 span{color:var(--orange)}
.logo-text p{font-size:15px;color:#888}

/*==================================================
                NAVIGATION MENU
==================================================*/

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex:1;
}

.nav-links a{
    position:relative;

    padding:28px 14px 25px;

    color:#444;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    transition:.3s ease;
}


/* HOVER COLOR */

.nav-links a:hover{
    color:var(--orange);
}


/* ORANGE UNDERLINE */

.nav-links a::after{
    content:"";

    position:absolute;

    left:14px;
    right:14px;
    bottom:16px;

    height:3px;

    background:var(--orange);

    border-radius:10px;

    transform:scaleX(0);

    transform-origin:center;

    transition:.3s ease;
}


/* HOVER LINE */

.nav-links a:hover::after{
    transform:scaleX(1);
}


/* ACTIVE PAGE */

.nav-links a.active{
    color:var(--orange);
}

.nav-links a.active::after{
    transform:scaleX(1);
}

.header-right{display:flex;align-items:center;gap:10px}
.call-btn,.whatsapp-btn,.login-btn,.cart-btn{
    width:46px;height:46px;border:0;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    text-decoration:none;cursor:pointer;position:relative;transition:.3s;
}
.call-btn{background:var(--dark);color:#fff}
.whatsapp-btn{background:#20c96b;color:#fff}
.login-btn{background:#f1eee8;color:var(--dark)}
.cart-btn{background:var(--orange);color:#fff}
.call-btn:hover,.whatsapp-btn:hover,.login-btn:hover,.cart-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 9px 20px rgba(0,0,0,.15);
}
.cart-btn span{
    position:absolute;top:-5px;right:-4px;
    min-width:20px;height:20px;padding:0 5px;
    border-radius:20px;background:#2f2f2f;color:#fff;
    font-size:10px;font-weight:700;
    display:flex;align-items:center;justify-content:center;
}

/* =========================================================
   DEALS HERO
   ========================================================= */

.deals-hero{
    position:relative;
    overflow:hidden;
    min-height:570px;
    display:flex;
    align-items:center;
    padding:75px 0;
    color:#fff;
    background:
        radial-gradient(circle at 85% 20%,rgba(255,255,255,.16),transparent 28%),
        radial-gradient(circle at 10% 90%,rgba(255,255,255,.08),transparent 28%),
        linear-gradient(135deg,#3f3f3f 0%,#555 48%,var(--orange) 100%);
}

.deals-hero:before{
    content:"";
    position:absolute;
    width:440px;height:440px;
    right:-180px;bottom:-220px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:50%;
}

.hero-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:60px;
    align-items:center;
}

.hero-left{max-width:650px}

.deal-badge{
    display:inline-flex;
    align-items:center;
    padding:9px 17px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    font-size:13px;
    font-weight:600;
}

.hero-left h1{
    margin:20px 0;
    font-size:58px;
    line-height:1.08;
    font-weight:700;
}

.hero-left h1 span{color:#ffb56d}

.hero-left>p{
    max-width:600px;
    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.9;
}

.hero-buttons{
    display:flex;
    gap:14px;
    margin-top:30px;
    flex-wrap:wrap;
}

.shop-btn,.view-btn{
    min-height:50px;
    padding:13px 26px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:13px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.shop-btn{
    background:#fff;
    color:var(--orange);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.view-btn{
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.4);
}
.shop-btn:hover,.view-btn:hover{
    transform:translateY(-4px);
}
.view-btn:hover{
    background:#fff;
    color:var(--orange);
}

.hero-stats{
    display:flex;
    gap:42px;
    margin-top:42px;
}

.hero-stats div{
    position:relative;
}
.hero-stats div:not(:last-child):after{
    content:"";
    position:absolute;
    width:1px;height:42px;
    right:-22px;top:8px;
    background:rgba(255,255,255,.25);
}
.hero-stats h2{
    font-size:27px;
    color:#fff;
}
.hero-stats span{
    color:rgba(255,255,255,.72);
    font-size:12px;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:min(520px,100%);
    max-height:400px;
    object-fit:contain;
    filter:drop-shadow(0 25px 35px rgba(0,0,0,.25));
    animation:dealFloat 4s ease-in-out infinite;
}

@keyframes dealFloat{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-10px)}
}

/* =========================================================
   GENERAL SECTION
   ========================================================= */

.flash-deals,
.top-brands{
    padding:90px 0;
    background:#fff;
}

.deal-categories,
.why-gadgetmobi{
    padding:90px 0;
    background:var(--cream);
}

.section-heading{
    text-align:center;
    margin-bottom:42px;
}
.section-heading h2{
    color:var(--dark);
    font-size:36px;
    line-height:1.25;
    margin-bottom:10px;
}
.section-heading p{
    color:var(--muted);
    font-size:15px;
}

/* =========================================================
   FLASH DEAL
   ========================================================= */

.flash-grid{
    display:grid;
    grid-template-columns:1fr;
}

.flash-card{
    min-height:210px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border:1px solid var(--border);
    border-radius:24px;
    background:linear-gradient(135deg,#fff,#fff8f2);
    box-shadow:var(--shadow);
    transition:.35s;
}

.flash-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow-hover);
}

.flash-card h3{
    color:var(--orange);
    font-size:28px;
}

/* =========================================================
   CATEGORY GRID
   ========================================================= */

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.category-box{
    min-height:72px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border:1px solid var(--border);
    border-radius:17px;
    background:#fff;
    color:var(--dark);
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    box-shadow:0 7px 20px rgba(0,0,0,.045);
    transition:.3s;
}

.category-box:hover{
    color:var(--orange);
    border-color:rgba(220,113,35,.4);
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}

/* =========================================================
   WHY GADGETMOBI
   ========================================================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.why-card{
    min-height:235px;
    padding:32px 22px;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-9px);
    box-shadow:var(--shadow-hover);
}

.why-card i{
    width:68px;height:68px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(220,113,35,.1);
    color:var(--orange);
    font-size:28px;
}

.why-card h3{
    color:var(--dark);
    font-size:19px;
    margin-bottom:8px;
}
.why-card p{
    color:#777;
    font-size:14px;
    line-height:1.75;
}

/* =========================================================
   TOP BRANDS
   ========================================================= */

.brands-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.brand-card{
    min-height:160px;
    padding:25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:13px;
    border:1px solid var(--border);
    border-radius:22px;
    background:#fff;
    color:var(--dark);
    text-decoration:none;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:.35s;
}

.brand-card:hover{
    transform:translateY(-8px);
    border-color:rgba(220,113,35,.35);
    box-shadow:var(--shadow-hover);
    color:var(--orange);
}

.brand-card>i{
    font-size:47px;
}

.brand-card img{
    width:85px;
    height:50px;
    object-fit:contain;
}

.brand-card span{
    font-size:14px;
    font-weight:600;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter{
    padding:80px 0;
    background:var(--cream);
}

.newsletter-box{
    position:relative;
    overflow:hidden;
    padding:55px 35px;
    text-align:center;
    border-radius:28px;
    color:#fff;
    background:linear-gradient(135deg,#464646,var(--orange));
    box-shadow:0 20px 45px rgba(0,0,0,.13);
}

.newsletter-box:after{
    content:"";
    position:absolute;
    width:240px;height:240px;
    right:-100px;top:-130px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
}

.newsletter-box h2{
    position:relative;
    z-index:2;
    font-size:32px;
    margin-bottom:10px;
}

.newsletter-box p{
    position:relative;
    z-index:2;
    max-width:650px;
    margin:auto;
    color:rgba(255,255,255,.84);
    font-size:14px;
    line-height:1.8;
}

.newsletter-form{
    position:relative;
    z-index:2;
    max-width:600px;
    margin:28px auto 0;
    display:flex;
    gap:10px;
}

.newsletter-form input{
    flex:1;
    min-height:52px;
    padding:14px 17px;
    border:0;
    outline:0;
    border-radius:13px;
    color:#333;
}

.newsletter-form button{
    min-width:130px;
    border:0;
    border-radius:13px;
    background:#fff;
    color:var(--orange);
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}
.newsletter-form button:hover{
    transform:translateY(-3px);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
    padding:65px 0 25px;
    background:#292929;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:45px;
}

.footer-logo{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
}
.footer-logo span{color:var(--orange)}

.footer-col>p{
    color:#aaa;
    font-size:13px;
    line-height:1.9;
}
.footer-col h3{
    margin-bottom:17px;
    font-size:17px;
}
.footer-col ul{list-style:none}
.footer-col li{
    color:#aaa;
    font-size:13px;
    margin-bottom:10px;
}
.footer-col li i{
    width:20px;
    color:var(--orange);
}
.footer-col li a{
    color:#aaa;
    text-decoration:none;
    transition:.25s;
}
.footer-col li a:hover{color:#fff}

.footer-social{
    display:flex;
    gap:9px;
    margin-top:20px;
}
.footer-social a{
    width:37px;height:37px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    background:#3a3a3a;
    text-decoration:none;
    transition:.3s;
}
.footer-social a:hover{
    background:var(--orange);
    transform:translateY(-3px);
}

.footer hr{
    margin:38px 0 22px;
    border:0;
    border-top:1px solid #444;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.footer-bottom p,.footer-links a{
    color:#888;
    font-size:12px;
}
.footer-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.footer-links a{text-decoration:none}
.footer-links a:hover{color:#fff}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1050px){

    .nav-links a{padding:10px 8px;font-size:14px}
    .logo-text h2{font-size:21px}

    .call-btn,.whatsapp-btn,.login-btn,.cart-btn{
        width:42px;height:42px;
    }

    .hero-wrapper{gap:35px}
    .hero-left h1{font-size:48px}

    .category-grid,
    .why-grid,
    .brands-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .navbar{
        min-height:76px;
        flex-wrap:wrap;
        padding:9px 0;
    }

    .logo img{width:40px;height:40px}
    .logo-text h2{font-size:20px}
    .logo-text p{font-size:9px}

    .nav-links{
        order:3;
        width:100%;
        overflow-x:auto;
        justify-content:flex-start;
        scrollbar-width:none;
    }
    .nav-links::-webkit-scrollbar{display:none}

    .nav-links a{
        flex-shrink:0;
        font-size:13px;
        padding:8px 10px;
    }

    .header-right{
        margin-left:auto;
        gap:5px;
    }

    .call-btn,.whatsapp-btn,.login-btn,.cart-btn{
        width:38px;height:38px;
    }

    .deals-hero{
        min-height:auto;
        padding:65px 0;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-left{text-align:center}
    .hero-left h1{font-size:37px}
    .hero-left>p{font-size:14px}

    .hero-buttons{
        flex-direction:column;
    }

    .shop-btn,.view-btn{
        width:100%;
    }

    .hero-stats{
        justify-content:center;
        gap:25px;
    }

    .hero-stats div:not(:last-child):after{
        right:-13px;
    }

    .hero-right img{
        max-height:280px;
    }

    .flash-deals,
    .deal-categories,
    .why-gadgetmobi,
    .top-brands,
    .newsletter{
        padding:65px 0;
    }

    .section-heading{
        margin-bottom:30px;
    }

    .section-heading h2{
        font-size:27px;
    }

    .section-heading p{
        font-size:13px;
    }

    .category-grid,
    .why-grid,
    .brands-grid{
        grid-template-columns:1fr;
    }

    .category-box{
        min-height:62px;
    }

    .brand-card{
        min-height:145px;
    }

    .newsletter-box{
        padding:40px 20px;
        border-radius:22px;
    }

    .newsletter-box h2{
        font-size:26px;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
        min-height:52px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        justify-content:center;
    }
}

@media(max-width:480px){

    .logo-text p{display:none}

    .header-right{gap:4px}

    .call-btn,.whatsapp-btn,.login-btn,.cart-btn{
        width:36px;height:36px;
    }

    .hero-left h1{font-size:31px}
    .hero-stats{gap:18px}
    .hero-stats h2{font-size:22px}
    .hero-stats span{font-size:10px}

    .section-heading h2{font-size:24px}

    .flash-card h3{font-size:23px}
}

