
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Be Vietnam Pro", serif !important;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff !important;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings styling */
/* Headings styling */
h1 {
    font-family: "Bebas Neue", serif !important;
    font-size: 100px !important;  /* Ensure font size applies */
    /* color: #FF8666 !important;    Use !important for overriding */
    font-style: normal;
}

h2 {
    font-family: "Bebas Neue", serif !important;
    font-size: 40px !important;  /* Apply font size */
    font-style: normal;
    color: black;

    /* color: #FF8666 !important;    Override any conflicts */
}

h3 {
    font-family: "Bebas Neue", serif !important;
    font-size: 35px !important;  /* Apply font size */
    font-style: normal;
    text-align: right;
    /* color: #FF8666 !important;    Override any conflicts */
}

.section-title-best{
    font-size: 50px !important;
}

.col-md-5, .col-md-7 {
    line-height: 2;
    text-wrap: wrap;
    word-wrap: break-word;    
} 

.col-md-4, .col-md-8 {
    line-height: 2;
    align-items: center;
    display: flex;
    flex-wrap: wrap; /* Prevents overflow and wraps content if needed */
    white-space: normal; /* Ensures text wraps naturally */
    word-break: break-word; /* Allows long words to break and wrap */
    overflow-wrap: break-word; /* Ensures proper word wrapping */
}

/*HEADER*/
.usernamedisplay{
    display: flex;
    justify-content: center;
    text-align: center;
    color: black;  
    font-size: 20px;
    font-family: "Bebas Neue", serif;    
    margin: 0;
    white-space: nowrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing between the image and text */
}

.logo-image {
    height: 40px; /* Adjust size as needed */
    width: auto; /* Keep aspect ratio */
}

.logo img {
    height: 40px; /* Adjust logo size */
}

header {
    background-color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure the header uses the full width */
    flex-wrap: wrap;
}

/* Navigation Bar Styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Icons in Navigation */
.icons {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Font Awesome Icon Styles */
.icon-profile, .home, .cart {
    font-size: 1.6rem;
    color: black;
    cursor: pointer;
    margin-left: 10px;
    position: relative;
}

.icon-profile:hover, .home:hover, .cart:hover {
    transform: scale(1.1);
    color: orange;
}

.home::after, /* Show underline when active */
.home:hover::after { /* Show underline on hover */
    content: "";
    display: block;
    width: 100%;
    height: 4px; /* Thickness of underline */
    background-color: orange; /* Change color if needed */
    position: absolute;
    bottom: -10px; /* Adjusts spacing below the icon */
    border-radius: 2px;
    left: 0;
}

.search-bar {
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid #ccc; /* Add border with a light grey color */
    outline: none;
    font-size: 1rem;
    width: 300px;
    background-color: #FFFFFF;
}
/*END OF HEADER*/

/* Main Banner */
.main-banner {
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
    overflow: hidden; /* Ensure the zoom effect doesn't cause overflow issues */
    position: relative;
}

/* Background Zoom-In Animation */
.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    animation: zoomIn 10s infinite ease-in-out;
}

/* Fade-In and Slide-Up Animation for Text */
.banner-content {
    position: relative;
    z-index: 1; /* Ensure text stays above the background */
}

.banner-title {
    font-family: "Bebas Neue", serif !important;
    font-size: 200px !important;
    color: #ffffff !important; /* Changed to green */
    font-style: bold;
    animation: fadeInSlideUp 1s ease-out forwards;
    text-shadow: 1px 1px #000000;
    margin-top: 30px;

}

/* Hover Effect on Text */
.banner-title:hover,
.banner-subtitle:hover {
    color: #FF8666 !important; /* Changed to orange on hover */
    transition: color 0.3s ease;
}


/* Keyframes for Animations */
@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Bestsellers */

.product-category{
    font-size: 25px;

}
.product-card {
    min-width: 400px;
    min-height: 500px;
    background-color: #9ed994;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-image {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden; /* Ensures no extra space appears */
    border-radius: 20px;
}

.product-image img {
    min-width: 100%;
    min-height: 300px;
    object-fit: contain; /* Ensures full visibility without cropping */
    display: block;
}


.product-info {
    min-height: 100px;
    min-width: 100px;
    text-align: left;
    font-family: "Bebas Neue", serif !important;
    margin-top: 0;
}

.product-info h4 {
    margin-bottom: 0px !important;
    margin-top: 10px;
    font-size: 35px;
}

.product-info p {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
   
}

.price {
    font-weight: bold;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.description-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fef5e7; /* light cream background */
    padding: 60px 20px;
    width: 100%;
}

.description-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.left-container {
    flex: 1.4; /* increased from 1 to give more space */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-text h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    max-width: 100%; /* allow it to fill available space */
}

.banner-btn {
    background-color: #333;
    color: #FFFFFF;
    font-family: "Bebas Neue", cursive;
    font-size: 2rem;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    animation: pulse 3s infinite ease-in-out;
}

.banner-btn:hover {
    background-color: #c3cd89;
    color: #1F4529;
    animation-play-state: paused; /* Pause the pulse on hover */
}

.description-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.description {
    max-width: 80%; /* or adjust as needed */
    height: auto;
    border-radius: 10px;
}

/* Section */
section {
    padding: 40px 20px;
    text-align: center;
}

/* Category Grid */
/* Category Section */
.category-section {
    background-color: #9ed994;
    padding: 50px 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Row that holds title and buttons */
.category-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Title on the left */
.category-title {
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-family: Arial, sans-serif;
    margin-right: 100px;
    margin-top: 10px;
    white-space: nowrap;
}

/* Individual buttons */
.category-button {
    background-color: white;
    color: black;
    font-weight: bold;
    font-family: Arial, sans-serif;
    padding: 20px 100px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

/* Hover effect */
.category-button:hover {
    background-color: #c3cd89;
    color: white;
    transform: scale(1.05);
    cursor: pointer;
}




/* Footer */
footer {
    background-color: white;
    color: black;
    padding: 30px 30px;
    display: flex;
    flex-direction: column; /* Stack footer elements vertically */
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 20px;
    min-height: 200px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.footer-logo {
    height: 150px; /* Adjust according to your logo size */
}

.footer-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.footer-right {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    font-family: "Bebas Neue", serif !important;
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-nav a {
    color: black;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons {
    display: flex;
    text-align: left;
    flex-direction: column; /* Keeps the SOCIALS text on top and icons underneath */
    align-items: flex-start; /* Aligns items to the left */
    font-size: 20px;
    font-family: "Bebas Neue", serif;
    color: black;
    text-decoration: none;
    padding: 0;
}

.social-icons p {
    margin-bottom: 8px;
}

.social-icons a {
    margin-bottom: 8px;
    color: black;
}

.social-icons a:hover, .footer-nav a:hover {
    transform: scale(1.1);
    color: orange;
}

.footer-center {
    text-align: center;
    width: 100%;
    font-size: 14px;
    opacity: 0.8;
}


/* Swiper */
.swiper-container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    justify-content: center; /* Center the slides horizontally */
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    border-radius: 30px;
}

.swiper-pagination {
    position: absolute;
    bottom: -25px;
    left: 100%;
    transform: translateX(-1%);
    display: flex;
    justify-content: center;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #000 !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #E8ECD7;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #FF8666;
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1F4529;
}

.modal-body {
    text-align: justify;
    align-items: center;
    border-radius: 30px;
}
.modal-header {
    color:  whitesmoke;
}

.modal-dialog {
     max-width: 40%; /* Adjust as needed */
}

.modal-content {
    max-height: 50vh; /* Adjust height */
    overflow-y: auto; /* Enables scrolling if content is too long */
}

.btn-secondary {
    background-color: red;
}

/* Cookie Consent Popup */
#cookie-consent {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #E8ECD5; /* White background for contrast */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    z-index: 1000; /* Ensure it stays above other content */
    max-width: 450px; /* Limit width for readability */
    max-height: 300px;
    text-align: center;
    font-family: "Be Vietnam Pro", serif;
    font-weight: bolder;
    color: #1F4529; /* Dark green text for consistency */
    display: none; /* Hidden by default, shown via JS when needed */
}

#cookie-consent p {
    margin-bottom: 15px; /* Space between text and buttons */
    font-size: 16px;
}

#cookie-consent button {
    padding: 8px 16px;
    margin: 5px; /* Spacing between buttons */
    border: none;
    border-radius: 5px;
    font-family: "Bebas Neue", serif;
    font-size: 18px;
    color: #FFFFFF; /* White text for buttons */
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}

#cookie-consent button:hover {
    transform: scale(1.05); /* Slight scale effect on hover, matching other elements */
}
#accept-all {
    background-color: green; /* Dark green from header/footer */
}
#accept-all:hover {
    background-color: #b1d18c; /* Orange on hover for contrast */
    color: green;
}
#accept-necessary {
    background-color: #ffe102; /* Lighter green from category cards */
}
#accept-necessary:hover {
    background-color: #d4c872; /* Beige on hover for subtle contrast */
    color: #3b3507; 
}
#decline {
    background-color: red; /* Orange to indicate action */
}
#decline:hover {
    background-color: lightcoral; /* Dark green on hover for reversal effect */
    color: red;
}