/*==========================
 NAVBAR
==========================*/

.custom-navbar{
    position:static;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    transition:.4s;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.custom-navbar.scrolled{
    background:#ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* Logo */

.logo-img{

    width:170px;

    transition:.4s;

}

.logo-img:hover{

    transform:scale(1.08);

}
/* Text */

.mylap-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

/* METS */

.mylap h2{

    margin:0;

    font-size:34px;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

   color:midnightblue;

    background-size:300%;

  

    animation:textGlow 4s linear infinite;
}

 
/* Menu */

.navbar-nav{

    gap:18px;

}

.nav-link{

    color:#ffffff !important;

    font-size:17px;

    font-weight:600;

    padding:12px 22px !important;

    position:relative;

    border-radius:30px;

    transition:.4s;

}

/* Underline */

.nav-link::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:6px;

    width:0;

    height:3px;

    background:linear-gradient(
        90deg,
        #430258,
        #c300fe,
        #430258
    );

    transition:.4s;

    transform:translateX(-50%);

    border-radius:10px;

}
.navbar{

background:#fff !important;

}

.nav-link{

color:#111 !important;

font-weight:600;

}

.nav-link:hover{

color:#c300fe !important;

}

.navbar-brand{

color:#111 !important;

}
/* Hover */

.nav-link:hover{

    color:#c300fe !important;

    background:rgba(195,0,254,.12);

    box-shadow:
    0 0 15px rgba(195,0,254,.35);

    transform:translateY(-4px);

}

/* Underline Hover */

.nav-link:hover::before{

    width:70%;

}

/* Active */

.active{

color:#ff1493 !important;

}

/* Cart Button */

.cart-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    background:linear-gradient(135deg,#430258,#c300fe);

    color:#fff !important;
    padding:10px 22px !important;
    border-radius:30px;

    white-space:nowrap;
}

/* Cart Hover */

.cart-btn:hover{

    color:#fff !important;

    transform:scale(1.08);

    box-shadow:
    0 0 25px rgba(195,0,254,.6);

}
#cart-count{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:22px;
    height:22px;

    background:#fff;
    color:#430258;

    border-radius:50%;
    font-size:12px;
    font-weight:bold;
}
.cart-btn i{
    font-size:18px;
}
/* Navbar Scroll */

.custom-navbar,

.custom-navbar.scrolled{

background:#fff !important;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

/* Mobile */

.navbar-toggler{

    color:#fff;

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* Responsive */

@media(max-width:991px){

.navbar-collapse{

    margin-top:15px;

    border-radius:20px;

    padding:20px;

    backdrop-filter:blur(25px);

    border:1px solid rgba(195,0,254,.2);

}

.nav-link{

    text-align:center;

    margin:8px 0;

}

}
.dropdown-menu{
     background:black;
    border:none;
    border-radius:15px;
    padding:10px;
}

.dropdown-item{
    color:#fff;
    padding:12px 20px;
    border-radius:10px;
    transition:.4s;
}

.dropdown-item:hover{
    background:#c300fe;
    color:#fff;
}
@media(max-width:991px){

    .dropdown-menu{
        background:rgba(255,255,255,.1);
        border:none;
        box-shadow:none;
    }

    .dropdown-item{
       background-color:black;
        text-align:center;
    }
}
/*==========================
 CATEGORY SECTION
==========================*/

.category-section{
    padding:100px 8%;
    background:#f8f8f8;
}

.category-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:60px;
    
   
}
.sub-title{
color:#ff1493;
}

.category-container{
   display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;
}

/*==========================
 CARD
==========================*/

.category-card{

 background:#181818;

border-radius:25px;

overflow:hidden;

position:relative;

box-shadow:0 15px 35px rgba(0,0,0,.15);

transition:.5s;

height:620px;

display:flex;

flex-direction:column;



}

/* Scroll Animation */

.category-card.show{

    transform:translateX(0);

    opacity:1;

}

/* White Slide */
.category-card::before{

content:"";

position:absolute;

left:0;

bottom:-100%;

width:100%;

height:45%;

background:#fff;

transition:.5s;

z-index:1;

border-radius:25px 25px 0 0;

}

.category-card:hover::before{

bottom:0;

}

/*==========================
 IMAGE
==========================*/

.category-img{
width:100%;

height:320px;

overflow:hidden;

position:relative;

z-index:3;

}

.category-img img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.category-card:hover img{

transform:scale(1.08);

}


/*==========================
 CONTENT
==========================*/

.category-content{

position:relative;

z-index:5;

padding:30px;

}

.category-content h2{

font-size:34px;

margin-bottom:15px;

color:#fff;

transition:.4s;

}

.category-content p{

font-size:17px;

line-height:30px;

color:#d5d5d5;

margin-bottom:25px;

transition:.4s;

}

/* Hover Text */

.category-card:hover h2{

color:#ff1493;

}

.category-card:hover p{

color:#444;

}

/*==========================
 BUTTON
==========================*/

.category-btn{

display:inline-block;

padding:14px 38px;

border-radius:40px;

 background:linear-gradient(
        90deg,
        #430258,
        #c300fe,
        #430258
    );;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.4s;

}

.category-btn:hover{

transform:translateY(-8px);

box-shadow:0 15px 30px rgba(255,20,147,.45);

}

/*==========================
 CARD HOVER
==========================*/

.category-card:hover{

transform:translateY(-15px);

box-shadow:0 30px 60px rgba(0,0,0,.25);

}

/*==========================
 RESPONSIVE
==========================*/

@media(max-width:992px){

.category-container{

grid-template-columns:1fr;

}

.category-img{

height:220px;

}

}

@media(max-width:576px){

.category-title{

font-size:34px;

}

.category-content h2{

font-size:28px;

}

.category-content p{

font-size:15px;

}

}
.category-title{

opacity:0;

transform:translateY(50px);

transition:.8s;

}

.category-card{

opacity:0;

transform:translateX(-120px);

transition:.8s;

}

.category-card.show{

opacity:1;

transform:translateX(0);

}
/*=========================================
        PREMIUM LAPTOP MARQUEE
=========================================*/

.marquee-laptops{
    padding:100px 0;
    background:linear-gradient(180deg,#f8fbff,#eef5ff,#ffffff);
    overflow:hidden;
}

.marquee-laptops .section-title{
    text-align:center;
    margin-bottom:60px;
}

.marquee-laptops .section-title h5{
    color:#ff1493;
    letter-spacing:4px;
    font-weight:700;
    margin-bottom:15px;
}

.marquee-laptops .section-title h2{
    font-size:50px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.marquee-laptops .section-title p{
    color:#666;
    font-size:18px;
}

.marquee-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollLaptop 10s linear infinite;
}

.marquee-wrapper:hover .marquee-track{
    animation-play-state:paused;
}

/*=========================================
        CARD
=========================================*/

.marquee-card{

    min-width:330px;

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(18px);

    border-radius:25px;

    padding:25px;

    position:relative;

    z-index:1;

    overflow:hidden;

    transition:.45s;

    border:2px solid transparent;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.marquee-card::before{

content:"";

position:absolute;

top:-50%;

left:-50%;

width:220%;

height:220%;

background:linear-gradient(
45deg,
#6f00ff,
#ff1493,
#00d4ff,
#6f00ff
);

animation:borderRotate 6s linear infinite;

z-index:-2;

}

.marquee-card::after{

content:"";

position:absolute;

inset:2px;

background:#fff;

border-radius:23px;

z-index:-1;

}

.marquee-card:hover{

transform:translateY(-15px) scale(1.03);

box-shadow:0 25px 60px rgba(255,20,147,.25);

}

/*=========================================
        IMAGE
=========================================*/

.marquee-card img{

width:100%;

height:190px;

object-fit:contain;

transition:.45s;

}

.marquee-card:hover img{

transform:scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.marquee-card h3{

font-size:24px;

font-weight:700;

margin:20px 0;

text-align:center;

color:#111;

}

.marquee-card ul{

padding:0;

margin:0;

list-style:none;

}

.marquee-card ul li{

font-size:15px;

margin-bottom:10px;

color:#444;

}
.old-price{

    display:block;

    text-align:center;

    color:#999;

    text-decoration:line-through;

    font-size:18px;

    position:relative;

    z-index:10;

}
.marquee-card img,
.marquee-card h3,
.marquee-card ul,
.marquee-card .old-price,
.marquee-card h4{
    position:relative;
    z-index:5;
}
.marquee-card h4{

    font-size:34px;

    font-weight:800;

    color:#ff1493;

    text-align:center;

    margin-top:12px;

    position:relative;

    z-index:10;

}
.brand-tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff1493;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    z-index:100;
}
.marquee-card h4{
    text-align:center;
    color:#ff1493;
    font-size:30px;
    font-weight:800;
    margin:20px 0;
}
.view-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    color:#fff;
    font-weight:700;
    background:linear-gradient(90deg,#430258,#c300fe,#430258);
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}
.lap-content{
    padding:20px;
    text-align:center;
}
.lap-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.12);

transition:.4s;

position:relative;

padding:25px;

}

.lap-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.brand-tag{

position:absolute;

top:18px;

left:18px;

background:linear-gradient(90deg,#ff1493,#7c3aed);

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:bold;

}

.lap-card img{

width:100%;

height:220px;

object-fit:contain;

display:block;

transition:.4s;

}

.lap-card:hover img{

transform:scale(1.08);

}

.lap-content{

padding-top:20px;

text-align:center;

}

.lap-content h3{

font-size:24px;

font-weight:700;

margin-bottom:15px;

color:#111;

}

.lap-content p{

font-size:15px;

line-height:28px;

color:#666;

height:90px;

overflow:hidden;

}

.lap-content h4{

font-size:32px;

font-weight:800;

color:#ff1493;

margin:20px 0;

}

.view-btn{

width:100%;

padding:15px;

border:none;

border-radius:50px;

background:linear-gradient(90deg,#430258,#c300fe,#430258);

color:#fff;

font-size:17px;

font-weight:700;

cursor:pointer;

transition:.4s;

}

.view-btn:hover{

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(195,0,254,.35);

}

.view-btn i{

margin-right:10px;

}
/*=========================================
        ANIMATION
=========================================*/

@keyframes scrollLaptop{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@keyframes borderRotate{

100%{

transform:rotate(360deg);

}

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.marquee-card{

min-width:290px;

}

.marquee-laptops .section-title h2{

font-size:38px;

}

}

@media(max-width:576px){

.marquee-card{

min-width:260px;

}

.marquee-laptops{

padding:70px 0;

}

.marquee-laptops .section-title h2{

font-size:30px;

}

.marquee-card h3{

font-size:20px;

}

}
/*=========================================
        COMMON SECTION
=========================================*/

section{
    padding:90px 0;
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{

    color:#ff1493;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;

}

.section-title p{

    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;

}

/*=========================================
        GAMING BANNER
=========================================*/

.gaming-banner{

    background:linear-gradient(135deg,#0f172a,#1e293b,#111827);
    color:#fff;
    overflow:hidden;

}

.gaming-tag{

    display:inline-block;
    padding:10px 22px;
    background:#ff1493;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;

}

.gaming-banner h1{

    font-size:62px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:25px;

}

.gaming-banner h1 span{

    color:#ff1493;

}

.gaming-banner p{

    color:#d7d7d7;
    font-size:19px;
    line-height:1.9;
    margin-bottom:35px;

}

.gaming-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.shop-btn,
.contact-btn{

    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:.4s;

}

.shop-btn{

     background:linear-gradient(
        90deg,
        #430258,
        #c300fe,
        #430258
    );
    color:#fff;

}

.shop-btn:hover{

    transform:translateY(-8px);
    color:#fff;
    box-shadow:0 18px 35px rgba(255,20,147,.35);

}

.contact-btn{

    border:2px solid #fff;
    color:#fff;

}

.contact-btn:hover{

    background:#fff;
    color:#111;

}

.gaming-image{

    text-align:center;

}

.gaming-image img{

    width:100%;
    max-width:620px;
    animation:floatImage 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.45));

}

@keyframes floatImage{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0px);
}

}

/*=========================================
        PRODUCT CARD
=========================================*/

.accessory-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.45s;
    position:relative;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.accessory-card:hover{

    transform:translateY(-14px);
    box-shadow:0 25px 60px rgba(0,0,0,.16);

}

.accessory-card img{

    width:100%;
    height:230px;
    object-fit:contain;
    padding:25px;
    transition:.45s;

}

.accessory-card:hover img{

    transform:scale(1.08);

}

.offer-badge{

    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(45deg,#ff1493,#7c3aed);
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    z-index:10;

}

.accessory-content{

    padding:25px;

}

.accessory-content h3{

    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;

}

.accessory-content ul{

    padding:0;
    margin:0 0 22px;

}

.accessory-content ul li{

    list-style:none;
    color:#555;
    margin-bottom:10px;
    font-size:15px;

}

/*=========================================
        PRICE
=========================================*/

.price-box{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:22px;

}

.old-price{

    text-decoration:line-through;
    color:#999;
    font-size:17px;

}

.price-box h4{

    color:#ff1493;
    font-size:30px;
    font-weight:800;
    margin:0;

}

/*=========================================
        ADD CART BUTTON
=========================================*/

.add-cart{

    width:100%;
    border:none;
    padding:16px;
    border-radius:50px;
     background:linear-gradient(
        90deg,
        #430258,
        #c300fe,
        #430258
    );
    color:#fff;
    font-size:17px;
    font-weight:700;
    transition:.4s;
    cursor:pointer;

}

.add-cart:hover{

    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(255,20,147,.35);

}

.add-cart i{

    margin-right:10px;

}

/*=========================================
        SECTION BACKGROUNDS
=========================================*/

.monitor-section{

    background:#f8fafc;

}

.cpu-section{

    background:#ffffff;

}

.keyboard-section{

    background:#f4f7fb;

}

.mouse-section{

    background:#ffffff;

}
/*=========================================
        CPU SECTION
=========================================*/

.cpu-section{
    background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.cpu-section .accessory-card{
    border:2px solid transparent;
}

.cpu-section .accessory-card:hover{
    border-color:#7c3aed;
}

.cpu-section .accessory-card img{
    height:240px;
    padding:30px;
}

.cpu-section .accessory-content h3{
    text-align:center;
    min-height:60px;
}

.cpu-section .price-box{
    justify-content:center;
}

/*=========================================
        KEYBOARD SECTION
=========================================*/

.keyboard-section{
    background:#eef5ff;
}

.keyboard-section .accessory-card{
    background:linear-gradient(180deg,#ffffff,#f8f8ff);
}

.keyboard-section .accessory-card img{
    height:180px;
    object-fit:contain;
    transition:.4s;
}

.keyboard-section .accessory-card:hover img{
    transform:scale(1.12) rotate(-2deg);
}

.keyboard-section .accessory-content{
    text-align:center;
}

.keyboard-section .price-box{
    justify-content:center;
}

/*=========================================
        MOUSE SECTION
=========================================*/

.mouse-section{
    background:#ffffff;
}

.mouse-section .accessory-card{
    overflow:hidden;
}

.mouse-section .accessory-card img{
    height:190px;
    transition:.45s;
}

.mouse-section .accessory-card:hover img{
    transform:scale(1.15);
}

.mouse-section .accessory-content{
    text-align:center;
}

.mouse-section .accessory-content ul{
    text-align:left;
    margin-top:15px;
}

.mouse-section .price-box{
    justify-content:center;
}

/*=========================================
        CARD HOVER EFFECT
=========================================*/

.accessory-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.08),
        rgba(255,20,147,.08)
    );
    opacity:0;
    transition:.4s;
    pointer-events:none;
}

.accessory-card:hover::before{
    opacity:1;
}

.accessory-card:hover h3{
    color:#7c3aed;
    transition:.3s;
}

.accessory-card:hover h4{
    transform:scale(1.08);
    transition:.3s;
}

/*=========================================
        BUTTON EFFECT
=========================================*/

.add-cart{
    position:relative;
    overflow:hidden;
}

.add-cart::before{
    content:"";
    position:absolute;
    left:-120%;
    top:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.6s;
}

.add-cart:hover::before{
    left:120%;
}

/*=========================================
        IMAGE SHADOW
=========================================*/

.accessory-card img{
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.15));
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.section-title h2{
    font-size:36px;
}

.accessory-card img{
    height:190px;
}

.cpu-section .accessory-card img{
    height:200px;
}

}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:16px;
}

.accessory-content h3{
    font-size:20px;
}

.price-box h4{
    font-size:24px;
}

.add-cart{
    padding:14px;
    font-size:15px;
}

}
/*=========================================
        ROUTER SECTION
=========================================*/

.router-section{
    padding:80px 0;
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
}


.router-section .accessory-card{
    background:#fff;
    border-radius:20px;
   
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.router-section img{
    width:100%;
    height:220px;
    object-fit:contain;
    padding:20px;
}

.router-section .accessory-content{
    padding:20px;
    text-align:center;
}

.router-section .price-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:15px 0;
}
.accessory-card,
.combo-card,
.brand-box{
    opacity:1;
    transform:translateY(0);
    transition:0.5s;
}

.accessory-card.show,
.combo-card.show,
.brand-box.show{
    opacity:1;
    transform:translateY(0);
}

/*=========================================
        HEADSET SECTION
=========================================*/

.headset-section{

    background:#ffffff;

}

.headset-section .accessory-card{

    background:linear-gradient(135deg,#ffffff,#faf5ff);
    border:1px solid rgba(124,58,237,.12);

}

.headset-section .accessory-card:hover{

    border-color:#7c3aed;

}

.headset-section img{

    height:220px;
    object-fit:contain;
    padding:20px;

}

.headset-section .accessory-content{

    text-align:center;

}

.headset-section .price-box{

    justify-content:center;

}



/*=========================================
        GLASS EFFECT
=========================================*/

.router-section .accessory-card,
.headset-section .accessory-card,
.ups-section .accessory-card,
.security-section .accessory-card{

backdrop-filter:blur(15px);

-webkit-backdrop-filter:blur(15px);

}

/*=========================================
        CARD ANIMATION
=========================================*/

.router-section .accessory-card,
.headset-section .accessory-card,
.ups-section .accessory-card,
.security-section .accessory-card{

animation:fadeCard .8s ease;

}

@keyframes fadeCard{

0%{

opacity:0;

transform:translateY(50px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/*=========================================
        IMAGE HOVER
=========================================*/

.router-section img,
.headset-section img,
.ups-section img,
.security-section img{

transition:.45s;

}

.router-section .accessory-card:hover img,
.headset-section .accessory-card:hover img,
.ups-section .accessory-card:hover img,
.security-section .accessory-card:hover img{

transform:scale(1.08);

}

/*=========================================
        BUTTON
=========================================*/

.router-section .add-cart,
.headset-section .add-cart,
.ups-section .add-cart,
.security-section .add-cart{

margin-top:10px;

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){

.router-section img,
.headset-section img,
.ups-section img,
.security-section img{

height:170px;

}

.router-section h3,
.headset-section h3,
.ups-section h3,
.security-section h3{

font-size:20px;

}

.security-section h4,
.ups-section h4{

font-size:25px;

}

}
/*=========================================
        COMBO SECTION
=========================================*/

.combo-section{
    background:linear-gradient(135deg,#0449ea,#1e293b);
    color:#fff;
}

.combo-card{
    background:rgba(243, 5, 5, 0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:.45s;
    height:100%;
}

.combo-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.combo-card i{
    font-size:60px;
    color:#ff1493;
    margin-bottom:20px;
}

.combo-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.combo-card ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.combo-card ul li{
    margin:12px 0;
    color:#ddd;
    font-size:16px;
}
.combo-card h4
{
    font-size:38px;
    color:#00ff99;
    font-weight:800;
    margin-bottom:25px;
}
.combo-card h2{
     color:#fff;
}
/*=========================================
        COUNTER
=========================================*/

.counter-section{
    background:#fff;
}

.counter{
    font-size:55px;
    font-weight:800;
    color:#7c3aed;
}

.counter-section p{
    font-size:18px;
    color:#555;
    margin-top:10px;
}

/*=========================================
        BRANDS
=========================================*/

.brands-section{
    background:#f8fafc;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.brand-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    font-size:26px;
    font-weight:700;
    transition:.4s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.brand-box:hover{
    background:linear-gradient(45deg,#7c3aed,#ff1493);
    color:#fff;
    transform:translateY(-10px);
}

/*=========================================
        CTA
=========================================*/

.cta-section{
     background:linear-gradient(
        90deg,
        #430258,
        #c300fe,
        #430258
    );
    color:#fff;
    text-align:center;
}

.cta-section h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    font-size:20px;
    max-width:800px;
    margin:auto;
    margin-bottom:35px;
}

.cta-section .btn{
    padding:18px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
}

/*=========================================
        FOOTER
=========================================*/

.footer{
    background:#111827;
    color:#fff;
    padding:80px 0 30px;
}

.footer h4{
    color:#ff1493;
    margin-bottom:20px;
    font-weight:700;
}

.footer p,
.footer li{
    color:#ccc;
    line-height:1.8;
}

.footer ul{
    padding:0;
    list-style:none;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#ff1493;
    padding-left:8px;
}

.footer hr{
    border-color:#444;
    margin:45px 0 25px;
}

.footer .text-center p{
    color:#aaa;
}

/*=========================================
        SCROLL ANIMATION
=========================================*/

.combo-card,
.brand-box,
.accessory-card{
    opacity:0;
    transform:translateY(50px);
    animation:fadeUp .8s forwards;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.brands-grid{
grid-template-columns:repeat(2,1fr);
}

.combo-card{
margin-bottom:30px;
}

.cta-section h2{
font-size:36px;
}

}

@media(max-width:768px){

.brands-grid{
grid-template-columns:1fr;
}

.counter{
font-size:40px;
}

.brand-box{
font-size:22px;
padding:25px;
}

.combo-card h4{
font-size:30px;
}

.cta-section h2{
font-size:30px;
}

.cta-section p{
font-size:17px;
}

.footer{
text-align:center;
}

}
/* MOBILE VIEW */
@media (max-width:768px){

    /* Hamburger icon visible */
    .navbar-toggler{
        border:2px solid #430258;
        padding:8px 10px;
        background:#fff;
    }

    .navbar-toggler i,
    .navbar-toggler-icon{
        color:#430258 !important;
        filter: brightness(0);
    }

    /* Navbar height */
    .navbar{
        padding:15px 20px;
        background:#fff;
    }

    /* Navbar கீழே content gap */
    .hero-section,
    .banner-section,
    .main-section{
        margin-top:80px;
    }

    /* Logo size */
    .logo img{
        width:80px;
    }
}
.stock-info {
    margin: 10px 0;
}

.in-stock {
    color: #19c37d;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.out-stock {
    color: #ff4d6d;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}

.out-of-stock-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #777;
    color: #ddd;
    cursor: not-allowed;
    opacity: 0.7;
}