
/* Custom CSS */


/* Mobile device 
@media (max-width: 991.98px) {}
*/

/*Font addition area*/
/* @font-face {
    font-family: 'Nexa';
    src: url('/fonts/Nexa-Bold.woff2') format('woff2'),
         url('/fonts/Nexa-Bold.woff') format('woff');
    font-weight: 700; 
    font-style: normal;
    font-display: swap;
} */


/*Font addition area end*/

/* General Body Styling */
body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #2C3E50; /* Deep Charcoal for main text */
    background-color: #FDEBD0 !important;
    /* padding-top: 56px; */
}


/* ====================================================== Color, BG, and  Button adjustments for consistency ======================================================*/


.nowrap-td {
  white-space: nowrap;
}


:root {
    --yellow-bg: #FB8C00 !important;
    --dark-yellow-bg: #D35400 !important;
    --green-bg: #4DAF4A !important;
    --dark-green-bg: #1B3A24 !important;
}

/* Specific colors for status text */
.text-primary { color: var(--yellow-bg) !important; }
.text-success { color: var(--green-bg) !important; }
.text-secondary { color: #6c757d !important; }
.text-info { color: #0dcaf0 !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: #dc3545 !important; }


/* BACKGROUNDs */
.bg-primary{
    background: var(--yellow-bg) !important;
    border-color: var(--yellow-bg) !important;
}

.bg-success{
    background: var(--green-bg) !important;
    border-color: var(--green-bg) !important;
}

.bg-body{
    background-color: #FDEBD0 !important;
}




/* BUTTONs */
.btn-primary {
    background-color:  var(--yellow-bg) !important;
    border-color: var(--yellow-bg) !important;
}
.btn-primary:hover {
    background-color:  var(--dark-yellow-bg) !important;
    border-color: var(--dark-yellow-bg) !important;
}

.btn-success {
    background-color: var(--green-bg) !important;
    border-color: var(--green-bg) !important;
}
.btn-success:hover {
    background-color: var(--dark-green-bg) !important;
    border-color: var(--dark-green-bg) !important;
}


.btn-search{
   background-color: #86BC42 !important;
   color: white;
   font-size: 10px;
   letter-spacing: 0.2em;
}


.btn-outline-primary {
    color: var(--yellow-bg) !important;
    border-color: var(--yellow-bg) !important;
}
.btn-outline-primary:hover {
    background-color:  var(--dark-yellow-bg) !important;
    border-color: var(--dark-yellow-bg) !important;
    color: #FFFFFF !important;
}



/* --- ============================================= Top Header & Menu Bar ======================================= --- */


    .top-header {
        background-color: var(--yellow-bg) !important;
        padding: 5px 0;
        text-align: center;
        font-size: 1.35em;
        color: white;
        border-bottom: 1px solid #ECF0F1;
        transition: all 0.3s ease-in-out;
        height: 60px; /* **IMPORTANT: New fixed height** */
        font-weight: bold;
    }

    /* Custom Navbar Styling */
    .main-navbar {
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: all 0.3s ease-in-out;
        width: 100%;
        z-index: 1030;
        padding: 10px 0; /* Base padding */
        height: 70px; /* Fixed height for the visible part of the navbar */
        display: flex;
        align-items: center;
    }

    /* Sticky State for Main Navbar */
    .main-navbar.sticky {
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* Navbar content alignment using flexbox */
    .main-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
    }

    .main-navbar .navbar-brand {
        order: 2;
        flex-grow: 1;
        text-align: center;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -60px; /* **UPDATED: 60px below the bottom line** */
        z-index: 1031;
    }

    .main-navbar .navbar-brand img {
        height: 100px; /* Desired logo height */
        width: 100px; /* Desired logo width */
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }

    .main-navbar .navbar-left-icons {
        order: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-basis: auto;
    }

    .main-navbar .navbar-right-icons {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
        flex-basis: auto;
    }

    /* Hide the default Bootstrap toggler and collapse content as we're custom handling */
    .main-navbar .navbar-toggler,
    .main-navbar .navbar-nav {
        display: none;
    }

    /* Show custom menu icon for all screen sizes */
    .main-navbar .menu-icon-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        padding: 0 5px;
        cursor: pointer;
    }

    /* Offcanvas for search */
    #offcanvasSearchTop {
        --bs-offcanvas-height: auto;
        max-height: 20vh; /* **UPDATED: Max height for search offcanvas** */
        transition: transform .3s ease-in-out;
    }
    #offcanvasSearchTop .offcanvas-header {
        border-bottom: 1px solid var(--bs-offcanvas-border-color);
        padding-bottom: 1rem;
    }
    #offcanvasSearchTop .offcanvas-body {
        padding-top: 1rem;
    }

    /* Offcanvas Menu Specifics (unchanged) */
    #offcanvasNav .offcanvas-body .navbar-nav .nav-item {
        margin-bottom: 5px;
    }
    #offcanvasNav .offcanvas-body .navbar-nav .nav-link {
        padding: 10px 15px;
        font-size: 1.1em;
        display: flex;
        align-items: center;
    }
    #offcanvasNav .offcanvas-body .navbar-nav .nav-link i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    /* Category Dropdown Specifics (unchanged) */
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        font-size: 1.1em;
        width: 100%;
        background-color: transparent;
        border: none;
        text-align: left;
        color: var(--bs-body-color);
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-toggle:hover {
         color: var(--bs-primary);
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-toggle i.fa-chevron-down {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-toggle[aria-expanded="true"] i.fa-chevron-down {
        transform: rotate(-180deg);
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background-color: var(--bs-gray-100);
        border-top: 1px solid var(--bs-gray-300);
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-item {
        padding: 8px 25px;
        font-size: 1em;
        color: var(--bs-body-color);
        display: flex;
        align-items: center;
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-item:hover {
        background-color: var(--bs-gray-200);
        color: var(--bs-primary);
    }
    #offcanvasNav .offcanvas-body .category-dropdown .dropdown-item i {
        margin-right: 10px;
    }


    /* Mobile specific adjustments for logo and padding */
    @media (max-width: 767.98px) {
        .main-navbar {
            height: 60px;
            padding: 5px 0;
        }
        .main-navbar .navbar-brand {
            bottom: -35px; /* **UPDATED: 35px below for mobile logo** */
        }
        .main-navbar .navbar-brand img {
            height: 75px;
            width: 75px;
        }
    }



/* --- ========================================================  Hero Slider =========================================--- */


#hero-slider .carousel-item img {
    height: 500px; /* Adjust as needed */
    object-fit: cover;
    /* filter: brightness(75%); Opacity */
}

/* --- Animation Keyframes for Desktop/Tablet --- */
@keyframes fadeInUpCaption {
    from {
        opacity: 0;
        transform: translateY(50px); /* Only vertical translation for animation start */
    }
    to {
        opacity: 1;
        transform: translateY(-50%); /* Final vertical position (centered) */
    }
}

/* --- Animation Keyframes for Mobile --- */
@keyframes fadeInUpCaptionMobile {
    from {
        opacity: 0;
        transform: translateY(20px); /* Smaller slide distance for mobile */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Ends at its original position relative to bottom for mobile */
    }
}

#hero-slider .carousel-caption {
    top: auto; 
    bottom: 10%; /* Position from bottom to avoid indicators/top overflow */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Keep text shadow for readability */

    /* Animation specific properties: */
    opacity: 0; /* Hidden by default when not active */
    /* Set initial transform state for animation (start slightly below, only vertical) */
    transform: translateY(50px);
    transition: none; /* Crucial: no transition when deactivating, to ensure clean reset */

    /* General caption styling (added for better readability and structure) */
    display: block !important; /* Ensure caption is always visible */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better text contrast */
    padding: 1.5rem 5%; /* Adjusted horizontal padding as percentage for responsiveness */
    border-radius: 8px;
    max-width: 100%; /* Can be redundant with left/right:0, but good to keep */
    text-align: center; /* Ensure text is centered within the caption */
    /* padding-left: 25%; */
}

/* Apply animation only to the caption of the currently active carousel item */
#hero-slider .carousel-item.active .carousel-caption {
    animation: fadeInUpCaption 1s ease-out forwards; /* 1 second duration, ease-out timing, stays at end state */
    animation-delay: 0.7s; /* Delay the animation to start after slide transition */
    transition: none; /* Ensure no conflicting transition */
}

/* When a carousel item becomes INACTIVE, immediately reset its caption for next time */
#hero-slider .carousel-item:not(.active) .carousel-caption {
    opacity: 0;
    transform: translateY(50px); /* Reset position for next time (only vertical) */
    transition: none; /* Crucial: no transition when hiding/resetting */
}


#hero-slider .carousel-caption h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem; /* Increased font size for impact */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #FFFFFF; /* White text for headings */
    word-break: break-word; /* Ensures long words wrap */
}

#hero-slider .carousel-caption p {   
    color: #ECF0F1; /* Light grey for body text */
    font-size: 1.3rem; /* Good size for descriptive text */
    margin-bottom: 1.5rem;
    word-break: break-word; /* Ensures long words wrap */
}

/* --- Responsive Adjustments for Mobile View --- */
@media (max-width: 991.98px) { /* For medium devices (tablets) */
    #hero-slider .carousel-caption {
        padding: 1.5rem 4%; /* Adjusted horizontal padding for tablets */
        max-width: 100%;
    }
    #hero-slider .carousel-caption h3 {
        font-size: 2.2rem;
    }
    #hero-slider .carousel-caption p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) { /* For small devices (e.g., phones) */
    #hero-slider .carousel-item img {
        height: 350px; /* Adjusted: Shorter image height on mobile */
    }
    #hero-slider .carousel-caption {
        padding: 1rem 3%; /* Adjusted horizontal padding for phones */
        max-width: 100%;
    }
    #hero-slider .carousel-caption h3 {
        font-size: 1.6rem; /* Further reduced */
        margin-bottom: 0.5rem;
    }
    #hero-slider .carousel-caption p {
        font-size: 0.9rem; /* Further reduced */
        margin-bottom: 1.2rem;
    }
    #hero-slider .btn-primary {
        font-size: 0.85rem; /* Slightly smaller button text */
        padding: 0.5rem 1.1rem;
    }
}

@media (max-width: 575.98px) { /* For very small phones (e.g., iPhone SE) */
    #hero-slider .carousel-item img {
        height: 280px; /* Even smaller image height for very small screens */
    }
    #hero-slider .carousel-caption {
        top: auto; /* IMPORTANT: Override top:50% */
        bottom: 10%; /* Position from bottom to avoid indicators/top overflow */
        transform: translateY(0); /* Final state for mobile animation */
        padding: 0.7rem 2%; /* Adjusted horizontal padding for very small phones */
        max-width: 100%;
    }
    /* Apply mobile-specific animation for smallest screens */
    #hero-slider .carousel-item.active .carousel-caption {
        animation: fadeInUpCaptionMobile 1s ease-out forwards;
    }
    /* Ensure non-active captions reset correctly for mobile animation */
    #hero-slider .carousel-item:not(.active) .carousel-caption {
        opacity: 0;
        transform: translateY(20px); /* Reset to mobile animation start */
    }

    #hero-slider .carousel-caption h3 {
        font-size: 1.2rem; /* Much smaller heading */
        margin-bottom: 0.2rem;       
    }
    #hero-slider .carousel-caption p {
        font-size: 0.75rem; /* Much smaller paragraph */
        margin-bottom: 0.7rem;
    }
    #hero-slider .btn-primary {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}







/* ---===================================================================== Popular Categories ============================================--- */


#popular-categories {    
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#popular-categories h2 {
    font-family: "Playfair Display", serif;
    color: #2C3E50; /* Dark text for headings */
    margin-bottom: 3rem;
}

#popular-categories .card {
    border: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* Stronger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px; /* Slightly rounded corners */
}

#popular-categories .card:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Darker shadow on hover */
}

#popular-categories .card-img-top {
    object-fit: cover;
    padding: 1rem;
    border-radius: 50%; /* Ensure circular image */
    background-color: #ECF0F1; /* Light background for circular images */
}

#popular-categories .card-title {
    color: var(--yellow-bg) !important;
    font-weight: bold;
    margin-top: 1rem;
}

#popular-categories .card-text {
    color: #555;
}


.category-card-height{
    height:400px;
    }

/* md device */
/*@media (min-width: 992px) {}*/

/* Mobile device */
@media (max-width: 991.98px) {
    .category-card-height{
    height:350px;
    }

}

.category-card-image{
    width:150px; 
    height:150px;
    border-radius: 50%;
}



/* Mobile device */
@media (max-width: 991.98px) {
    .fa-regular, .far {
    font-size: 10px;
 }

}


/* Removed duplicate .btn-outline-primary */



/* -------- =============================== Popular Categories-carousel =============================== ---------- */
/* Custom CSS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(24%) sepia(91%) saturate(5436%) hue-rotate(358deg) brightness(80%) contrast(110%);    
}

#categoryCarouselMd .carousel-control-next{
    right: -150px; /* Adjust this value as needed. Negative value moves it right. */
}


#categoryCarouselMd .carousel-control-prev{
    left: -150px; /* Adjust this value as needed. Negative value moves it left. */
    
}





/* --- =============================================================== Featured Products ==============================================--- */


#featured-products {
    background-color: #FFFFFF;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#featured-products h2 {
    font-family: "Playfair Display", serif;
    color: #2C3E50; /* Dark text for headings */
    margin-bottom: 3rem;
}

#featured-products .card {
    border: 1px solid #ECF0F1; /* Light grey border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* Stronger initial shadow */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensures image corners match card */
}

#featured-products .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Darker shadow on hover */
}

#featured-products .card-img-top {
    height: 220px; /* Slightly increased height for products */
    object-fit: cover;
    border-bottom: 1px solid #ECF0F1; /* Light grey border */
    width: 100%; /* Ensure image takes full width of its container */
}

#featured-products .card-title {
    /*color: var(--yellow-bg) !important;*/
    font-weight: bold;
}

#featured-products .card-text.fw-bold {
    color: var(--yellow-bg) !important;
    font-size: 1.25rem;
}

/* Removed duplicate .btn-success (ensure you don't have it elsewhere as well) */

#featured-products .btn-outline-dark {
    color: #2C3E50; /* Dark text */
    border-color: #2C3E50; /* Dark border */
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#featured-products .btn-outline-dark:hover {
    background-color: #2C3E50; /* Dark background on hover */
    color: #FFFFFF; /* White text on hover */
}

/* --- Responsive Adjustments for Featured Products Cards (to prevent overflow in 2 columns) --- */

@media (max-width: 767.98px) { /* Applies to screens smaller than 768px (most phones) */
    #featured-products .card-body {
        padding: 0.8rem; /* Reduced padding inside the card body */
    }

    #featured-products .card-title {
        font-size: 1rem; /* Smaller font size for product titles */
        margin-bottom: 0.4rem;
    }

    #featured-products .card-text {
        font-size: 0.8rem; /* Smaller font size for product text */
        margin-bottom: 0.6rem;
    }

    #featured-products .btn {
        font-size: 0.75rem; /* Smaller button text */
        padding: 0.4rem 0.8rem; /* Smaller button padding */
    }

    #featured-products .card-img-top {
        height: 150px; /* Slightly reduced height for product images on mobile */
    }
}

@media (max-width: 575.98px) { /* For very small phones (up to 575.98px) */
    #featured-products .card-body {
        padding: 0.6rem; /* Even more reduced padding for very small screens */
    }

    #featured-products .card-title {
        font-size: 0.9rem; /* Even smaller font size for product titles */
    }

    #featured-products .card-text {
        font-size: 0.75rem; /* Even smaller font size for product text */
    }

    #featured-products .btn {
        font-size: 0.7rem; /* Smallest button text */
        padding: 0.3rem 0.6rem; /* Smallest button padding */
    }

    #featured-products .card-img-top {
        height: 120px; /* Even smaller height for product images */
    }
}



/* ---=================================================  Why Choose Us Section =================================================--- */

#why-choose-us {
    /* Deep background gradient from warm amber to dark orange */
    /* background: linear-gradient(to bottom right, #FFC107, #FFA000);  */
    background-color: var(--dark-green-bg) !important;
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: #fff; /* Make sure text is visible on the darker background */
}


#why-choose-us .section-title{
    color: white;
    /* font-family: "Josefin Sans", sans-serif; */
}



/* Adjust card styles for better contrast on the new background */
#why-choose-us .card {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for cards */
    border: 1px solid rgba(255, 255, 255, 0.5) !important; /* Lighter border */
}

/* Ensure text inside cards is dark for readability */
#why-choose-us .card-title,
#why-choose-us .card-text {
    color: #333 !important; /* Darker text for readability */
}

/* Adjust icon colors to stand out on the lighter card background */
#why-choose-us .card-body i.fa-leaf { color: #28a745 !important; } /* Green */
#why-choose-us .card-body i.fa-globe-americas { color: var(--yellow-bg) !important; } /* Info blue */
#why-choose-us .card-body i.fa-truck-fast { color: var(--dark-green-bg) !important; } /* Primary blue */

/* Keep the hover effect */
#why-choose-us .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.25) !important; /* Slightly stronger shadow on hover */
}


/* Mobile view */
@media (max-width: 767.98px) { 
    .section-title{
        font-size: 18px !important;
        /* font-family: "Josefin Sans", sans-serif; */
    }
}




/* --- ==================================================================== Newslatter/Promotional Section =================================--- */

#promo-section {
    background-color: var(--yellow-bg) !important;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#promo-section h2 {
    font-family: "Playfair Display", serif;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

#promo-section .lead {
    color: #FDEBD0; /* Light creamy orange for lead text */
}

#promo-section .form-control {
    border-color: #FDEBD0; /* Light border for input */
}

#promo-section .btn-dark {
    background-color: #2C3E50; /* Dark button */
    border-color: #2C3E50;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

#promo-section .btn-dark:hover {
    background-color: var(--dark-yellow-bg) !important;
    border-color: var(--dark-yellow-bg) !important;
}








/* ---===========================================================  Footer ========================================================--- */

footer {
    background-color: var(--dark-green-bg) !important;
    color: #ECF0F1 !important; /* Light grey text */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer h5 {
    color: var(--yellow-bg) !important; /* Primary orange for headings */
    margin-bottom: 1.5rem;
    font-weight: bold;
}

footer .list-unstyled li a {
    color: #ECF0F1; /* Light grey for links */
    transition: color 0.2s ease;
}

footer .list-unstyled li a:hover {
    color: var(--dark-yellow-bg) !important;
    text-decoration: underline;
}

footer .social-icons a {
    color: #ECF0F1; /* Light grey for icons */
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

footer .social-icons a:hover {
    color: var(--dark-yellow-bg) !important;
}

footer hr {
    /* border-color: #4A637A; Slightly lighter shade for HR */
    border-color: var(--green-bg) !important; /* Slightly lighter shade for HR */
}

footer p {   
    color: #B0B7BF; /* Slightly muted text for copyright */
}




    .footer-logo{
      width:220px;
      height:80px;
    }




/* ---=============================================================  Floating Chat Button ========================================--- */


               /* Custom CSS for Live Chat Widget */

        /* .live-chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 1001; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .live-chat-button:hover {
            transform: scale(1.05);
        }

        .live-chat-widget {
            position: fixed;
            bottom: 90px; 
            right: 20px;
            width: 350px; 
            height: 450px; 
            max-height: 80vh; 
            display: flex; 
            flex-direction: column;
            z-index: 1000; 
            border-radius: 8px;
            overflow: hidden; 
        }

        .live-chat-widget .card-header {
            flex-shrink: 0; 
            border-bottom: 1px solid rgba(0, 0, 0, 0.125);
            padding: 1rem;
        }

        .live-chat-widget .chat-messages {
            flex-grow: 1; 
            overflow-y: auto; 
            padding: 1rem;
            background-color: #f8f9fa; 
        }

        .live-chat-widget .card-footer {
            flex-shrink: 0; 
            border-top: 1px solid rgba(0, 0, 0, 0.125);
            padding: 1rem;
        }

       
        .live-chat-widget .message {
            margin-bottom: 10px;
            padding: 8px 12px;
            border-radius: 15px;
            max-width: 80%; 
            word-wrap: break-word; 
        }

        .live-chat-widget .message p {
            margin-bottom: 0; 
            line-height: 1.4;
        }

        .live-chat-widget .message small {
            display: block; 
            font-size: 0.75em;
            margin-top: 2px;
        }

        .live-chat-widget .message.sent {
            background-color: #dcf8c6; 
            align-self: flex-end; 
            margin-left: auto;
        }

        .live-chat-widget .message.received {
            background-color: #e2e3e5; 
            align-self: flex-start; 
            margin-right: auto;
        }

        
        @media (max-width: 767.98px) {
            .live-chat-button {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .live-chat-widget {
                width: 90vw; 
                max-width: 400px; 
                height: 70vh; 
                bottom: 80px;
                right: 5vw; 
            }
        } */

        /* Custom CSS for the WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px; 
            right: 20px; 
            width: 60px; 
            height: 60px;
            background-color: #25d366; 
            color: white;
            border-radius: 50%; 
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
            z-index: 1000; 
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #1da851; 
            transform: scale(1.05); 
            color: white; 
        }

        
        @media (max-width: 767.98px) {
            .whatsapp-float {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
                font-size: 28px;
            }
        }



/* ---=============================================================  Floating Cart Button ========================================--- */

#cart-float-button {
    position: fixed;
    right: 25px; /* Slightly more to the right */
    top: 75%; /* Adjusted slightly lower */
    transform: translateY(-50%);
    z-index: 1000;
}

/* #cart-float-button .btn-success { */
#cart-float-button {
    border-radius: 5px;
    background-color:rgb(255, 255, 255) !important; /* Success green */
    border-color: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Stronger shadow */
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#cart-float-button .btn-success:hover {
/* #cart-float-button:hover { */
    background-color: #229954 !important; /* Darker green on hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Even stronger shadow on hover */
}


/* --- Floating Cart Button Badge --- */
#cart-float-button .badge {
    font-size: 0.75em;
    padding: 0.35em 0.65em;
    border: 2px solid white; /* To make it stand out on dark backgrounds */
}

.cart-float-button_top{
    width: 80px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center;

}
.cart-float-button_bottom{
    width: 80px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-top-left-radius: 0; 
    border-top-right-radius: 0;

}


/* Mobile device  */
@media (max-width: 991.98px) {

    .cart-float-button_top{
        width: 55px; 
        height: 40px;
        font-size: 12px;  
    }
    .cart-float-button_bottom{
        width: 55px; 
        height: 20px; 
        font-size: 10px;       
    } 

}

/* --- Mini Cart Offcanvas Styling --- */
.offcanvas-header {
    /* Uses Bootstrap's bg-primary for orange background */
    color: #FFFFFF;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.offcanvas-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); /* Makes the close button white */
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.offcanvas-header .btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 1.5rem;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.mini-cart-item img {
    border: 1px solid #ECF0F1;
    object-fit: cover;
    margin-right: 0.75rem;
}

.mini-cart-item h6 {
    color: #2C3E50;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.mini-cart-item p {
    color: #555;
    font-size: 0.85rem;
}

.mini-cart-item .remove-from-cart-btn {
    border: none;
    background: none;
    color: var(--dark-yellow-bg) !important;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.mini-cart-item .remove-from-cart-btn:hover {
    opacity: 1;
    color: var(--dark-yellow-bg) !important;
}

.mini-cart-empty {
    color: #777;
}

.mini-cart-empty .fa-shopping-cart {
    color: var(--green-bg) !important;
}

.fa-lg {
    color: var(--green-bg) !important;
}

.mini-cart-summary {
    background-color: #f8f9fa; /* Light background for summary area */
    padding: 1.5rem;
    margin: -1.5rem; /* Negative margin to span full width of offcanvas body */
    margin-top: 0.5rem;
    border-top: 1px solid #ECF0F1;
}

.mini-cart-summary strong {
    color: #2C3E50;
    font-size: 1.1rem;
}

.mini-cart-summary #mini-cart-subtotal {
    color: var(--dark-yellow-bg) !important;
    font-size: 1.2rem;
}

/* Removed duplicate .mini-cart-summary .btn-primary */
/* Removed duplicate .mini-cart-summary .btn-success */

/* Ensure empty state is hidden when items are present and vice-versa (JS will handle this) */
.mini-cart-items-container.has-items .mini-cart-empty {
    display: none;
}
.mini-cart-items-container:not(.has-items) .mini-cart-item {
    display: none; /* Hide example item if no items */
}





/* ---=================================================  Products Page Specific Styles ======================================================--- */

.product-card {
    border: 1px solid #ECF0F1; /* Light grey border */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 250px; /* Make product images slightly larger on products page */
    object-fit: cover;
    border-bottom: 1px solid #ECF0F1;
    width: 100%; /* Ensure image takes full width of its container */
}

.product-card .card-body {
    padding: 1.25rem; /* Default padding for card body */
}

.product-card .card-title {
    color: #2C3E50; /* Dark charcoal for product titles */
    font-weight: bold;
    margin-top: 0.75rem;
    font-size: 1.15rem; /* Default font size for product title */
}

.product-card .card-text { /* Assuming this is for product description */
    font-size: 0.9rem; /* Default font size for description */
    margin-bottom: 0.75rem;
}

.product-card .product-price {
    color: var(--dark-yellow-bg) !important;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Add this to your "Products Page Specific Styles" section in newStyle.css */

.product-card .product-old-price {
    font-size: 0.9rem; /* Smaller font size for old price */
    color: #888; /* Grey color for old price */
    text-decoration: line-through; /* Strikethrough effect */
    margin-bottom: 0.5rem; /* Adjust margin as needed */
    display: inline-block; /* Allows it to sit next to other inline elements if desired */
    margin-right: 0.5rem; /* Space between old and new price if on same line */
}

/* Mobile adjustments for old price */
@media (max-width: 767.98px) {
    .product-card .product-old-price {
        font-size: 0.75rem; /* Smaller on standard mobile */
        margin-bottom: 0.3rem;
    }
}
@media (max-width: 575.98px) {
    .product-card .product-old-price {
        font-size: 0.65rem; /* Even smaller on very small phones */
        margin-bottom: 0.2rem;
    }
}

/* --- Responsive Adjustments for Product Page .product-card (for 2 columns on mobile) --- */

@media (max-width: 767.98px) { /* Applies to screens smaller than 768px (most phones) */
    .product-card .card-img-top {
        height: 180px; /* Reduced height for product images on mobile */
    }

    .product-card .card-body {
        padding: 0.75rem; /* Reduced padding for card body on mobile */
    }

    .product-card .card-title {
        font-size: 1rem; /* Smaller font size for product titles */
        margin-top: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .product-card .card-text { /* For product description */
        font-size: 0.8rem; /* Smaller font size for description */
        margin-bottom: 0.5rem;
    }

    .product-card .product-price {
        font-size: 1.1rem; /* Smaller font size for prices */
        margin-bottom: 0.75rem;
    }

    /* Adjust button size if present within the product card */
    .product-card .btn {
        font-size: 0.75rem; /* Smaller button text */
        padding: 0.4rem 0.8rem; /* Smaller button padding */
    }
}

@media (max-width: 575.98px) { /* For very small phones (up to 575.98px) */
    .product-card .card-img-top {
        height: 140px; /* Even smaller height for product images */
    }

    .product-card .card-body {
        padding: 0.5rem; /* Even more reduced padding */
    }

    .product-card .card-title {
        font-size: 0.9rem; /* Even smaller font size for product titles */
        margin-top: 0.3rem;
        margin-bottom: 0.2rem;
    }

    .product-card .card-text {
        font-size: 0.7rem; /* Even smaller font size for description */
        margin-bottom: 0.4rem;
    }

    .product-card .product-price {
        font-size: 1rem; /* Even smaller font size for prices */
        margin-bottom: 0.6rem;
    }

    .product-card .btn {
        font-size: 0.7rem; /* Smallest button text */
        padding: 0.3rem 0.6rem; /* Smallest button padding */
    }
}




/* Filter/Sort Section */
.form-select.w-auto {
    min-width: 150px; /* Give select boxes some minimum width */
}





/* ++++++++++++++++++++++++++++++++++++++++++++++  Pagination  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pagination .page-link {
    color: var(--dark-yellow-bg) !important; 
    border-color: var(--dark-yellow-bg) !important;
    transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--dark-yellow-bg) !important;
    border-color: var(--dark-yellow-bg) !important;
    color: #FFFFFF !important;
}

.pagination .page-link:hover {
    background-color: #FDEBD0; /* Light creamy orange on hover */
    color: var(--dark-yellow-bg) !important;
    border-color: var(--yellow-bg) !important;
}

.pagination .page-item.disabled .page-link {
    color: #999;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* --- Product Details Page Specific Styles --- */

.breadcrumb-item a {
    color: var(--dark-yellow-bg) !important; /* Primary orange for breadcrumb links */
}

.breadcrumb-item.active {
    color: #2C3E50; /* Dark charcoal for active breadcrumb */
}

.product-detail-section {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-image-container {
    max-width: 500px; /* Control image size */
    margin: 0 auto;
}

.product-image-container img {
    border: 1px solid #ECF0F1;
}

.small-image-gallery .thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.small-image-gallery .thumbnail:hover,
.small-image-gallery .thumbnail.active {
    border-color: var(--dark-yellow-bg) !important; /* Primary orange border for active/hover thumbnail */
}

.product-info-container {
    padding-left: 2rem; /* Add some space from image */
}

.product-title {
    color: #2C3E50; /* Dark charcoal for product title */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.product-category a {
    color: var(--dark-yellow-bg) !important; /* Secondary orange for category link */
    font-weight: 500;
}

.product-rating .fa-star,
.product-rating .fa-star-half-alt {
    color: #FFC107; /* Bootstrap yellow for stars */
}

.product-price {
    color: var(--dark-yellow-bg) !important; /* Primary orange for price */
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-short-description p {
    color: #555;
    line-height: 1.8;
}

.quantity-selector .form-control {
    border-left: none;
    border-right: none;
    background-color: #f8f9fa;
    color: #2C3E50;
    font-weight: bold;
}
.quantity-selector .btn-outline-secondary {
    color: #2C3E50;
    border-color: #ccc;
    background-color: #f0f2f5;
    transition: all 0.2s ease;
}
.quantity-selector .btn-outline-secondary:hover {
    background-color: #ECF0F1;
    border-color: #b0b7bf;
}


.add-to-cart-btn {
    background-color: #27AE60; /* Success green */
    border-color: #27AE60;
    font-weight: bold;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.add-to-cart-btn:hover {
    background-color: #229954; /* Darker green on hover */
    border-color: #229954;
}

/* Removed duplicate .btn-outline-primary */

.product-availability p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.product-availability .fa-check-circle {
    color: #27AE60;
}
.product-availability .fa-shipping-fast {
    color: var(--dark-yellow-bg) !important; /* Secondary orange for shipping icon */
}


.product-full-description {
    background-color: #FFFFFF !important; /* Light creamy orange background */
    border: 1px solid #ECF0F1;
}

.product-full-description h3 {
    color: #2C3E50; /* Dark charcoal for description heading */
    font-weight: bold;
}

.product-full-description p,
.product-full-description ul {
    color: #555;
    line-height: 1.7;
}

/* Related Products Section (reusing .product-card from products page) */
#related-products {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #ECF0F1; /* Light grey background for related section */
}

#related-products h2 {
    color: #2C3E50;
    margin-bottom: 3rem;
}

/* --- Cart Page Specific Styles --- */
.table-hover tbody tr:hover {
    background-color: #f5f5f5; /* Lighter hover background for cart rows */
}

.cart-item img {
    border: 1px solid #ECF0F1;
}

.cart-item .quantity-selector .form-control {
    border-left: none;
    border-right: none;
    background-color: #f8f9fa;
    color: #2C3E50;
    font-weight: bold;
}
.cart-item .quantity-selector .btn-outline-secondary {
    color: #2C3E50;
    border-color: #ccc;
    background-color: #f0f2f5;
    transition: all 0.2s ease;
}
.cart-item .quantity-selector .btn-outline-secondary:hover {
    background-color: #ECF0F1;
    border-color: #b0b7bf;
}

.cart-item .remove-item-btn {
    color: #C0392B; /* Dark red for remove button */
    border-color: #C0392B;
    transition: all 0.2s ease;
}
.cart-item .remove-item-btn:hover {
    background-color: #C0392B;
    color: #FFFFFF;
}

#update-cart-btn {
    color: #E67E22;
    border-color: #E67E22;
    transition: all 0.2s ease;
}
#update-cart-btn:hover {
    background-color: var(--yellow-bg) !important;
    color: #FFFFFF;
}

/* Order Summary Card */
.list-group-item {
    font-size: 1.05rem;
    color: #333;
}
.list-group-item span.fw-bold {
    color: #2C3E50;
}
.list-group-item .text-success {
    color: #27AE60 !important;
}
.list-group-item.fs-5 {
    color: #2C3E50 !important;
    font-weight: bold;
}

/* Coupon & Payment Options */
.card-title {
    color: #2C3E50;
}

/* --- Checkout Page Specific Styles --- */
.checkout-steps .nav-link {
    color: #6c757d; /* Muted color for inactive steps */
    border: 1px solid #dee2e6;
    margin: 0 0.25rem; /* Small gap between pills */
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
}

.checkout-steps .nav-link.active {
    background-color: var(--dark-yellow-bg) !important; /* Primary orange for active step */
    color: #FFFFFF;
    border-color: var(--dark-yellow-bg) !important;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.checkout-steps .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
    color: var(--dark-yellow-bg) !important;
    border-color: var(--dark-yellow-bg) !important;
}

.checkout-steps .nav-item:first-child .nav-link {
    margin-left: 0;
}
.checkout-steps .nav-item:last-child .nav-link {
    margin-right: 0;
}

/* Form field styling */
.form-label {
    font-weight: 500;
    color: #333;
}

/* Review section cards */
.review-card .card-body {
    background-color: #fdfdfd;
}

.review-card .card-title {
    color: #2C3E50;
}

.review-card p strong {
    color: #333;
}
.review-card p {
    color: #555;
}

/* Place Order Button */
#place-order-btn {
    background-color: #27AE60;
    border-color: #27AE60;
    font-weight: bold;
}
#place-order-btn:hover {
    background-color: #229954;
    border-color: #229954;
}

/* --- Order Confirmation Page Specific Styles --- */
.order-confirmation-container {
    background-color: #e9f7ef; /* Light green background */
    border-radius: 10px;
    border: 1px solid #d4edda;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.order-confirmation-container .icon-success {
    animation: bounceIn 0.8s forwards; /* Simple animation for the checkmark */
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.order-confirmation-container h1.display-4 {
    color: #28a745 !important; /* Bootstrap success green */
    font-weight: 700;
}

.order-confirmation-container .lead {
    color: #495057;
}

.order-confirmation-container p.fs-5 {
    color: #555;
}

.order-details-card h6,
.order-details-card p {
    color: #333;
    margin-bottom: 0.2rem;
}

.order-details-card h6 {
    font-size: 0.95rem;
    color: #6c757d;
}

.card-header.bg-warning {
    background-color: #ffc107 !important; /* Bootstrap warning yellow */
    color: #333 !important; /* Dark text for contrast */
}

.list-group-item span.text-primary {
    color: #0d6efd !important; /* Bootstrap primary blue */
    font-size: 1.2rem;
}

/* Ensure the success card header is distinct */
.card-header.bg-success {
    background-color: #28a745 !important;
}

/* --- Order Tracking Page Specific Styles --- */
.track-order-form .form-control-lg {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
}

.track-order-form .btn-lg {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
}

/* Order Timeline (Vertical Progress Bar) */
.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline > li {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li .timeline-panel {
    width: 45%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 10px 15px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    background-color: #fcfcfc;
}

.timeline > li.active .timeline-panel {
    border-color: #E67E22; /* Primary orange for active/completed panels */
    background-color: #FDF2E9; /* Lighter shade of primary */
}

.timeline > li .timeline-panel:before {
    position: absolute;
    top: 18px;
    right: -14px;
    content: " ";
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #d4d4d4;
    border-right: 0 solid #d4d4d4;
    border-bottom: 14px solid transparent;
}

.timeline > li .timeline-panel:after {
    position: absolute;
    top: 19px;
    right: -13px;
    content: " ";
    display: inline-block;
    border-top: 13px solid transparent;
    border-left: 13px solid #fcfcfc;
    border-right: 0 solid #fcfcfc;
    border-bottom: 13px solid transparent;
}

.timeline > li.active .timeline-panel:after {
    border-left-color: #FDF2E9; /* Match active background color */
}


.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right: 14px solid #d4d4d4;
    left: -14px;
    right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right: 13px solid #fcfcfc;
    left: -13px;
    right: auto;
}
.timeline > li.active.timeline-inverted > .timeline-panel:after {
    border-right-color: #FDF2E9;
}


.timeline > li .timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #999999; /* Default badge color */
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.timeline > li.active .timeline-badge {
    background-color: #27AE60; /* Success green for active/completed badges */
}

.timeline-title {
    margin-top: 0;
    color: inherit;
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .timeline:before {
        left: 30px;
    }

    .timeline > li {
        margin-left: 60px;
        margin-right: 0;
    }

    .timeline > li .timeline-panel {
        width: calc(100% - 90px);
        float: right;
    }

    .timeline > li .timeline-panel:before {
        border-left-width: 0;
        border-right: 14px solid #d4d4d4;
        left: -14px;
        right: auto;
    }

    .timeline > li .timeline-panel:after {
        border-left-width: 0;
        border-right: 13px solid #fcfcfc;
        left: -13px;
        right: auto;
    }

    .timeline > li.active .timeline-panel:after {
        border-right-color: #FDF2E9; /* Match active background */
    }

    .timeline > li .timeline-badge {
        left: 0;
        margin-left: 0;
    }
}

/* --- Order Details Page Specific Styles --- */
/* No new major styles needed if timeline styles from track page are present */
/* Ensure text colors within cards are readable */
.card-body p {
    color: #495057; /* Slightly darker text for general paragraphs */
}
.card-body h6 {
    color: #6c757d; /* Lighter for sub-headings */
    font-weight: 500;
}
.card-body p.fw-bold {
    color: #212529; /* Darker for important bold text */
}



/* Styles for the sub-info cards (shipping/billing) */
.card-body.bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
}


/* --- Login/Register Page Specific Styles --- */
/* Ensure main content takes full height for centering */
main.min-vh-100 {
    min-height: 100vh;
    padding-top: 60px; /* Adjust based on your header height */
    padding-bottom: 60px; /* Adjust based on your footer height */
}

/* Card styling for auth forms */
.card.shadow-lg {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.card-title {
    font-weight: 700;
    color: #343a40;
}

/* Improve input focus and validation styles */
.form-control:focus {
    border-color: #80bdff; /* Primary blue focus */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); /* Red focus for invalid */
}
.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545; /* Red text for invalid checkbox label */
}
.form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Alert messages */
.alert {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
}
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}
.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* --- My Account Dashboard Specific Styles --- */
.list-group-flush {
    border-radius: .5rem; /* Rounded corners for the navigation sidebar */
    overflow: hidden; /* Ensures borders play nice with rounded corners */
}

.list-group-item-action {
    padding: 1rem 1.25rem; /* More padding for better click area */
    font-size: 1.1rem;
    font-weight: 500;
}

.list-group-item-action:hover {
    background-color: #e9ecef;
}

.list-group-item-action.active {
    background-color: #0d6efd !important; /* Bootstrap primary color */
    border-color: #0d6efd !important;
    color: #fff !important;
}

/* Ensure the sticky sidebar works with your header */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0px; /* Adjust this value based on the height of your fixed header */
    z-index: 1020; /* Ensure it stays above other content but below modals */
}

/* Styles for address blocks */
address {
    font-style: normal; /* Override default italic address font */
    margin-bottom: 0;
    line-height: 1.6;
}

/* General card body styles for better readability */
.card-body p {
    color: #495057;
}

.card-body h6 {
    color: #343a40;
    font-weight: 600;
}

/* --- About Us Page Specific Styles --- */
.about-us-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-about.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Team member circles */
.rounded-circle {
    border: 3px solid var(--yellow-bg); /* Add a border to team images */
}

/* Commitment cards */
.card.h-100 .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

/* --- Contact Us Page Specific Styles --- */
.contact-info-list li {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    margin-bottom: 1rem;
}
.contact-info-list li i {
    font-size: 1.25rem;
    margin-top: 4px; /* Adjust icon vertical alignment */
}

.map-container {
    height: 300px; /* Fixed height for the map iframe */
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block; /* Remove extra space below iframe */
}

.social-icons .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icons .btn:hover {
    transform: translateY(-3px);
}



/* --- Product Review Page Specific Styles --- */
.product-review-thumbnail {
    width: 100px; /* Fixed width for the product image on review page */
    height: 100px;
    object-fit: contain;
    padding: 5px; /* Spacing within the image border */
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: #fff;
}

/* Star Rating System for Input Form */
.star-rating {
    display: inline-block;
    font-size: 2rem; /* Size of the stars */
    direction: rtl; /* For right-to-left star selection */
    unicode-bidi: bidi-override; /* For proper star display in RTL */
}

.star-rating input {
    display: none; /* Hide the actual radio buttons */
}

.star-rating label {
    color: #ccc; /* Default color of unselected stars */
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffc107; /* Color of selected/hovered stars */
}

/* Specific invalid feedback for rating */
.star-rating + .invalid-feedback {
    display: none; /* Hidden by default, shown by JS */
    text-align: center;
    margin-top: 5px;
    font-size: 0.875em;
    color: var(--bs-form-invalid-color);
}

/* Individual Review Item Styles */
.review-item .review-rating .fas,
.review-item .review-rating .far {
    color: #ffc107;
}

.review-item .badge {
    font-size: 0.8em;
    padding: 0.5em 0.75em;
}

/* Ensure padding for review cards */
.card-body.p-4 {
    padding: 1.5rem !important;
}


.section-title {
    font-family: "Playfair Display", serif; 
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--yellow-bg) !important; /* Use Bootstrap primary color */
    border-radius: 2px;
}




/* --- Blog Snippet Section --- */
.blog-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.blog-card-img {
    height: 200px; /* Fixed height for blog images */
    object-fit: cover; /* Cover the area, cropping if necessary */
    width: 100%;
}

.blog-card .card-title a {
    transition: color 0.2s ease;
}

.blog-card .card-title a:hover {
    color: var(--bs-primary) !important;
}

/* --- Newsletter Signup (Example) --- */
.newsletter-signup {
    background-color: #343a40; /* Dark background */
}
.newsletter-signup .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.newsletter-signup .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.newsletter-signup .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}




