* {
    margin: 0px;
    padding: 0px;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
    width: 0; 
}

.offer-bar {
    background-color: #1D232C;
    color: #E2E1E1;
    padding: 5px;
    text-align: center;
    font-size: 1.5vw;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Navigation Bar */

.navbar {
    display: flex;
    justify-content: space-between;
    color: #1D232C;
    align-items: center;
    position: sticky;
    top: 0px;
    background-color: white;
    padding-top: 1vw;
    padding-bottom: 1vw;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 3;
}

.navbar-links {
    display: flex;
    width: 50%;
    justify-content: space-around;
    align-items: center;
}

.navbar-links a{
    text-decoration: none;
    color: #1D232C;
}

.navbar-links a:hover{
    text-decoration: underline;
}

.navbar-search {
    border: solid #1D232C 1px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 95%;
}

.navbar-search input {
    border: none;
    width: 100%;
    background-color: transparent;
}

input:focus {
    outline: none;
}

.navbar-menu-toggle {
    display: none;
}

@media screen and (max-width:900px) {

    .navbar-menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }
}

/* Side Navbar */

.side-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #1D232C;
    color: #E2E1E1;
    margin-left: -60%;
    transition-duration: 1s;
    z-index: 10;
    padding: 20px;
}

.side-navbar-link{
    margin-bottom: 30px;
}

.side-navbar-links a{
    text-decoration: none;
    color: #E2E1E1;
}

.side-navbar-links a:hover{
    text-decoration: underline;
}

/* Slider */

.slider{
    overflow: hidden;
    display: flex;
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.slider-image-container{
    display: flex;
    transition: 2s;
}

.slider-image{
    width: 100vw;
}

.slider-left-button{
    position: absolute;
    top: 35%;
    left: 5%;
    z-index: 1;
}

.slider-left-button i{
    font-size: 10vw;
}

.slider-right-button{
    position: absolute;
    top: 35%;
    right: 5%;
}

.slider-right-button i{
    font-size: 10vw;
}

.slider-content{
    position: absolute;
    color: white;
    text-align: center;
    width: 100%;
    top: 20%;
}

.slider-content h1{
    font-size: 5vw;
}

.slider-content button{
   padding: 10px 20px;
   margin-top: 10px;
   color: #1D232C;
}

/* Brands */

.brands{
    display: flex;
    margin-top: 2vw;
    justify-content: space-between;
}

.brands-icon{
    width: 4vw;
}

.brands-item{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 2vw;
}

/* Services */

.servives-container-1{
    margin-top: 5vw;
    margin-bottom: 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5vw;
}

.servives-container-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 1vw;
}

.servives-container-2 div{
    border-radius: 5px;
    background-color: #F2F4F7;
    padding: 10px;
}

/* New Arrival */

.new-arrival{
    display: flex;
    justify-content: space-between;
    margin-top: 2vw;
}

.new-arrival-container{
   position: relative;
}

.new-arrival-container img{
    border-radius: 2%;
}

.overlay{
    border-radius: 2%;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    top: 0;
    opacity: 0.6;
}

.new-arrival button{
    padding: 5% 10%;
    margin-top: 10px;
    font-size: 1.2vw;
    border-radius: 10px;
    position: absolute;
    border: none;
    top: 50%;
    left: 18%;
}

/* Most Wanted */

.most-wanted{
    display: flex;
    justify-content: space-between;
    margin-top: 2vw;
    overflow-x: scroll;
    gap: 20px;
}

.most-wanted-container{
   position: relative; 
}

.most-wanted img{
    border-radius: 2%;
}

.sale-overlay{
    position: absolute;
    top:3px;
    left: 3px;
    font-size: 2vw;
    background-color: red;
    color: white;
    padding: 0 10px;
    border-radius: 10%;
}

.most-wanted::-webkit-scrollbar {
    appearance: none;
}

.like-button{
    position: absolute;
    width: 15%;
    bottom: 12%;
    right: 5%;
}

/* Limited Offer */

.limited-offer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1D232C;
    color: #E2E1E1;
    padding: 20px;
    font-size: 2vw;
}

.limited-offer img{
    width: 100%;
}

.limited-offer-text{
    padding: 5%;
}

.limited-offer button{
    padding: 2.5% 5%;
    margin-top: 10px;
    font-size: 1.2vw;
    border-radius: 10px;
    border: none;
}

/* Newsletter */

.news{
    font-size: 2vw;
    margin-top: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news input{
    padding: 11px;
    width: 80vw;
    margin-bottom: 10px;
    border: solid #1D232C 3px;
}

.news button{
    margin-top: 10px;
    font-size: 1.8vw;
    color: #E2E1E1;
    background-color: #1D232C;
    border-radius: 10px;
    border: none;
    padding:10px
}

/* Footer */

.icon{
    width: 40px;
    margin: 2vw;
}

.footer{
    font-size: 2vw;
    margin-top: 5vw;
    padding: 40px;
    background-color: #1D232C;
    color: #E2E1E1;
}

.footer-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-box-1{
    display: flex;
    flex-direction: column;
}

/* Collections */

.divide-section{
    display: flex;
}

.filter-section{
    flex-basis: 25%;
    position: relative;
    font-size: 2vw;
    padding-right: 20px;
}

.product-section{
    flex-basis: 75%;
    position: relative;
    padding: 10px;
}

.vertical-line{
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 80%;
    background-color: #1D232C;
}

.products{
    margin-top: 2vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* FIXED PRODUCT GRID */

.product{
    width:30%;
    margin-bottom:20px;
}

.product img{
    width:100%;
    border-radius:6px;
}

.product h1{
    font-size:1.2vw;
}

.product p{
    color:gray;
}

/* Contact Form */

.contact-form {
    background-color: #1D232C;
    color: #dddddd;
    border-radius: 8px;
    width: 60vw;
    margin: auto;
    padding: 5vw;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}


