/* General Styles */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fbeee0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Banner Section Styles */
.banner_section {
    position: relative;
    width: 700%;
    max-width: 200px;
    margin: 0 auto;
    overflow: hidden;
}

.banner_container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner_slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.banner_slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Navigation Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner_section {
        height: auto;
    }

    .banner_slide img {
        height: auto;
    }

    .prev, .next {
        font-size: 14px;
        padding: 10px;
    }
}

.logo-container .logo {
    height: 90px;
    margin-right: 20px;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-container input[type="text"] {
    background-color: #fbeee0;
    border: 2px solid #422800;
    border-radius: 30px;
    padding: 10px 20px;
    margin-right: 10px;
    box-shadow: #422800 2px 2px 0 0;
    color: #422800;
    font-size: 16px;
    line-height: 30px;
    transition: all 0.2s ease;
}

.search-container input[type="text"]::placeholder {
    color: #422800;
}

.search-container input[type="text"]:focus {
    outline: none;
    box-shadow: #422800 2px 2px 5px;
    background-color: #ffffff;
}

.search-btn {
    background-color: #fbeee0;
    border: 2px solid #422800;
    border-radius: 30px;
    cursor: pointer;
    padding: 10px 20px;
    box-shadow: #422800 2px 2px 0 0;
}

.search-btn img {
    height: 20px;
}

/* Products Section */
.products {
    padding: 10px 10px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 20px; /* Space between items */
    justify-content: center;
}

.box_main {
    background-color: #fbeee0;
    border-radius: 20px;
    box-shadow: 8px 8px 15px #d6c9ba, -8px -8px 15px #ffffff;
    padding: 20px;
    transition: all 0.3s ease;
}

.box_main:hover {
    box-shadow: 5px 5px 10px #d6c9ba, -5px -5px 10px #ffffff;
    transform: scale(1.05);
}

.media-container img,
.media-container video {
    width: 100%;
    border-radius: 15px;
}

.btn_main {
    margin-top: 15px;
    text-align: center;
}

/* Button Styles */
.button-74 {
    background-color: #fbeee0;
    border: 2px solid #422800;
    border-radius: 30px;
    box-shadow: #422800 4px 4px 0 0;
    color: #422800;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    transition: all 0.2s ease;
}

.button-74:hover {
    background-color: #ffffff;
}

.load-more {
    text-align: center;
    margin: 40px 0;
}

/* Footer Styles */
.copyright_section {
    background-color: #fbeee0;
    padding: 20px 0;
}

.copyright_text {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #422800;
}

/* Responsive Design */

/* Large screens */
@media (min-width: 1024px) {
    .product-list {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }

    .box_main {
        padding: 15px; /* Reduce padding on smaller screens */
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .header {
        flex-direction: column;
        padding: 20px;
    }

    .logo-container .logo {
        margin-bottom: 10px;
    }

    .search-container {
        margin-top: 10px;
    }

    .product-list {
        grid-template-columns: 1fr; /* 1 item per row */
        gap: 10px;
    }

    .box_main {
        width: 100%; /* Full width on small screens */
        padding: 10px;
    }

    .button-74 {
        font-size: 16px;
        padding: 0 15px;
    }

    .load-more {
        margin-top: 20px;
    }
}
