/*=========================================
        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{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}



/*==========================
 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;
}

/* LAP STORE */

.logo-text span{

    font-size:14px;

    letter-spacing:6px;

    font-weight:700;

    color:#ff1493;

    margin-top:6px;

    text-transform:uppercase;

    animation:fadeMove 2s infinite alternate;
}

/* 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;

color:#fff;

background:
linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
url("images/republished-bg.jpg") center/cover;

}

.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:850px;

margin:auto;

font-size:18px;

line-height:34px;

color:#e5e5e5;

}

/*=========================================
        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 65px 0 25px;

border-radius:50px;

background:#f3f3f3;

box-shadow:0 15px 35px rgba(0,0,0,.08);

font-size:17px;

}

.search-box i{

position:absolute;

right:28px;

top:21px;

font-size:20px;

color:#ff1493;

}

/*=========================================
        FILTER BUTTONS
=========================================*/

.filter-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

margin-top:40px;

}

.filter-btn{

border:none;

padding:14px 30px;

border-radius:40px;

background:#111;

color:#fff;

font-size:15px;

font-weight:600;

cursor:pointer;

transition:.4s;

}

.filter-btn:hover{

background:#ff1493;

transform:translateY(-6px);

}

.filter-btn.active{

background:linear-gradient(45deg,#6f00ff,#ff1493);

box-shadow:0 15px 35px rgba(255,20,147,.35);

}

/*=========================================
        FEATURED SECTION
=========================================*/

/*=========================================
        FEATURED SECTION
=========================================*/

.featured-section{

    padding:90px 5%;
    background:#f8f9fb;

}

.featured-wrapper{

    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;

}

/*==================================================
            SIDEBAR
==================================================*/

.left-sidebar{

    background:#111;
    padding:30px;
    border-radius:20px;
    position:sticky;
    top:100px;
    height:fit-content;

}

.left-sidebar h3{

    color:#fff;
    margin-bottom:25px;

}

.left-sidebar ul{

    list-style:none;

}

.left-sidebar li{

    color:#ddd;
    padding:15px;
    border-radius:12px;
    margin-bottom:10px;
    cursor:pointer;
    transition:.4s;

}

.left-sidebar li:hover{

    background:#ff1493;
    color:#fff;
    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(2,1fr);
    gap:35px;
}

/*==================================================
            LAPTOP CARD
==================================================*/

.lap-card{
    position:relative;
    background:#111;
    border-radius:22px;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    bottom: 0px;
}

/* White Slide */

.lap-card::before{
    content:"";
    position:absolute;
    left:0;
    top:-100%;
    width:100%;
    height:100%;
    background:#fff;
    transition:.6s;
    z-index:1;
}

.lap-card:hover::before{
    top:0;
}

/*==================================================
            IMAGE
==================================================*/

.lap-card img{
    width:100%;
    height:270px;
    object-fit:cover;
    transition:.6s;
    position:relative;
    z-index:2;
}

.lap-card:hover img{
    transform:scale(1.08);
}

/*==================================================
            BRAND TAG
==================================================*/

.brand-tag{
    position:absolute;
    top:18px;
    left:18px;
    background:#ff1493;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    z-index:3;
}

/*==================================================
            CONTENT
==================================================*/

.lap-content{
    position:relative;
    z-index:2;
    padding:28px;
}

.lap-content h3{
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
    transition:.4s;
}

.lap-content p{
    color:#d9d9d9;
    line-height:30px;
    margin-bottom:20px;
    transition:.4s;
}

.lap-content h4{
    color:#00ff99;
    font-size:28px;
    margin-bottom:25px;
    font-weight:700;
    transition:.4s;
}

/*==================================================
            STARS
==================================================*/

.stars{
    color:#FFD700;
    font-size:18px;
    margin-bottom:18px;
}

/*==================================================
            BUTTON
==================================================*/

.viwe-btn{
    display:inline-block;
    padding:14px 34px;
    border-radius:35px;
    background:linear-gradient(45deg,#6f00ff,#ff1493);
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.viwe-btn:hover{
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(255,20,147,.35);
}

/*==================================================
            CARD HOVER
==================================================*/

.lap-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(255,20,147,.25);
}

.lap-card:hover h3{
    color:#ff1493;
}

.lap-card:hover p{
    color:#444;
}

.lap-card:hover h4{
    color:#6f00ff;
}
.lap-card .add-cart{
    width:100% !important;
    background:#430258 !important;
    color:#fff !important;
    border:0 !important;
    border-radius:10px !important;
    padding:15px !important;
    font-size:16px !important;
    font-weight:bold !important;
}

.lap-card .add-cart:hover{
    background:#c300fe !important;
    color:#fff !important;
}
/*==================================================
            SHOW ANIMATION
==================================================*/

.lap-card{
    opacity:1;
    transform:translateY(0);
}
.add-cart{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

width:100%;

padding:15px 20px;

margin-top:20px;

border:none;

border-radius:50px;

background:linear-gradient(45deg,#6f00ff,#ff1493);

color:#fff;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.4s;

overflow:hidden;

position:relative;

}

.add-cart i{

font-size:18px;

}

.add-cart::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:rgba(255,255,255,.25);

transition:.5s;

}

.add-cart:hover::before{

left:100%;

}

.add-cart:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(255,20,147,.45);

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:992px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .featured-wrapper{
        grid-template-columns:1fr;
    }

    .left-sidebar{
        position:relative;
        top:0;
    }

}

@media(max-width:576px){

    .lap-card img{
        height:220px;
    }

    .lap-content{
        padding:20px;
    }

    .lap-content h3{
        font-size:22px;
    }

    .lap-content h4{
        font-size:24px;
    }

    .view-btn{
        width:100%;
        text-align:center;
    }

}
/*=========================================
        CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(#6f00ff,#ff1493);

border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

background:#ff1493;

}
/*=========================================
            WHY CHOOSE US
=========================================*/

.why-us{
    padding:100px 8%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#ff1493;
    font-size:18px;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    transition:.4s;
}

.section-title h2 span{
    color:#ff1493;
}

.section-title h2:hover{
    color:#ff1493;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:32px;
    font-size:17px;
}

.why-card{

    background:#111;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.5s;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.why-card::before{

content:"";

position:absolute;

top:-100%;

left:0;

width:100%;

height:100%;

background:#fff;

transition:.6s;

z-index:1;

}

.why-card:hover::before{

top:0;

}

.why-card>*{

position:relative;

z-index:2;

}

.why-card i{

font-size:55px;

color:#ff1493;

margin-bottom:25px;

transition:.4s;

}

.why-card h3{

font-size:26px;

color:#fff;

margin-bottom:15px;

transition:.4s;

}

.why-card p{

color:#d7d7d7;

line-height:30px;

transition:.4s;

}

.why-card:hover{

transform:translateY(-12px);

}

.why-card:hover h3{

color:#ff1493;

}

.why-card:hover p{

color:#444;

}

.why-card:hover i{

transform:rotateY(360deg) scale(1.1);

}

/*=========================================
            REVIEWS
=========================================*/

.reviews{

padding:100px 8%;

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:110px;

height:110px;

border-radius:50%;

margin:auto;

object-fit:cover;

border:5px solid #ff1493;

margin-bottom:20px;

transition:.4s;

}

.review-card h3{

color:#fff;

font-size:24px;

margin-bottom:10px;

transition:.4s;

}

.review-card .stars{

color:#ffc107;

font-size:20px;

margin-bottom:18px;

}

.review-card p{

color:#d7d7d7;

line-height:30px;

transition:.4s;

}

.review-card:hover{

transform:translateY(-12px);

}

.review-card:hover img{

transform:scale(1.08);

}

.review-card:hover h3{

color:#ff1493;

}

.review-card:hover p{

color:#444;

}

/*=========================================
            CALL TO ACTION
=========================================*/

.cta-section{

padding:100px 8%;

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:35px;

color:#f4f4f4;

}

.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 18px 35px rgba(0,0,0,.25);

}

/*=========================================
            FOOTER
=========================================*/

.footer{

background:#0d0d0d;

padding:80px 8% 25px;

color:#fff;

}

.footer h3{

font-size:28px;

margin-bottom:20px;

color:#ff1493;

}

.footer p{

color:#bbb;

line-height:30px;

}

.footer ul{

padding:0;

}

.footer ul li{

margin-bottom:12px;

list-style:none;

}

.footer ul li a{

color:#bbb;

transition:.4s;

text-decoration:none;

}

.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;

}
/*=========================================
        RESPONSIVE DESIGN
=========================================*/

@media (max-width:1200px){

.featured-wrapper{

grid-template-columns:250px 1fr;

gap:25px;

}

.product-grid{

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

}

.page-header h1{

font-size:55px;

}

}

/*=========================================
        TABLET
=========================================*/

@media (max-width:992px){

.page-header{

padding:150px 20px 80px;

}

.page-header h1{

font-size:45px;

}

.page-header p{

font-size:16px;

line-height:30px;

}

.featured-wrapper{

grid-template-columns:1fr;

}

.left-sidebar{

position:relative;

top:0;

margin-bottom:35px;

}

.left-sidebar ul{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.product-grid{

grid-template-columns:repeat(2,1fr);

}

.section-title h2{

font-size:38px;

}

.cta-box h2{

font-size:35px;

}

.footer{

text-align:center;

}

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:768px){

.logo-img{

width:150px;

}

.navbar-nav{

text-align:center;

margin-top:20px;

}

.nav-link{

padding:12px 0;

}

.page-header{

padding:130px 15px 70px;

}

.page-header h1{

font-size:36px;

}

.page-header h5{

font-size:15px;

letter-spacing:2px;

}

.search-section h2{

font-size:32px;

}

.search-box input{

height:55px;

font-size:15px;

}

.filter-buttons{

gap:10px;

}

.filter-btn{

padding:10px 20px;

font-size:14px;

}

.product-grid{

grid-template-columns:1fr;

}

.left-sidebar ul{

grid-template-columns:1fr;

}

.lap-card img{

height:220px;

}

.section-title h2{

font-size:32px;

}

.section-title p{

font-size:15px;

line-height:28px;

}

.why-card{

padding:30px 20px;

}

.review-card{

padding:30px 20px;

}

.review-card img{

width:90px;

height:90px;

}

.cta-box{

padding:50px 20px;

}

.cta-box h2{

font-size:28px;

}

.cta-box p{

font-size:15px;

}

.footer{

padding:60px 20px 20px;

}

.footer h3{

font-size:24px;

}

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:576px){

.page-header h1{

font-size:30px;

}

.page-header p{

font-size:14px;

}

.search-section{

padding:70px 20px;

}

.search-section h2{

font-size:28px;

}

.lap-content{

padding:20px;

}

.lap-content h3{

font-size:22px;

}

.lap-content h4{

font-size:24px;

}

.brand-tag{

font-size:11px;

padding:6px 15px;

}

.add-cart{

padding:14px;

font-size:15px;

}

.why-card i{

font-size:45px;

}

.review-card img{

width:80px;

height:80px;

}

.cta-btn{

width:100%;

text-align:center;

}

}

/*=========================================
        SCROLL ANIMATION
=========================================*/

.fade-up{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*=========================================
        IMAGE HOVER
=========================================*/

.lap-card img{

will-change:transform;

}

/*=========================================
        BUTTON SMOOTH EFFECT
=========================================*/

button,
a{

transition:all .35s ease;

}

/*=========================================
        SELECTION COLOR
=========================================*/

::selection{

background:#ff1493;

color:#fff;

}
.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;
}

/*=========================================
        END
=========================================*/