
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
/* Navbar */

.navbar{
    width:100%;

    background:#121212;
    border:2px solid #ff008a;
    border-radius:15px;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    box-shadow:0 0 20px rgba(255,0,138,.25);
}

.logo{
    color:#ff008a;
    font-size:22px;
    font-weight:bold;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff008a;
}

/* Mobile */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .nav-links{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }
}
:root{
    --bg:#050505;
    --card:#111111;
    --pink:#ff008a;
    --white:#ffffff;
    --gray:#bdbdbd;
}

body{
    background:var(--bg);
    color:var(--white);
    min-height:100vh;
}

.products-page{
    padding:40px 6%;
}

/* SEARCH BAR */

.search-container{
    max-width:700px;
    margin:0 auto 50px;
    display:flex;
    gap:15px;
}

.search-container input{
    flex:1;
    height:55px;
    background:#111;
    border:1px solid rgba(255,255,255,.1);
    border-radius:50px;
    padding:0 25px;
    color:white;
    outline:none;
    font-size:15px;
}

.search-container input:focus{
    border-color:var(--pink);
}

.search-container button{
    height:55px;
    padding:0 30px;
    border:none;
    border-radius:50px;
    background:var(--pink);
    color:white;
    cursor:pointer;
    font-weight:600;
}

/* PRODUCT GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* 1:1 SQUARE PRODUCT CARD */

.product-card{
    background:var(--card);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;

    aspect-ratio:1/1;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:20px;
    text-align:center;

    transition:.3s;
    cursor:pointer;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:var(--pink);
    box-shadow:
    0 0 20px rgba(255,0,138,.2),
    0 0 40px rgba(255,0,138,.15);
}

.product-card img{
    width:65%;
    height:65%;
    object-fit:contain;
    margin-bottom:15px;
}

.product-card h3{
    font-size:18px;
    margin-bottom:8px;
}

.product-card p{
    color:var(--pink);
    font-weight:600;
    font-size:17px;
}

/* PAGINATION */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:50px;
}

.pagination button{
    background:var(--pink);
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}

.pagination span{
    color:white;
    font-weight:600;
}

/* LAPTOP */

@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* TABLET */

@media(max-width:768px){

    .search-container{
        flex-direction:column;
    }

    .search-container button{
        width:100%;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:480px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-card h3{
        font-size:16px;
    }

}
#suggestions{
    max-width:700px;
    margin:10px auto 30px;
    background:#111;
    border-radius:15px;
    overflow:hidden;
}

.suggestion-item{
    padding:15px 20px;
    cursor:pointer;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.suggestion-item:hover{
    background:#1a1a1a;
    color:#ff008a;
}
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);
    z-index:9999;

    justify-content:center;
    align-items:center;
}

.modal-content{
    width:90%;
    max-width:600px;
    background:#111;
    border-radius:25px;
    padding:30px;
    text-align:center;
    position:relative;
    border:1px solid #ff008a;
}

.modal-content img{
    width:250px;
    height:250px;
    object-fit:contain;
}

.modal-content h2{
    margin-top:20px;
}

.modal-content h3{
    color:#ff008a;
    margin:15px 0;
}

.modal-content p{
    color:#bdbdbd;
    line-height:1.7;
}

#closeModal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:35px;
    cursor:pointer;
    color:white;
}
.image-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

#modalImage{
    width:300px;
    height:300px;
    object-fit:contain;
}

.arrow{
    width:50px;
    height:50px;
    border:none;
    background:#ff008a;
    color:white;
    font-size:20px;
    border-radius:50%;
    cursor:pointer;
}

.thumbnail-row{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}

.thumb{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    border:2px solid transparent;
}

.thumb:hover{
    border-color:#ff008a;
}
#buyBtn{
    margin-top:20px;
    padding:14px 30px;
    border:none;
    border-radius:30px;
    background:#ff008a;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#buyBtn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(255,0,138,.4);
}
.bottom-banner a{
    display:block;
}

.bottom-banner img{
    width: 100%;
    margin-top: 20px;
    height:auto;
    display:block;
    border-radius:16px;
    box-shadow:0 0 25px rgba(255,0,138,.25);
    transition:transform .3s ease;
}

.bottom-banner img:hover{
    transform:scale(1.02);
}