* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: white;
    overflow-x: hidden;
    color: black;
}

/* ---------- TOP BANNER ---------- */
.top_banner {
    background-color: black;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
}

/* ---------- NAVBAR ---------- */
#navbar {

    width: 100%;
    background-color: white;
    position: relative;
    z-index: 100;
}

.nav_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav_left i {
    font-size: 22px;
    cursor: pointer;
}

.nav_logo img {
    width: 80px;
}

.nav_menu {
    display: none;
}

.nav_menu li:hover {
    transform: scale(1.1);
}

nav li.active {
    transform: scale(1.75);
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav_links {
    display: none;
    list-style: none;
    gap: 20px;
}

.nav_links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.nav_links a:hover {
    text-decoration: underline;
}



.cart_icon {
    width: 30px;
    height: 30px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}



/* ------------------------------------main------------------ */

/* --------------------------footwear_product------------------- */
.collection {
    padding: 16px;
    text-align: center;
}

.collection h2 {
    font-size: 24px;
    margin-bottom: 20px;
    align-items: start;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product {
    background: #f9f9f9;
    /* border-radius: 8px; */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.03);
}

.product img {
    width: 100%;
    height: auto;
}

.product h3 {
    font-size: 16px;
    margin: 10px 0;
}

/* Filter Footer */
.footer-filter {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    margin-top: 24px;
}

#product_footwear {
    margin: 50px;
}

.product_card_1 {
    width: 90%;
    max-width: 300px;
    margin: 5px auto;
    padding: 10px;
    text-align: left;
    font-family: Arial, sans-serif;
    background-color: #fff;
}


.offer_text {
    color: #a52424;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 600;
}

.product_name {
    font-size: 15px;
    font-weight: 600;
    margin: 4px 0;
}

.product_material {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.price {
    font-size: 1rem;
}

.old_price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
}

#offer_text1 {
    font-size: 15px;
    color: rgb(202, 29, 13);
}

.offer_text2 {
    color: #000;
}

#poster {
    display: none;
}

/* ------------------------------footer------------------------------------------------ */

/* ---------------------------return and exchange------------------- */

/* .container-fluid {
    height: 300px;
    position: relative;
} */
/* 
.container {
    position: absolute;
    top: 30%;
    left: 2%
} */

#slide_info {
    height: 300px;
    position: relative;
}

#slide_info1 {
    position: absolute;
    top: 20%;
    left: 2%;
}

#slide_info2 {
    position: absolute;
    top: 20%;
    left: 2%;
}

.last_footer {
    background-color: #fff;
    padding: 30px;
    border-top: 1px solid #ddd;
}

.last_footer h6 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.last_footer p,
.last_footer a {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.last_footer a {
    text-decoration: none;
}

.footer-section {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 5px;
    font-size: 18px;
    color: #333;
}

.payment-icons img {
    width: 40px;
    margin: 0 5px;
}

.selectors {
    margin-top: 20px;
}

.last_footer .row {
    display: block;
    text-align: center;
}

.last_footerr .col-12 {
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 10px;
}

.selectors {
    margin-top: 20px;
}

.footer-terms {
    margin-top: 20px;
}

.payment-icons img {
    width: 30px;
}

#country,
#language {
    padding: 5px;
}

/* --------- MEDIA QUERY: LAPTOP VIEW --------- */
@media only screen and (min-width:1200px) {
    .nav_container {
        justify-content: center;
        padding: 20px 80px;
    }

    .nav_left {
        display: none;
    }

    .nav_logo {
        position: absolute;
        left: 50px;
    }

    .nav_menu {
        display: block;
    }

    .nav_menu ul {
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        left: 170px;
        top: 10px;
        gap: 40px;
        list-style: none;
    }

    .nav_menu a {
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .nav_menu a:hover {
        text-decoration: underline;
    }

    .nav_right {
        position: absolute;
        right: 50px;
    }

    .nav_links {
        display: flex;

    }

    .cart_icon {
        margin-left: 15px;
    }

    /* ------------------------------footer------------------------------------------------ */

    /* ---------------------------return and exchange------------------- */



    .collection {
        padding: 40px 80px;
    }

    .product-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 40px;
    }

    .product h3 {
        font-size: 20px;
    }

    .footer-filter {
        padding: 20px 60px;
        font-size: 16px;
    }


    /* ----------------------------------footer--------------------------------- */

    /* .container {
        position: absolute;
        top: 30%;
        left: 9%
    } */

    #slide_info1 {
        position: absolute;
        top: 30%;
        left: 2%;
    }

    #slide_info2 {
        position: absolute;
        top: 30%;
        left: 2%;
    }

    .last_footer .row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .last_footer .col-xl-3,
    .last_footer .col-xl-2 {
        flex: 1;
    }

    .last_footer .social-icons {
        display: flex;
        justify-content: start;
    }
    
    #follow_us{
        position: relative;
      
    }

    .social-icons {
          position: absolute;
          top: 50%;
          left: 28%;
      }

    .last_footer .selectors {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .payment-icons img {
        width: 45px;
    }

    #poster {
        display: inline;
    }

}