/*==================================================
            GADGETMOBI PREMIUM UI V2
===================================================*/

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ROOT COLORS */

:root{

--dark:#464646;
--orange:#dc7123;
--white:#ffffff;
--light:#f7f7f7;
--text:#333;
--radius:18px;

--gradient:linear-gradient(135deg,#464646,#dc7123);

--shadow:
0 15px 40px rgba(0,0,0,.12);

--transition:.35s ease;

}


/* RESET */

*{

margin:0;
padding:0;
box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}


body{
font-family: 'Poppins', sans-serif;

background:#f7f7f7;

color:var(--text);

overflow-x:hidden;

}


/* SCROLLBAR */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}
::-webkit-scrollbar-thumb{

background:var(--gradient);

border-radius:20px;

}
/* LINKS */

a{

text-decoration:none;

color:inherit;

}


/* IMAGE */

img{

max-width:100%;

display:block;

}


/* BUTTON */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:14px 28px;

border-radius:50px;

font-weight:600;

transition:var(--transition);

cursor:pointer;

border:none;

}


.btn-primary{

background:var(--gradient);

color:#fff;

box-shadow:0 12px 30px rgba(220,113,35,.35);

}


.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(220,113,35,.45);

}


.btn-outline{

background:#fff;

border:2px solid #dc7123;
box-shadow:0 10px 25px rgba(220,113,35,.20);

color:#dc7123;

}


.btn-outline:hover{

background:var(--gradient);

color:#fff;

}


/* SECTION */

section{

padding:90px 0;

}


/*=========================================
        ANNOUNCEMENT BAR
=========================================*/

.announcement-bar{
    background:linear-gradient(90deg,#8a4d1d,#dc7123);
    color:#fff;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.announcement-bar .container{
    width:100%;
    max-width:1350px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 25px;
}

.announcement-item{
    display:flex;
    align-items:center;
    gap:8px;

    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.announcement-item i{
    color:#ffd54f;
    font-size:15px;
}
/*=========================
HEADER
=========================*/

header{

border-bottom:none;

box-shadow:0 5px 20px rgba(0,0,0,.08);

position:sticky;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.92);

backdrop-filter:blur(16px);

}
.gm-container{
    width:100%;
    max-width:1350px;
    margin:auto;
    padding:0 20px;
}
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    height:85px;
}


/* LOGO */

.logo{

display:flex;

align-items:center;

gap:3px;

}


.logo img{

width:52px;
margin-bottom:18px;

filter:drop-shadow(0 0 10px rgba(220,113,35,.35));

}


.logo h2{

font-size:22px;
margin-top: 15px;

font-weight:700;

color:#464646;

}


.logo span{

color:#dc7123;

}


.logo p{

font-size:11px;
margin-bottom: 30px;
color:#777;

margin-top:-6px;

}


/* MENU */

.nav-links{
    flex:1;
    display:flex;
    justify-content:center;
    gap:42px;
}


.nav-links a{
    color:#464646;
    font-weight:600;
    position:relative;
    transition:var(--transition);
}


.nav-links a:hover,
.nav-links a.active{
    color:#dc7123;
}


.nav-links a::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:#dc7123;

transition:.35s;

border-radius:20px;

}


.nav-links a:hover::after,
.nav-links a.active::after{

width:100%;

}
/*================ HEADER RIGHT BUTTONS ================*/

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-right a{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:18px;
    transition:.35s ease;
}

.call-btn{
    background:#464646;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.cart-btn{
    background:#dc7123;
    color:#fff;
}

.login-btn{
    background:#f4f1ea;
    color:#464646;
    border:1px solid #ddd;
}

.header-right a:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}
/*=========================================
        CATEGORY HERO
=========================================*/

.category-hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#fff,#f4f1ea);
    overflow:hidden;
}

.hero-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.hero-tag{
    display:inline-block;
    padding:10px 20px;
    background:#dc7123;
    color:#fff;
    border-radius:40px;
    font-weight:600;
    margin-bottom:25px;
}
.hero-content{
    max-width:600px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    color:#2d2d2d;
    margin-bottom:20px;
}

.hero-content p{
    max-width:520px;
    font-size:19px;
    line-height:1.8;
    color:#666;
    margin-top:-20px;
    margin-bottom:30px;
}

.hero-features{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:35px;
}

.hero-features span{
    font-size:18px;
    font-weight:500;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    background:#dc7123;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#2d2d2d;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:650px;
    height:auto;
    object-fit:contain;
    display:block;
}

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#dc7123;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.3s;
}

.hero-prev{
    left:20px;
}

.hero-next{
    right:20px;
}

.hero-prev:hover,
.hero-next:hover{
    background:#dc7123;
    color:#fff;
}

@media(max-width:992px){

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content p{
    margin:auto;
    margin-bottom:30px;
}

.hero-features{
    align-items:center;
}

.hero-prev{
    left:10px;
}

.hero-next{
    right:10px;
}

}
/*=========================================
        HERO DOTS
=========================================*/

.hero-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:35px;
}

.hero-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d6d6d6;

    cursor:pointer;

    transition:.35s;

}

.hero-dots span.active{

    width:38px;

    border-radius:20px;

    background:#dc7123;

}

/*=========================================
      HERO PROGRESS BAR
=========================================*/

.hero-progress{

    width:220px;

    height:6px;

    margin:25px auto 0;

    border-radius:20px;

    background:#ececec;

    overflow:hidden;

}

.hero-progress span{

    display:block;

    width:0%;

    height:100%;

    background:#dc7123;

    transition:width 5s linear;

}
/*=========================================
        CATEGORY SEARCH
=========================================*/

.category-search{
    padding:40px 0;
    background: #464646;;
}

.search-box{
    width:90%;
    max-width:750px;
    height:70px;
    margin:auto;
    display:flex;
    align-items:center;
    padding:0 25px;
    border-radius:60px;
    background:#fff;
    border:2px solid #ececec;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.search-box:hover,
.search-box:focus-within{
    border-color:#dc7123;
    box-shadow:0 15px 40px rgba(220,113,35,.18);
}

.search-box i{
    color:#dc7123;
    font-size:22px;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    background:none;
    font-size:17px;
    margin-left:15px;
}
/*=========================================
      GADGETMOBI CATEGORY SECTION
=========================================*/

.categories-section{
    padding:90px 5%;
    background:linear-gradient(to bottom,#f4f1ea,#ffffff);
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#dc7123,#ff9b45);
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(220,113,35,.25);
}

.section-heading h2{
    font-size:52px;
    margin:25px 0 15px;
    color:#1f1f1f;
    font-weight:700;
}

.section-heading h2 span{
    color:#dc7123;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}


/*=========================================
          CATEGORY GRID
=========================================*/

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}


/*=========================================
          CATEGORY CARD
=========================================*/

.category-card{

    position:relative;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    transition:.45s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

}


/* Orange Top Bar */

.category-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:
    linear-gradient(90deg,#dc7123,#ffb05a);

}


/*=========================================
            IMAGE
=========================================*/

.card-image{

    height:220px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff8f2;

    overflow:hidden;

}

.card-image img{

    width:170px;

    transition:.5s;

}


/*=========================================
            CONTENT
=========================================*/

.card-content{

    padding:28px;

}

.card-content h3{

    font-size:24px;

    color:#1f1f1f;

    margin-bottom:12px;

}

.card-content p{

    color:#666;

    line-height:1.7;

    min-height:70px;

    font-size:15px;

}


/*=========================================
            BUTTON
=========================================*/

.category-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:20px;

    padding:12px 24px;

    background:#dc7123;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.category-btn i{

    transition:.35s;

}


/*=========================================
            HOVER
=========================================*/

.category-card:hover{

    transform:translateY(-14px);

    box-shadow:
    0 30px 55px rgba(0,0,0,.16);

}

.category-card:hover .card-image img{

    transform:scale(1.12) rotate(-3deg);

}

.category-card:hover .category-btn{

    background:#1f1f1f;

}

.category-card:hover .category-btn i{

    transform:translateX(6px);

}


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

.category-grid{

grid-template-columns:repeat(3,1fr);

}

}


@media(max-width:900px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

.section-heading h2{

font-size:42px;

}

}


@media(max-width:600px){

.category-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:34px;

}

.card-image{

height:180px;

}

.card-image img{

width:140px;

}

}
/*=========================================
      PREMIUM CATEGORY EFFECTS
=========================================*/


/* Floating Background Glow */

.category-card::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:radial-gradient(rgba(220,113,35,.18),transparent);

    top:-120px;
    right:-120px;

    transition:.6s;

    opacity:0;

}


.category-card:hover::after{

    opacity:1;

    transform:scale(1.3);

}



/* Shine Effect */

.category-card .shine{

    position:absolute;

    top:-120%;

    left:-70%;

    width:60%;

    height:250%;

    background:rgba(255,255,255,.45);

    transform:rotate(25deg);

    transition:.8s;

    pointer-events:none;

}


.category-card:hover .shine{

    left:140%;

}



/* Image Floating Animation */

.card-image img{

    animation:imageFloat 4s ease-in-out infinite;

}


@keyframes imageFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}



/* Hover Image */

.category-card:hover .card-image img{

    transform:scale(1.08) rotate(-2deg);

}



/* Explore Button */

.category-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:190px;
    height:52px;

    background:linear-gradient(135deg,#dc7123,#f58a35);
    color:#fff;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    transition:.35s ease;
}

.category-btn:hover{
    background:#1f1f1f;
    color:#fff;
    transform:translateY(-2px);
    text-decoration:none;
}

.category-btn i{
    transition:.35s;
}

.category-btn:hover i{
    transform:translateX(6px);
}
/* Card Entrance Animation */

.category-card{

    animation:cardUp .8s ease both;

}


.category-card:nth-child(2){

animation-delay:.08s;

}

.category-card:nth-child(3){

animation-delay:.16s;

}

.category-card:nth-child(4){

animation-delay:.24s;

}

.category-card:nth-child(5){

animation-delay:.32s;

}

.category-card:nth-child(6){

animation-delay:.40s;

}

.category-card:nth-child(7){

animation-delay:.48s;

}

.category-card:nth-child(8){

animation-delay:.56s;

}

.category-card:nth-child(9){

animation-delay:.64s;

}

.category-card:nth-child(10){

animation-delay:.72s;

}

.category-card:nth-child(11){

animation-delay:.80s;

}

.category-card:nth-child(12){

animation-delay:.88s;

}

.category-card:nth-child(13){

animation-delay:.96s;

}

.category-card:nth-child(14){

animation-delay:1.04s;

}



@keyframes cardUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/* Premium Shadow */

.category-card:hover{

box-shadow:
0 20px 45px rgba(0,0,0,.14),
0 0 0 1px rgba(220,113,35,.15);

}



/* Cursor */

.category-card{

cursor:pointer;

}
.product-count{
    display:inline-block;
    margin-top:15px;
    margin-bottom:20px;

    padding:8px 16px;

    background:#fff4eb;
    color:#dc7123;

    border-radius:30px;

    font-size:13px;
    font-weight:600;
}
/*=========================================
          FEATURED BRANDS
=========================================*/

.brands-section{
    padding:90px 5%;
    background:#ffffff;
}

/*=========================================
            BRANDS GRID
=========================================*/

.brands-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    margin-top:60px;

}


/*=========================================
            BRAND CARD
=========================================*/

.brand-card{

    background:#fff;

    border-radius:28px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s ease;

}


/* Orange Accent */

.brand-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#dc7123,#ffb347);

}


/*=========================================
            BRAND LOGO
=========================================*/

.brand-logo{

    width:120px;
    height:120px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#fff7f1;

    transition:.4s;

}

.brand-logo img{

    width:75px;

    transition:.4s;

}


/*=========================================
            BRAND NAME
=========================================*/

.brand-card h3{

    margin-top:25px;

    font-size:24px;

    color:#1f1f1f;

}


/*=========================================
          PRODUCT COUNT
=========================================*/

.brand-count{

    display:inline-block;

    margin:18px 0 25px;

    padding:8px 18px;

    border-radius:30px;

    background:#fff2e8;

    color:#dc7123;

    font-size:14px;

    font-weight:600;

}


/*=========================================
            BUTTON
=========================================*/

.brand-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:180px;
    height:50px;

    border-radius:50px;

    background:#dc7123;

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.brand-btn i{

    transition:.35s;

}

.brand-btn:hover{

    background:#1f1f1f;

    color:#fff;

}

.brand-btn:hover i{

    transform:translateX(6px);

}


/*=========================================
            HOVER
=========================================*/

.brand-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.brand-card:hover .brand-logo{

    background:#dc7123;

}

.brand-card:hover .brand-logo img{

    transform:scale(1.12);

}


/*=========================================
          RESPONSIVE
=========================================*/

@media(max-width:1100px){

.brands-grid{

grid-template-columns:repeat(3,1fr);

}

}


@media(max-width:800px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:550px){

.brands-grid{

grid-template-columns:1fr;

}

.brand-card{

padding:30px 20px;

}

}
/*=========================================
        WHY CHOOSE GADGETMOBI
=========================================*/

.why-section{
    padding:90px 5%;
    background:linear-gradient(to bottom,#ffffff,#f4f1ea);
}


/*=========================================
            WHY GRID
=========================================*/

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    margin-top:60px;

}


/*=========================================
            WHY CARD
=========================================*/

.why-card{

    background:#ffffff;

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}


/* Orange Top Border */

.why-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#dc7123,#ffb347);

}


/*=========================================
            ICON
=========================================*/

.why-card i{

    width:90px;
    height:90px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:#fff5ed;

    color:#dc7123;

    font-size:36px;

    transition:.4s;

}


/*=========================================
            TEXT
=========================================*/

.why-card h3{

    font-size:24px;

    color:#1f1f1f;

    margin-bottom:15px;

}


.why-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}


/*=========================================
            HOVER
=========================================*/

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}


.why-card:hover i{

    background:#dc7123;

    color:#fff;

    transform:rotate(8deg) scale(1.08);

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.why-grid{

grid-template-columns:1fr;

}

.why-card{

padding:35px 25px;

}

}
/*=========================================
                FOOTER
=========================================*/

.footer{
    background:#1f1f1f;
    color:#ddd;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:45px;
}

.footer-logo{
    font-size:36px;
    color:#fff;
    margin-bottom:18px;
}

.footer-logo span{
    color:#dc7123;
}

.footer-col p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-col h3{
    color:#fff;
    font-size:22px;
    margin-bottom:22px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:50px;
    height:3px;
    background:#dc7123;
    border-radius:20px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:14px;
    color:#bbb;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#dc7123;
    padding-left:6px;
}

.footer-col ul li i{
    color:#dc7123;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2d2d2d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#dc7123;
    transform:translateY(-5px);
}

.footer hr{
    margin:55px 0 25px;
    border:none;
    height:1px;
    background:#3d3d3d;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#aaa;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#aaa;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#dc7123;
}

@media(max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-links{
    flex-direction:column;
    gap:12px;
}
}
