 
    /* =====================================================
                    RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f8fc;
    color:#222;
}

a{
    text-decoration:none;
}


/* =====================================================
                    TOP BAR
===================================================== */

.top-bar{
    width:100%;
    min-height:42px;

    background:#111827;
    color:white;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    font-size:13px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:24px;
}

.top-left a{
    color:#e5e7eb;

    display:flex;
    align-items:center;
    gap:7px;

    transition:.3s;
}

.top-left a:hover{
    color:#3b82f6;
}

.top-left i{
    color:#4f8cff;
}


.top-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-right span{
    color:#cbd5e1;
}

.top-right a{
    width:27px;
    height:27px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:white;

    transition:.3s;
}

.top-right a:hover{
    background:#2878ff;
    transform:translateY(-2px);
}


/* =====================================================
                    NAVBAR
===================================================== */

.navbar{
    width:100%;
    height:82px;

    background:white;

    display:flex;
    align-items:center;

    padding:0 5%;

    gap:35px;

    position:sticky;
    top:0;

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,.07);
}


/* LOGO */

.logo{
    font-size:30px;
    font-weight:800;

    color:#111827;

    white-space:nowrap;
}

.logo span{
    color:#2878ff;
}


/* NAV MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:25px;

    margin-right:auto;
}

.nav-link{
    color:#374151;
    font-size:15px;
    font-weight:600;
    
    position:relative;
    transition:.3s;
}
.nav-link:hover{
    color: #0a0a0a;
}
.nav-link::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#2878ff;

    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#2878ff;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}


/* NAV RIGHT */

.nav-right{
    display:flex;
    align-items:center;
    gap:12px;
}


/* =====================================================
                    HOT DEAL BUTTON
===================================================== */

.hot-deals{
    background:#ff4d4d;
    color:white;

    padding:11px 16px;

    border-radius:6px;

    display:flex;
    align-items:center;
    gap:7px;

    font-size:14px;
    font-weight:bold;

    transition:.3s;
}

.hot-deals:hover{
    background:#e63939;
    transform:translateY(-2px);
}

.hot-deals i{
    font-size:14px;
}


/* =====================================================
                    SEARCH
===================================================== */

.search-container{
    height:42px;

    display:flex;
    align-items:center;

    border:1px solid #ddd;

    border-radius:6px;

    overflow:hidden;

    background:white;
}

.search-container input{
    width:190px;
    height:100%;

    border:none;
    outline:none;

    padding:0 13px;

    font-size:14px;
}

.search-container button{
    width:45px;
    height:100%;

    border:none;

    background:#2878ff;
    color:white;

    cursor:pointer;

    transition:.3s;
}

.search-container button:hover{
    background:#145ed2;
}


/* =====================================================
                    ICON BUTTON
===================================================== */

.icon-btn{
    width:42px;
    height:42px;

    border:none;

    background:#f2f5fa;

    border-radius:6px;

    position:relative;

    cursor:pointer;

    font-size:17px;

    color:#374151;

    transition:.3s;
}

.icon-btn:hover{
    color:#2878ff;
    background:#e9f0ff;
}


/* COUNTER */

.counter{
    position:absolute;

    top:-6px;
    right:-5px;

    min-width:18px;
    height:18px;

    padding:0 4px;

    background:#2878ff;
    color:white;

    border-radius:20px;

    font-size:10px;
    font-weight:bold;

    display:flex;
    align-items:center;
    justify-content:center;
}


/* =====================================================
                    MOBILE MENU BUTTON
===================================================== */

.menu-toggle{
    display:none;

    width:42px;
    height:42px;

    border:none;

    background:#f2f5fa;

    border-radius:6px;

    font-size:19px;

    cursor:pointer;
}


/* =====================================================
                    PRODUCTS
===================================================== */

.products{
    padding:80px 5%;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading p{
    color:#2878ff;
    font-size:13px;
    font-weight:bold;
    letter-spacing:2px;

    margin-bottom:10px;
}

.section-heading h1{
    font-size:38px;
}


.product-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.product-card{
    background:white;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.07);

    transition:.3s;
}

.product-card:hover{
    transform:translateY(-7px);
}

.product-image{
    height:250px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:20px;
}

.product-info h3{
    margin-bottom:10px;
}

.product-info p{
    font-size:20px;
    font-weight:bold;

    color:#2878ff;

    margin-bottom:15px;
}

.add-cart{
    width:100%;

    border:none;

    background:#2878ff;
    color:white;

    padding:12px;

    border-radius:5px;

    cursor:pointer;

    font-weight:bold;
}

.add-cart:hover{
    background:#125ed8;
}


/* =====================================================
                    DEAL
===================================================== */

.deal{
    min-height:320px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("https://images.unsplash.com/photo-1498049794561-7780e7231661?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
}

.deal p{
    color:#61a2ff;

    font-size:14px;
    letter-spacing:3px;

    font-weight:bold;
}

.deal h2{
    font-size:55px;
    margin:10px 0 20px;
}

.deal button{
    border:none;

    background:#2878ff;
    color:white;

    padding:13px 28px;

    border-radius:5px;

    cursor:pointer;
}


/* =====================================================
                    CART POPUP
===================================================== */

.cart-popup{
    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:2000;

    justify-content:flex-end;
}

.cart-popup.active{
    display:flex;
}

.cart-box{
    width:420px;
    max-width:100%;

    height:100%;

    background:white;

    padding:25px;

    overflow-y:auto;
}

.cart-header{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding-bottom:18px;

    border-bottom:1px solid #ddd;
}

.cart-header button{
    border:none;
    background:none;

    font-size:22px;

    cursor:pointer;
}

.cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid #eee;
}

.cart-item h4{
    margin-bottom:6px;
}

.remove-item{
    border:none;

    background:#ffe8e8;
    color:#e11d48;

    padding:7px 10px;

    border-radius:4px;

    cursor:pointer;
}

.empty-cart{
    padding:60px 0;

    text-align:center;

    color:#777;
}

.cart-bottom{
    margin-top:25px;
}

.cart-bottom h3{
    margin-bottom:20px;
}

.cart-bottom button{
    width:100%;

    border:none;

    padding:13px;

    background:#2878ff;
    color:white;

    border-radius:5px;

    cursor:pointer;

    font-weight:bold;
}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .nav-menu{
        gap:15px;
    }

    .search-container input{
        width:140px;
    }

    .top-left{
        gap:15px;
    }

}


@media(max-width:900px){

    .top-left a:nth-child(3){
        display:none;
    }

    .nav-menu{
        position:absolute;

        left:0;
        top:82px;

        width:100%;

        background:white;

        display:none;

        flex-direction:column;

        padding:25px;

        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-link::after{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .product-container{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:650px){

    .top-bar{
        padding:8px 4%;

        flex-direction:column;
        gap:7px;
    }

    .top-left{
        justify-content:center;
        flex-wrap:wrap;
    }

    .top-right{
        display:none;
    }

    .navbar{
        height:72px;
        padding:0 4%;
        gap:10px;
    }

    .nav-menu{
        top:72px;
    }

    .logo{
        font-size:23px;
    }

    .hot-deals{
        padding:10px;
    }

    .hot-deals{
        font-size:0;
    }

    .hot-deals i{
        font-size:15px;
    }

    .search-container input{
        display:none;
    }

    .search-container button{
        width:42px;
    }

    .product-container{
        grid-template-columns:1fr;
    }

    .section-heading h1{
        font-size:30px;
    }

    .deal h2{
        font-size:40px;
    }

}


@media(max-width:400px){

    .icon-btn,
    .menu-toggle,
    .search-container,
    .hot-deals{
        width:38px;
        height:38px;
    }

    .hot-deals{
        display:flex;
        justify-content:center;
        padding:0;
    }

}



 /* =====================================================
        ELECTRONICS CATEGORY ROLLING SECTION
===================================================== */

.category-slider{
    width:100%;
    height:205px;

    background:#07062d;

    position:relative;

    display:flex;
    align-items:center;

    overflow:hidden;

    padding:0 45px;
}


/* ================= TRACK WRAPPER ================= */

.category-track-wrapper{
    width:100%;
    overflow:hidden;
}


/* ================= TRACK ================= */

.category-track{
    display:flex;
    align-items:center;

    gap:48px;

    width:max-content;

    will-change:transform;
}


/* ================= CATEGORY ITEM ================= */

.category-item{
    width:145px;
    min-width:145px;

    display:flex;
    flex-direction:column;
    align-items:center;

    color:white;

    text-decoration:none;

    text-align:center;

    cursor:pointer;
}


/* ================= CIRCLE ================= */

.category-circle{
    width:125px;
    height:125px;

    border-radius:50%;

    background:#dff5f7;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    border:4px solid rgba(255,255,255,.18);

    transition:.35s;
}


.category-circle img{
    width:100%;
    height:100%;

    object-fit:cover;

    mix-blend-mode:multiply;

    transition:.4s;
}



   
/* =========================================================
   ELECTROMART — PREMIUM FUTURE HERO
========================================================= */

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000000;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND DESIGN
========================================================= */

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;

    right: -180px;
    top: -180px;

    border: 1px solid rgba(245,166,35,.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(245,166,35,.025),
        0 0 0 140px rgba(245,166,35,.018);

    z-index: 2;
    pointer-events: none;
}


.hero::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 170px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    z-index: 3;

    pointer-events: none;
}


/* =========================================================
   SLIDES
========================================================= */

.hero-slide {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .9s ease,
        visibility .9s ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   IMAGE
========================================================= */

.hero-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 68%;
    height: 100%;

    overflow: hidden;

    clip-path:
        polygon(
            15% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


.hero-image::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            #0a0a0a 0%,
            rgba(10,10,10,.82) 13%,
            rgba(10,10,10,.20) 55%,
            rgba(10,10,10,.05) 100%
        );
}


.hero-image::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: 12%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,166,35,.18),
            transparent 70%
        );

    z-index: 3;
}


.hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(1.15)
        contrast(1.05);

    transform: scale(1.04);

    transition:
        transform 8s cubic-bezier(.2,.7,.2,1);
}


.hero-slide.active .hero-image img {

    transform: scale(1.14);
}


/* =========================================================
   CONTENT
========================================================= */

.hero-content {


    position: relative;

    z-index: 7;

    margin-left: 8%;
   

    width: 530px;

    color: white;
}


/* =========================================================
   TOP LABEL
========================================================= */

.hero-content .brand {

    position: relative;

    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;

    padding: 9px 15px 9px 13px;

    color: #f5a623;

    border: 1px solid rgba(245,166,35,.4);

    background: rgba(245,166,35,.06);

    backdrop-filter: blur(10px);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s ease .15s,
        transform .7s ease .15s;
}


.hero-content .brand::before {

    content: "";

    width: 7px;
    height: 7px;

    margin-right: 9px;

    border-radius: 50%;

    background: #f5a623;

    box-shadow:
        0 0 0 4px rgba(245,166,35,.12),
        0 0 15px #f5a623;
}


.hero-slide.active .brand {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.hero-content h2 {

    margin: 0;

    font-size: clamp(42px, 5vw, 70px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 900;

    color: #fff;

    text-shadow:
        0 15px 40px rgba(0,0,0,.5);

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease .25s,
        transform .8s ease .25s;
}


.hero-slide.active .hero-content h2 {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-content p {

    margin: 24px 0 7px;

    color: rgba(255,255,255,.62);

    font-size: 14px;

    letter-spacing: .5px;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s ease .4s,
        transform .7s ease .4s;
}


.hero-slide.active .hero-content p {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   PRICE
========================================================= */

.hero-content strong {

    display: flex;

    align-items: baseline;

    gap: 10px;

    margin-bottom: 28px;

    font-size: 38px;

    line-height: 1;

    color: #f5a623;

    font-weight: 900;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s ease .5s,
        transform .7s ease .5s;
}


.hero-slide.active .hero-content strong {

    opacity: 1;

    transform: translateY(0);
}


.hero-content strong small {

    color: rgba(255,255,255,.55);

    font-size: 11px;

    font-weight: 400;
}


/* =========================================================
   SHOP BUTTON
========================================================= */

.hero-content button {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 17px;

    height: 50px;

    padding: 0 25px;

    overflow: hidden;

    border: none;

    background: #f5a623;

    color: #111;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    cursor: pointer;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s ease .6s,
        transform .7s ease .6s,
        box-shadow .35s ease;
}


.hero-slide.active .hero-content button {

    opacity: 1;

    transform: translateY(0);
}


.hero-content button::before {

    content: "";

    position: absolute;

    left: -110%;
    top: 0;

    width: 110%;
    height: 100%;

    background: #fff;

    transform: skewX(-20deg);

    transition: left .5s ease;
}


.hero-content button:hover::before {

    left: 100%;
}


.hero-content button i {

    position: relative;

    z-index: 2;

    transition:
        transform .35s ease;
}


.hero-content button {

    isolation: isolate;
}


.hero-content button:hover {

    box-shadow:
        0 12px 35px rgba(245,166,35,.3);

    transform:
        translateY(-4px) !important;
}


.hero-content button:hover i {

    transform: translateX(7px);
}


/* =========================================================
   DECORATIVE NUMBER
========================================================= */

.hero-slide::after {

    content: "01";

    position: absolute;

    right: 8%;

    bottom: 45px;

    z-index: 6;

    font-size: 110px;

    line-height: 1;

    font-weight: 900;

    color: rgba(255,255,255,.035);

    pointer-events: none;
}


.hero-slide:nth-child(2)::after {

    content: "02";
}


/* =========================================================
   LEFT / RIGHT ARROWS
========================================================= */

.hero-arrow {

    position: absolute;

    z-index: 15;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    backdrop-filter: blur(12px);

    color: white;

    cursor: pointer;

    transition:
        .35s ease;
}


.hero-arrow.left {

    left: 30px;

    transform: translateY(-50%);
}


.hero-arrow.right {

    right: 30px;

    transform: translateY(-50%);
}


.hero-arrow:hover {

    background: #f5a623;

    border-color: #f5a623;

    color: #111;

    box-shadow:
        0 0 25px rgba(245,166,35,.25);
}


.hero-arrow.left:hover {

    transform:
        translateY(-50%)
        translateX(-3px);
}


.hero-arrow.right:hover {

    transform:
        translateY(-50%)
        translateX(3px);
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.dots {

    position: absolute;

    z-index: 20;

    left: 8%;

    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);

    cursor: pointer;

    transition:
        width .4s ease,
        background .4s ease;
}


.dot:hover {

    background: white;

    transform: scale(1.3);
}


.dot.active {

    width: 38px;

    border-radius: 20px;

    background: #f5a623;

    box-shadow:
        0 0 12px rgba(245,166,35,.5);
}


/* =========================================================
   SMALL FLOATING LINE
========================================================= */

.hero-content::before {

    content: "";

    position: absolute;

    left: -25px;
    top: 0;

    width: 1px;
    height: 0;

    background: #f5a623;

    transition:
        height 1s ease .1s;
}


.hero-slide.active .hero-content::before {

    height: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width: 1000px) {

    .hero {

        height: 600px;
    }


    .hero-image {

        width: 72%;
    }


    .hero-content {

        margin-left: 7%;

        width: 470px;
    }


    .hero-content h2 {

        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 650px) {

    .hero {

        height: 650px;
    }


    .hero-image {

        width: 100%;

        clip-path: none;
    }


    .hero-image::before {

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.25) 0%,
                rgba(0,0,0,.35) 30%,
                rgba(0,0,0,.95) 88%
            );
    }


    .hero-image::after {

        width: 300px;
        height: 300px;

        right: 0;
        top: 30%;
    }


    .hero-content {

        width: 84%;

        margin: 0 auto;

        align-self: flex-end;

        margin-bottom: 85px;
    }


    .hero-content h2 {

        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .hero-content .brand {

        font-size: 8px;

        letter-spacing: 1.5px;

        margin-bottom: 17px;
    }


    .hero-content p {

        font-size: 12px;

        margin-top: 18px;
    }


    .hero-content strong {

        font-size: 31px;
    }


    .hero-arrow {

        width: 40px;
        height: 40px;

        top: auto;

        bottom: 25px;
    }


    .hero-arrow.left {

        left: 22px;

        transform: none;
    }


    .hero-arrow.right {

        right: 22px;

        transform: none;
    }


    .hero-arrow.left:hover,
    .hero-arrow.right:hover {

        transform: scale(1.08);
    }


    .dots {

        left: 50%;

        bottom: 40px;

        transform: translateX(-50%);
    }


    .hero-slide::after {

        font-size: 70px;

        right: 5%;

        bottom: 80px;
    }


    .hero::before {

        width: 350px;
        height: 350px;

        right: -180px;
        top: -120px;
    }

}

/* ================= SECTION ================= */

.section-box {
    width: 90%;

    margin: 50px auto;

    padding: 35px 4% 45px;

    background: white;

    border-radius: 18px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-bottom: 20px;

    border-bottom: 1px solid #ddd;

    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 27px;
}

.section-heading button {
    border: none;

    background: #e60016;

    color: white;

    padding: 13px 25px;

    border-radius: 5px;

    font-weight: bold;

    cursor: pointer;
}


/* ================= PRODUCT ================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    position: relative;

    border-radius: 18px;

    padding: 15px;

    background: white;

    box-shadow: 0 5px 18px rgba(0,0,0,.13);

    overflow: hidden;

    transition: .35s;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0,0,0,.16);
}

.discount {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 8px 10px;

    border-radius: 12px;

    background: #e60018;

    color: white;

    font-weight: bold;
}

.wishlist {
    position: absolute;

    right: 12px;
    top: 12px;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    border: none;

    background: white;

    box-shadow: 0 3px 10px #ddd;

    font-size: 22px;

    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 200px;

    object-fit: contain;

    margin-top: 25px;

    transition: .4s;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card h3 {
    min-height: 50px;

    margin: 10px 0;

    color: #07588d;

    font-size: 17px;

    line-height: 1.4;
}

.mrp {
    color: #777;

    margin-bottom: 8px;
}

.price {
    color: #d90017;

    font-size: 25px;

    font-weight: bold;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.price i {
    color: #222;

    font-size: 21px;

    cursor: pointer;
}

.tax {
    color: #999;

    font-size: 14px;

    margin: 9px 0;
}

.buy-btn {
    width: 100%;

    padding: 11px;

    background: white;

    border: none;

    font-size: 17px;

    cursor: pointer;
}

.buy-btn:hover {
    color: #e40019;
}

/* ================= POPULAR BRANDS ================= */

.brands-section {
    width: 92%;
    margin: 70px auto;
    padding: 20px 0 60px;
    background: #fff;
}


/* HEADING */

.brands-heading {
    text-align: center;
    margin-bottom: 45px;
}

.brands-heading p {
    color: #e40018;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.brands-heading h2 {
    font-size: 38px;
    color: #202637;
    margin: 0;
}

.brands-heading h2 span {
    color: #e40018;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: #e40018;
    border-radius: 10px;
    margin: 15px auto 0;
}


/* BRAND CONTAINER */

.brands-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: center;
}


/* BRAND CARD */

.brand-card {
    height: 150px;

    background: #fff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    cursor: pointer;

    overflow: hidden;
}


/* LOGO */

.brand-card img {
    width: 75%;
    height: 75%;

    object-fit: contain;

    filter: grayscale(100%);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* HOVER */

.brand-card:hover {
    transform: translateY(-12px);

    border-color: #e40018;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15);
}


.brand-card:hover img {
    transform: scale(1.15);

    filter: grayscale(0%);
}


/* ================= TABLET ================= */

@media (max-width: 1100px) {

    .brands-container {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .brands-section {
        width: 94%;
    }

    .brands-heading h2 {
        font-size: 30px;
    }

    .brands-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-card {
        height: 120px;
    }

}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .brands-container {
        grid-template-columns: 1fr 1fr;
    }

    .brand-card {
        height: 105px;
        padding: 15px;
    }

}




/* ================= WHY ================= */

.why-section {
    width: 90%;

    margin: 70px auto;

    padding: 20px 0;
}

.why-title {
    text-align: center;

    margin-bottom: 40px;
}

.why-title p {
    color: #e40019;

    font-weight: bold;

    letter-spacing: 2px;
}

.why-title h2 {
    font-size: 35px;

    margin-top: 10px;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 28px;
}

.why-card {
    background: white;

    min-height: 280px;

    padding: 32px;

    border-radius: 18px;

    box-shadow: 0 5px 18px rgba(0,0,0,.1);

    transition: .35s;
}

.why-card:hover {
    transform: translateY(-7px);
}

.why-icon {
    width: 65px;
    height: 65px;

    border-radius: 17px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #e9f5ff;

    color: #147ac4;

    font-size: 27px;

    margin-bottom: 25px;
}

.why-icon.blue {
    background: #e5f7ff;
    color: #18a7d0;
}

.why-icon.yellow {
    background: #fff5d9;
    color: #f0a400;
}

.why-icon.orange {
    background: #fff0e5;
    color: #e87d20;
}

.why-icon.purple {
    background: #f2ebff;
    color: #7f4ed8;
}

.why-icon.cyan {
    background: #e3f9fa;
    color: #13aeba;
}

.why-icon.pink {
    background: #ffe8f3;
    color: #dc3990;
}

.why-card h3 {
    font-size: 23px;

    margin-bottom: 17px;
}

.why-card p {
    color: #777;

    line-height: 1.7;

    font-size: 16px;
}


/* ================= STATS ================= */

.stats {
    width: 90%;

    margin: 70px auto;

    padding: 40px 0;

    border-top: 1px solid #ddd;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    text-align: center;
}

.stats strong {
    display: block;

    color: #df0018;

    font-size: 42px;

    font-weight: 900;
}

.stats span {
    display: block;

    color: #555;

    margin-top: 8px;

    font-size: 17px;
}
.stats p {
    grid-column: 1 / -1;

    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;

    padding: 0 10px;
}
.stats p + p {
    margin-top: -15px;
}


/* MOBILE */

@media (max-width: 768px) 

{

    .stats {
        grid-template-columns: repeat(2, 1fr);

        width: 94%;

        padding: 30px 20px;
    }

}
/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 80px;

    text-decoration: none;

    z-index: 100;
}

.whatsapp span,
.whatsapp b {
    display: block;

    text-align: center;
}

.whatsapp span {
    font-weight: bold;
}

.whatsapp b {
    color: #d80018;
}

.whatsapp i {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 62px;
    height: 62px;

    margin: auto;

    background: #25d366;

    color: white;

    border-radius: 8px;

    font-size: 40px;

    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}


/* ================= FOOTER ================= */

footer {
    background: #171717;

    color: white;

    padding: 60px 8%;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 2fr;

    gap: 50px;
}

.footer-logo h2 {
    color: #e50019;

    font-size: 30px;
}

.footer-logo p {
    color: #e50019;

    font-size: 20px;

    font-weight: bold;
}

footer h3 {
    margin-bottom: 20px;
}

footer a {
    display: block;

    color: #bbb;

    text-decoration: none;

    margin-bottom: 12px;
}

footer a:hover {
    color: white;
}

footer p {
    color: #bbb;

    margin-bottom: 10px;
}




/* ================= HOVER ================= */

.category-item:hover .category-circle{
    transform:translateY(-7px) scale(1.05);

    border-color:white;

    box-shadow:
        0 10px 25px rgba(0,0,0,.22);
}


.category-item:hover .category-circle img{
    transform:scale(1.08);
}


.category-item h3{
    margin-top:10px;

    font-size:14px;

    font-weight:700;

    white-space:nowrap;
}


/* ================= ARROWS ================= */

.category-arrow{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:white;

    color:#222;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:10;

    box-shadow:
        0 4px 12px rgba(0,0,0,.18);

    transition:.3s;
}


.category-arrow:hover{
    background:#111;
    color:white;

    transform:
        translateY(-50%)
        scale(1.08);
}


.category-arrow.left{
    left:5px;
}


.category-arrow.right{
    right:5px;
}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .category-slider{
        height:190px;
        padding:0 42px;
    }

    .category-track{
        gap:35px;
    }

    .category-item{
        width:125px;
        min-width:125px;
    }

    .category-circle{
        width:105px;
        height:105px;
    }

    .category-item h3{
        font-size:12px;
    }

}


@media(max-width:650px){

    .category-slider{
        height:175px;
        padding:0 38px;
    }

    .category-track{
        gap:25px;
    }

    .category-item{
        width:110px;
        min-width:110px;
    }

    .category-circle{
        width:90px;
        height:90px;
    }

    .category-item h3{
        font-size:11px;
    }

    .category-arrow{
        width:34px;
        height:34px;
    }

}