/*=========================================
        GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
        RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f8f9fb;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

/*=========================================
            NAVBAR
=========================================*/

/*=========================================
            NAVBAR
=========================================*/

/*==========================
 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 */

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

/* METS */

.logo-text h2{

    margin:0;

    font-size:34px;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

   color: midnightblue;

    background-size:300%;

    margin-left: 150px;

    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{

    background:linear-gradient(
        135deg,
        #430258,
        #c300fe,
        #430258
    );

    border-radius:40px;

    color:#fff !important;

    transition:.4s;

}

/* Cart Hover */

.cart-btn:hover{

    color:#fff !important;

    transform:scale(1.08);

    box-shadow:
    0 0 25px rgba(195,0,254,.6);

}

/* 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;

}

}
/*=========================================
            PAGE HEADER
=========================================*/

.page-header{
  margin-top:10px;
padding:180px 20px 100px;

text-align:center;

background:
linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
url("images/used-banner.jpg") center/cover;

color:#fff;

}

.page-header h5{

color:#ff1493;

font-size:18px;

letter-spacing:4px;

margin-bottom:15px;

}

.page-header h1{

font-size:65px;

font-weight:800;

margin-bottom:20px;

}

.page-header span{

color:#ff1493;

}

.page-header p{

max-width:900px;

margin:auto;

font-size:18px;

line-height:34px;

color:#ececec;

}

/*=========================================
            SEARCH SECTION
=========================================*/

.search-section{

padding:90px 5%;

background:#fff;

}

.search-section h2{

text-align:center;

font-size:45px;

font-weight:700;

margin-bottom:40px;

transition:.4s;

}

.search-section h2:hover{

color:#ff1493;

}

.search-box{

max-width:700px;

margin:auto;

position:relative;

}

.search-box input{

width:100%;

height:60px;

border:none;

outline:none;

padding:0 60px 0 25px;

background:#f3f3f3;

border-radius:50px;

font-size:17px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.search-box i{

position:absolute;

right:25px;

top:20px;

color:#ff1493;

font-size:20px;

}

/*=========================================
        FILTER BUTTONS
=========================================*/

.filter-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

margin-top:40px;

}

.filter-btn{

padding:13px 28px;

border:none;

background:#111;

color:#fff;

border-radius:40px;

font-weight:600;

cursor:pointer;

transition:.4s;

}

.filter-btn:hover{

background:#ff1493;

transform:translateY(-5px);

}

.filter-btn.active{

background:linear-gradient(45deg,#6f00ff,#ff1493);

box-shadow:0 12px 30px rgba(255,20,147,.35);

}
/*=========================================
        FEATURED SECTION
=========================================*/

.featured-section{
    padding:100px 5%;
    background:#f8f9fb;
}

.featured-wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:35px;
    align-items:start;
}

/*=========================================
        LEFT SIDEBAR
=========================================*/

.left-sidebar{
    background:#111;
    padding:30px;
    border-radius:25px;
    position:sticky;
    top:110px;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.left-sidebar h3{
    color:#fff;
    text-align:center;
    font-size:30px;
    margin-bottom:30px;
    font-weight:700;
}

.left-sidebar ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.left-sidebar li{
    background:#1c1c1c;
    color:#fff;
    padding:15px 18px;
    border-radius:12px;
    cursor:pointer;
    transition:.4s;
    font-weight:500;
}

.left-sidebar li:hover{
    background:#ff1493;
    transform:translateX(8px);
}

.left-sidebar li.active{
    background:linear-gradient(45deg,#6f00ff,#ff1493);
    color:#fff;
}
.left-sidebar ul li.active {
    color: #ffffff !important;
}
/*=========================================
        PRODUCT GRID
=========================================*/

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/*=========================================
        LAPTOP CARD
=========================================*/

.lap-card{
    background:#111;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:.5s;
}

.lap-card:hover{
    transform:translateY(-15px);
    box-shadow:0 30px 65px rgba(0,0,0,.25);
}

/*=========================================
        WHITE SLIDE
=========================================*/

.lap-card::before{
    content:"";
    position:absolute;
    top:-100%;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    transition:.6s;
    z-index:1;
}

.lap-card:hover::before{
    top:0;
}

.lap-card>*{
    position:relative;
    z-index:2;
}

/*=========================================
        IMAGE
=========================================*/

.lap-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.6s;
}

.lap-card:hover img{
    transform:scale(1.10);
}

/*=========================================
        USED BADGE
=========================================*/

.brand-tag{
    position:absolute;
    top:18px;
    left:18px;
    background:#ff1493;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    z-index:5;
}

/*=========================================
        CARD CONTENT
=========================================*/

.lap-content{
    padding:28px;
}

.lap-content h3{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    transition:.4s;
}

.lap-card:hover h3{
    color:#ff1493;
}

.stars{
    color:#ffc107;
    font-size:18px;
    margin-bottom:15px;
}

.lap-content p{
    color:#d9d9d9;
    line-height:30px;
    font-size:15px;
    margin-bottom:20px;
    transition:.4s;
}

.lap-card:hover p{
    color:#444;
}

/*=========================================
        PRICE
=========================================*/

.old-price{
    color:#999;
    text-decoration:line-through;
    font-size:18px;
    margin-bottom:6px;
}

.lap-content h4{
    color:#ff1493;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}
/*=========================================
        FEATURED SECTION
=========================================*/

.featured-section{
    padding:100px 5%;
    background:#f8f9fb;
}

.featured-wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:35px;
    align-items:start;
}

/*=========================================
        LEFT SIDEBAR
=========================================*/

.left-sidebar{
    background:#111;
    padding:30px;
    border-radius:25px;
    position:sticky;
    top:110px;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.left-sidebar h3{
    color:#fff;
    text-align:center;
    font-size:30px;
    margin-bottom:30px;
    font-weight:700;
}

.left-sidebar ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.left-sidebar li{
    background:#1c1c1c;
    color:#fff;
    padding:15px 18px;
    border-radius:12px;
    cursor:pointer;
    transition:.4s;
    font-weight:500;
}

.left-sidebar li:hover{
    background:#ff1493;
    transform:translateX(8px);
}

.left-sidebar li.active{
    background:linear-gradient(45deg,#6f00ff,#ff1493);
    color:#fff;
}
/*=========================================
        ADD TO CART BUTTON
=========================================*/

.add-cart{

    width:100%;

    margin-top:20px;

    padding:14px 18px;

    border:none;

    outline:none;

    border-radius:12px;

    background:linear-gradient(135deg,#6f00ff,#ff1493);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(255,20,147,.25);

}

.add-cart i{

    font-size:18px;

}

.add-cart:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#5b00d6,#ff0f8f);

    box-shadow:0 18px 35px rgba(255,20,147,.45);

}

.add-cart:active{

    transform:scale(.96);

}

.add-cart.added{

    background:#16a34a;

}
/*=========================================
        PRICE
=========================================*/

.old-price{
    color:#999;
    text-decoration:line-through;
    font-size:18px;
    margin-bottom:6px;
}

.lap-content h4{
    color:#ff1493;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}
.why-used .row{
    margin-top:50px;
}

/*==================================================
            WHY CHOOSE US
==================================================*/

.why-us{
    padding:100px 5%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#ff1493;
    font-size:18px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#ff1493;
}

.section-title p{
    max-width:750px;
    margin:auto;
    font-size:17px;
    line-height:30px;
    color:#666;
}

/*==================================================
            WHY CARD
==================================================*/

.why-card{
    position:relative;
    background:#111;
    border-radius:20px;
    overflow:hidden;
    padding:40px 25px;
    text-align:center;
    height:100%;
    transition:.5s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:#fff;
    transition:.5s;
    z-index:1;
}

.why-card:hover::before{
    bottom:0;
}

.why-card>*{
    position:relative;
    z-index:2;
}

.why-card i{
    font-size:55px;
    color:#ff1493;
    margin-bottom:20px;
    transition:.4s;
}

.why-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
    transition:.4s;
}

.why-card p{
    color:#ddd;
    line-height:28px;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(255,20,147,.30);
}

.why-card:hover h3{
    color:#ff1493;
}

.why-card:hover p{
    color:#444;
}

.why-card:hover i{
    transform:scale(1.15);
}

/*=========================================
            CUSTOMER REVIEWS
=========================================*/

.reviews{
    padding:100px 5%;
    background:#f8f9fb;
}

.review-card{
    background:#111;
    padding:35px;
    border-radius:22px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.review-card::before{
    content:"";
    position:absolute;
    top:-100%;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    transition:.6s;
    z-index:1;
}

.review-card:hover::before{
    top:0;
}

.review-card>*{
    position:relative;
    z-index:2;
}

.review-card img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    border:4px solid #ff1493;
    margin-bottom:20px;
    transition:.4s;
}

.review-card:hover img{
    transform:scale(1.08);
}

.review-card h3{
    color:#fff;
    margin-bottom:10px;
    transition:.4s;
}

.review-card:hover h3{
    color:#ff1493;
}

.review-card .stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:15px;
}

.review-card p{
    color:#d8d8d8;
    line-height:30px;
    transition:.4s;
}

.review-card:hover p{
    color:#444;
}

.review-card:hover{
    transform:translateY(-12px);
}

/*=========================================
                FAQ
=========================================*/

.faq-section{
    padding:100px 5%;
    background:#fff;
}

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#111;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#111;
    color:#fff;
    padding:22px 25px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    transition:.4s;
}

.faq-question:hover{
    color:#ff1493;
}

.faq-question i{
    transition:.4s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    background:#fff;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:20px 25px;
    color:#444;
    line-height:30px;
    margin:0;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    color:#ff1493;
}

/*=========================================
            CTA SECTION
=========================================*/

.cta-section{
    padding:100px 5%;
    background:linear-gradient(135deg,#111,#1f1f1f);
}

.cta-box{
    text-align:center;
    padding:70px 30px;
    border-radius:25px;
    background:linear-gradient(45deg,#6f00ff,#ff1493);
    color:#fff;
    box-shadow:0 20px 50px rgba(255,20,147,.35);
}

.cta-box h2{
    font-size:46px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:30px;
}

.contact-btn{
    display:inline-block;
    padding:16px 45px;
    background:#fff;
    color:#111;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.contact-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

/*=========================================
                FOOTER
=========================================*/

.footer{
    background:#0d0d0d;
    color:#fff;
    padding:80px 5% 25px;
}

.footer h3{
    color:#ff1493;
    margin-bottom:20px;
    font-size:28px;
}

.footer p{
    color:#bbb;
    line-height:30px;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#bbb;
    transition:.4s;
}

.footer ul li a:hover{
    color:#ff1493;
    padding-left:8px;
}

.footer hr{
    border-color:#333;
    margin:40px 0 20px;
}

.copyright{
    text-align:center;
    color:#888;
    font-size:15px;
}
/*=========================================
        MOBILE VIEW
=========================================*/

@media (max-width: 768px){

/* Main Row */
.products-wrapper,
.product-wrapper,
.main-content,
.row{

    display:flex;
    flex-direction:column;
    gap:20px;

}

/* Left Sidebar */

.left-sidebar{

    width:100% !important;
    max-width:100%;
    margin-bottom:20px;

}

/* Right Product Grid */

.product-grid{

    width:100%;
    display:grid;
    grid-template-columns:1fr !important;
    gap:20px;

}

/* Product Cards */

.lap-card{

    width:100%;
    max-width:100%;
    margin:0 auto;

}

.lap-card img{

    width:100%;
    height:auto;

}

}

/*================ MOBILE VIEW =================*/

@media screen and (max-width:768px){

.featured-wrapper{
    display:flex !important;
    flex-direction:column !important;
}

.left-sidebar{
    width:100% !important;
    max-width:100% !important;
    margin-bottom:20px;
}

.product-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
}

.lap-card{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto 20px;
}

.lap-card img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.container,
.container-fluid{
    width:100% !important;
    padding:0 15px !important;
}

}
.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;
}