* {
    margin: 0;
    padding: 0;
}

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

body::-webkit-scrollbar {
    display: none;
}

/* Offer Bar */
.offerbar {
    background-color: #1D232C;
    font-size: 1.5vw;
    text-align: center;
    color: white;
    padding: 5px;
}

/* NavBar */

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

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

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

.navbar__links a:hover {
    text-decoration: underline;
    color: #1D232C;
}

.navbar__menu {
    display: none;
}

/* Side NavBar */

.sidenav {
    background-color: #1D232C;
    height: 100%;
    width: 50%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 25px;
    margin-left: -70%;
    color: white;
    transition-duration: 1s;
    z-index: 200;
}

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

.sidenav__links a {
    text-decoration: none;
    color: white;
    padding: 10px;
}

.sidenav i {
    cursor: pointer;
}

/* Both Side Margin */

.slidertooffer {
    margin-left: 16px;
    margin-right: 16px;
}

/* Slider Images */

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

.slider__images {
    display: flex;
    transition: 2s;
}

.slider__image {
    width: 100vw;
}

.sliderleft__arrow {
    position: absolute;
    top: 35%;
    left: 5%;
    z-index: 100;
    cursor: pointer;
}

.sliderleft__arrow i {
    font-size: 10vw;
}

.sliderright__arrow {
    position: absolute;
    top: 35%;
    right: 5%;
    cursor: pointer;
    z-index: 10;
}

.sliderright__arrow i {
    font-size: 10vw;
}

.slider__content {
    position: absolute;
    color: white;
    text-align: center;
    width: 100%;
    top: 20%;
    z-index: 10;
}

.slider__content h1 {
    font-size: 5vw;
    z-index: 10;
}

.slider__content button {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    color: #1D232C;
    cursor: pointer;
    z-index: 10;
}

/* Brand */

.brand__title {
    margin-top: 5vw;
}

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

.brands__icon {
    width: 4vw;
    align-items: center;
}

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

.brands__icon:hover {
    cursor: pointer;
}

/* Reviews */

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

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

.reviewstwo__content-box {
    background-color: #F2F4F7;
    border-radius: 5px;
    padding: 10px;
}

/* New Arrivals */

.newarrivals__title {
    margin-top: 5vw;
}

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

.newarrivals__container__img {
    position: relative;
}

.newarrivals__container__img img {
    border-radius: 2%;
}

.newarrivals__container__img button {
    padding: 5% 10% 5% 10%;
    margin-top: 10px;
    font-size: 1.2vw;
    color: #1D232C;
    border-radius: 10px;
    position: absolute;
    border: none;
    top: 50%;
    left: 18%;
    z-index: 2;
}

.newarrivals__container__img button:hover {
    cursor: pointer;
}

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

/* Most Wanted */

.mostwanted__title {
    margin-top: 5vw;
}

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

.mostwanted__container__content {
    position: relative;
}

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

.mostwanted__container img {
    border-radius: 2%;
}

.likebutton {
    width: 15%;
    position: absolute;
    bottom: 12%;
    right: 5%;
    transition: transform 0.2s;
    cursor: pointer;
}

.likebutton:active {
    transform: scale(1.2);
}

.mostwanted__container::-webkit-scrollbar {
    display: none;
}

/* Offer */

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

.limitedoffer img {
    width: 100%;
    height: 100%100%;
}

.limitedoffer__content {
    padding: 5%;
}

.limitedoffer__content button {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    margin-top: 10px;
    font-size: 1.2vw;
    color: #1D232C;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

/* News Letter */

.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 input:focus {
    outline: none;
}

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

.news button:hover {
    cursor: pointer;
}

/* Footer */

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

.footer__container {

    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer__container__one {
    display: flex;
    flex-direction: column;
}

.footer__icon {
    width: 40px;
    margin: 2vw;
    display: flex;
    gap: 77px;
    cursor: pointer;
}

/* Scroll Fade Effect */

.startscrollfade {

    transition: 3s;
}

.endscrollfade {
    opacity: 0;
}

/* Filter Functionality */

.divide-section {
    display: flex;
}

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

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

.vertical-line {
    border: none;
    border-left: 3px solid #1D232C;
    height: 100%;
    margin: 0 20px;
    position: absolute;
    top: 0px;
    right: 0px
}

.filter-section-price,
.filter-section-arrivals,
.filter-section-occasion,
.filter-section-colors {
    margin-top: 3vw;
    margin-bottom: 10px;
}

.product-section {
    padding: 10px;
}

.product {
    margin-top: 2vw;
    font-size: 1vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}

.product img {
    width: 20vw;
}

/* Search Bar */

.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;
}

/* Contact Form */

.contact__form {
    background-color: #1D232C;
    color: #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 60vw;
    margin: auto;
    padding: 5vw;
    padding-right: 10vw;
    margin-top: 10px;
}

.contact__form h2 {
    margin-bottom: 1vw;
}

.contact__form label {
    display: block;
    margin-bottom: 1vw;
}

.contact__form input[type="text"],
.contact__form textarea {
    width: 100%;
    padding: 2vw;
    border: 1px solid #dddddd;
    border-radius: 4px;
    margin-bottom: 1vw;
    font-size: 1vw;
}

.contact__form textarea {
    resize: vertical;
    height: 10vh;
}

.contact__form input[type="submit"] {
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    background-color: #0056b3;
}

.contact__form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* SideNav Phone */

@media screen and (max-width:900px) {
    .navbar__menu {
        display: block;
        cursor: pointer;
    }

    .navbar__links {
        display: none;
    }
}