/* Font name lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Font name Poppins */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: lato;
        }

        body {
            color: #333;
            background: #f8f9fa;
       
        }
        
        /* #header-placeholder .navbar .nav-link {
            color: #383838 !important;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 1px;
        } */
        /* #header-placeholder .navbar .nav-link:hover {
            color: #2d5016 !important;
        } */
        #header-placeholder .navbar-toggler {
            border-color: #000000;
            padding: 0.25rem 0.5rem;
        }
        #header-placeholder .navbar-toggler:focus {
            box-shadow: 0 0 0 0.15rem rgba(45, 80, 22, 0.25);
        }
        #header-placeholder .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
        
        /* Mobile menu styles */
        @media (max-width: 991.98px) {
            #header-placeholder .navbar-collapse {
                background-color: #ffffff;
                padding: 15px;
                margin-top: 10px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            #header-placeholder .navbar-nav {
                padding: 10px 0;
            }
            #header-placeholder .nav-item {
                margin: 5px 0;
            }
            #header-placeholder .navbar-toggler[aria-expanded="true"] {
                background-color: #f8f9fa;
            }
        }

        /* Header Placeholder */
        #product-page-header {
            position: relative;
            z-index: 200;
            background: #ffffff;
        }

        /* Breadcrumb Section */
        .product-page-breadcrumb {
            background: #f8f9fa;
            padding: 2rem 0 0 0;
            /* padding-top: 5em; */
        }

        .product-page-breadcrumb-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0px 5px 0px 35px;
            padding-top: 0.5em;
        }

        .product-page-breadcrumb-nav {
            background: transparent;
            margin: 0;
            padding: 0;
        }

        .product-page-breadcrumb-item a {
            color: #000000;
            text-decoration: none;
            font-weight: 700;
        }

        .product-page-breadcrumb-item.active {
            color: #2d5016;
            font-weight: 400;
        }

        .product-page-breadcrumb-item + .product-page-breadcrumb-item::before {
            content: ">";
            padding: 0 0.5rem;
            color: #999;
        }

        /* Main Container */
        .product-page-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0rem 3rem 2rem 2rem;
            background: #f8f9fa;
        }

        .product-page-layout {
            display: flex;
            gap: 2rem;
        }

        /* Left Content - 60% - Scrollable */
        .product-page-left {
            flex: 0 0 60%;
            padding-right: 1rem;
        }

        .product-page-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .product-page-subtitle {
            color: #666666;
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Product Image Section */
        .product-page-image-section {
            margin: 1rem 0;
            width: 100%;
            text-align: center;
            overflow: hidden;
            /* border-radius: 8px; */
            /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
        }
        .product-img{
            width: 100%;
        }
        .product-page-image-section img {
            max-width: 100%;
            height: auto;
            display: block;
            /* margin: 0 auto; */
        }

        .product-page-organic-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 80px;
            height: 80px;
        }

        .product-page-organic-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-page-image-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 100%;
        }

        .product-page-image-wrapper img {
            max-width: 35%;
            height: auto;
            object-fit: contain;
        }

        /* Info Box */
        .product-page-info-box {
            background: #fffbf0;
            border: 1px solid #ff9933;
            padding: 2rem;
            margin-bottom: 2rem;
        }

.product-page-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;

    background: linear-gradient(to right, #CA2BA8 20%, #F9C50C 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* validation error msg style */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
}

.success-message {
    display: none;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

.success-message.show {
    display: block;
}







        .product-page-info-tags {
            color: #79c220;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 16px;
            font-weight: 500;
            font-family: "Poppins";
            letter-spacing: 1px;
        }

        .product-page-info-description {
            color: #333;
            line-height: 1.8;
            font-size: 1rem;
        }

    /* Right Sidebar - 40% */
    .product-page-right {
        flex: 0 0 40%;
        position: relative;
    }

    /* Sidebar sticky container */
    .product-page-sidebar-sticky {
        position: sticky;
        top: 0px; /* Adjust for header height */
        max-height: 100vh !important;
        overflow-y: auto;
        transition: top 0.3s ease;
    }

    /* Remove all scrollbars */
    .product-page-sidebar-sticky::-webkit-scrollbar {
        display: none;
    }


    /* Mobile */
    @media (max-width: 425px){
        .product-page-breadcrumb-container {
        padding-top: 1em !important
    }
            .product-page-breadcrumb {
            background: #f8f9fa;
            padding: 0rem 0 0 0 !important;
            /* padding-top: 5em; */
        }
            .product-page-title {
        font-size: 1.2rem !important;
    }
        .product-page-info-box {
        margin-bottom: 1rem !important;
    }
    .product-section, .key-features {
    padding: 20px 15px !important;
    margin-bottom: 20px !important;
    }
    .global-brands-section {
    padding: 20px 15px !important;
    margin-bottom: 20px !important;
    }
    .partner-section {
    padding: 20px 15px !important;
    margin-bottom: 20px !important;
    }
    .product-page-sidebar-sticky {
        margin-top: 1.4rem !important;
    }
    }
        @media (max-width: 768px){
            .global-brands-section {
            padding: 20px 20px !important;
        }

        }

    @media (max-width: 992px) {
        .product-page-sidebar-sticky {
            position: static !important;
            margin-top: 2rem;
            max-height: none;
            overflow-y: visible;
        }
    }

    /* Prevent overflow scroll jump */
    body {
        overflow-x: hidden;
    }



        /* Enquiry Form */
        .product-page-enquiry-form {
            background: #fff;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            padding: 30px 40px;
            max-width: 520px;
        }

        .product-page-form-title {
            font-size: 20px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .product-page-form-subtitle {
            color: #5b5b5b;
            font-size: 16px;
            margin-bottom: 2rem;
            line-height: 25px;
        }

        /* Features Box */
        .product-page-features-box {
            background: #fffbf0;
            /* border-radius: 12px; */
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #ff9933;
        }

        .product-page-features-title {
            font-size: 20px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 1.2rem;
        }

        .product-page-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            gap:13px;
        }

        .product-page-feature-item:last-child {
            margin-bottom: 0;
        }

        .product-page-feature-icon {
            color: #2d5016;
            margin-right: 0.8rem;
            margin-top: 3px;
            font-size: 0.95rem;
        }

        .product-page-feature-label {
            font-weight: 700;
            color: #000;
            min-width: 120px;
        }

        .product-page-feature-value {
            color: #555;
            line-height: 1.5;
        }

        /* Form Section */
        .product-page-form-section-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .product-page-form-section-subtitle {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .product-page-form-section-subtitle span {
            color: #000000;
            font-weight: 700;
        }

        .product-page-form-label {
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            display: block;
        }

        .product-page-form-control,
        .product-page-form-select {
            border: 1.5px solid #e0e0e0;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            width: 100%;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .product-page-form-control:focus,
        .product-page-form-select:focus {
            border-color: #2d5016;
            outline: none;
        }

        .product-page-form-control::placeholder {
            color: #999;
        }

        .product-page-form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .product-page-submit-btn {
            background: #084A2F;
            color: #fff;
            border: none;
            padding: 1rem 2rem;
            width: 100%;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            /* text-transform: uppercase; */
            letter-spacing: 0.5px;
            transition: all 0.3s ease-in-out;
        }

        .product-page-submit-btn:hover {
            background-color: #79c220;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(121, 194, 32, 0.3);
        }
        .product-page-submit-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .product-page-layout {
                flex-direction: column;
            }

            .product-page-left,
            .product-page-right {
                flex: 0 0 100%;
                padding-right: 0;
            }
/* 
                .product-page-sidebar-sticky {
                    position: static;
                } */
        }

        @media (max-width: 768px) {
            .product-page-container {
                padding: 10px;
                overflow-x: hidden;
            }

            .product-page-title {
                font-size: 1.5rem;
                line-height: 1.3;
            }

            .product-page-subtitle {
                font-size: 0.95rem;
            }
            .product-page-breadcrumb-container {
            margin: 0 auto;
            padding: 0px 5px 0px 10px;
            padding-top: 2em;
        }

            .product-page-image-section {
                margin: 1.5rem 0;
                padding: 0;
                border-radius: 0;
                box-shadow: none;
            }
            
            .product-page-image-section img {
                width: 100%;
                max-width: 100%;
            }
            
            .product-page-info-box,
            .product-page-overview {
                padding: 10px;
            }
            .product-page-enquiry-form {
                background: #fff;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                padding: 15px 15px;
                max-width: 520px;
            }
        }


        /* Main card container */
.product-section,
.key-features {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

/* Section title */
.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

/* Text content */
.section-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

/* Bold headers (like BALANCED HYDRATION etc.) */
.section-body strong {
    font-weight: 600;
    color: #222;
}



/* White card box */
.info-card {
    background: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

/* Title */
.info-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

/* Body text */
.info-body p {
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 15px;
    color: #444;
}

.info-body strong {
    display: block;
    color: #222;
    font-size: 15px;
}

/* Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

/* Header */
.info-table th {
    text-align: left;
    padding: 22px 0 22px 0;
    font-weight: 600;
    position: relative;
}

.info-table th::after {
    content: '';
    position: absolute;
    left: 0%;
    right: 10%;
    bottom: 20px;
    height: 2px;
    background-color: #2d5016;
    width: 40%;
}

.specifications{
    position: relative;
}
.specifications::after{
    content: '' !important;
    position: absolute !important;
    left: 4% !important;
    right: 0% !important;
    bottom: 20px !important;
    height: 2px !important;
    background-color: #2d5016 !important;
    width: 27% !important;
}

.info-table th {
    /* border-bottom: 2px solid #e5e5e5; */
    color: #333;
}

/* Rows */
.info-table td {
    padding: 8px 0;
    /* border-bottom: 1px solid #f0f0f0; */
    color: #444;
}

/* Vertical divider */
.info-table th:first-child,
.info-table td:first-child {
    border-right: 1px solid #e5e5e5;
    padding-right: 20px;
}

.info-table th:last-child,
.info-table td:last-child {
    padding-left: 20px;
}

/* ========================================
   FUNCTIONAL ADVANTAGES SECTION
   ======================================== */
.functional-section {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.functional-container {
    max-width: 1440px;
    width: 100%;
}

.functional-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
}

.functional-list {
    display: grid;
    gap: 5px;
}

.functional-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.functional-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
    width: 100%;
    padding: 40px 0px;
    display: flex;
    justify-content: center;
}

.comparison-container {
    max-width: 1440px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
}

/* TABLE STYLES */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 10px;
    text-align: left;
    /* border-bottom: 1px solid #e0e0e0; */
}

.comparison-table th {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* background-color: #fafafa; */
}

.comparison-table td {
    font-size: 15px;
    color: #4a4a4a;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.highlight {
    background-color: #fffbf0 !important;
    border-left: 2px solid #f5c842 !important;
    border-right: 2px solid #f5c842 !important;
}

.comparison-table thead th.highlight {
    border-top: 2px solid #f5c842 !important;
}

.comparison-table tbody tr:last-child td.highlight {
    border-bottom: 2px solid #f5c842 !important;
}

/* CONCLUSION */
.comparison-conclusion {
    background-color: transparent;
    padding: 0;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.6;
}

.conclusion-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conclusion-label span:first-child {
    position: relative;
    display: inline-block;
}

.conclusion-label span:first-child::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

.conclusion-text {
    display: inline;
    font-weight: normal;
    text-transform: none;
    text-decoration: none;
    margin-left: 8px;
    font-size: 15px;
    line-height: 1.6;
}

/* CHARTS LAYOUT */
.comparison-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .functional-container,
    .comparison-container {
        padding: 24px;
    }

    .functional-title,
    .comparison-title {
        font-size: 20px;
    }
    .partner-section {
                padding: 20px 20px !important;
    }

    .comparison-charts {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .functional-container,
    .comparison-container {
        padding: 20px;
    }

    .functional-title,
    .comparison-title {
        font-size: 18px;
    }

    .comparison-table {
        min-width: 500px;
    }
    .chart-box img{
        width: 100%;
    }
    .sustainability-section {
    padding: 0px 0px;
}
}

/* ========================================
   SUSTAINABILITY COMMITMENT SECTION
   ======================================== */
.sustainability-section {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sustainability-container {
    max-width: 1440px;
    width: 100%;
}

.sustainability-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

.sustainability-intro {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.sustainability-benefits {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 24px;
}

.sustainability-benefits li {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.sustainability-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.sustainability-chart-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .sustainability-container {
        padding: 20px;
    }
    .sustainability-title {
        font-size: 18px;
    }
    .sustainability-intro,
    .sustainability-benefits li {
        font-size: 13px;
    }
    .sustainability-charts {
        grid-template-columns: 1fr;
    }
    .product-page-layout {
    display: flex;
    gap: 0rem;
}
}


@media (max-width: 480px) {
    .sustainability-container {
        padding: 16px;
    }
    .sustainability-title {
        font-size: 16px;
    }
}


  /* WHY GLOBAL BRANDS CHOOSE ROSUN SECTION */
/* CSS */
.global-brands-section {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.global-brands-container {
    max-width: 1440px;
    width: 100%;
}

.global-brands-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

.global-brands-list {
    list-style: disc;
    padding-left: 20px;
}

.global-brands-list li {
    font-size: 16px;
    line-height: 25px;
    color: #222;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .global-brands-container {
        padding: 20px;
    }
    .global-brands-title {
        font-size: 18px;
    }
    .global-brands-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .global-brands-container {
        padding: 0px;
    }
    .global-brands-title {
        font-size: 16px;
    }
        .global-brands-list li {
        font-size: 16px !important;
    }
}

 /* PARTNER WITH ROSUN SECTION */


/* CSS */
.partner-section {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.partner-container {
    max-width: 1440px;
    width: 100%;

}

.partner-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

.partner-description {
    font-size: 16px;
    line-height: 25px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .partner-container {
        padding: 20px;
    }
    .partner-title {
        font-size: 18px;
    }
    .partner-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .partner-container {
        padding: 0px;
    }
    .partner-title {
        font-size: 16px;
    }
}

   /* CERTIFICATIONS & QUALITY SECTION */

* CSS */
.certifications-section {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    background: #ffffff;

}

.certifications-container {
    max-width: 1440px;
    width: 100%;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.certifications-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

.certifications-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certifications-all-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .certifications-container {
        padding: 20px;
    }
    .certifications-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .certifications-container {
        padding: 16px;
    }
    .certifications-title {
        font-size: 16px;
    }
}

/* FAQ */

/* CSS */
.faq-section {
    width: 100%;
    padding: 40px 0px;

}

.faq-container {
    max-width: 1440px;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 12px;
    line-height: 1.5;
}

.faq-answer {
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
    color: #555555;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .faq-container {
        padding: 30px 24px;
    }

    .faq-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-list {
        gap: 20px;
    }

    .faq-item {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 24px 20px;
    }

    .faq-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-list {
        gap: 18px;
    }
}

/* Related products */
/* CSS */
.related-products-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background: #f8f9fa;
}

.related-products-container {
    max-width: 1440px;
    width: 100%;
    /* padding: 0px 20px; */
}

.related-products-title {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid transparent;
    position: relative;
}

.related-product-card:hover {
    border-color: #79c220;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    width: 100%;
    /* height: 220px; */
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-product-title {
    font-size: 16px;
    color: #383838;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}

.related-product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #383838;
}

.related-product-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #79c220;
    font-weight: 500;
}

.related-product-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(313deg, #4B8800, #8CFF00);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(107, 142, 35, 0.6);
    transition: all 0.3s ease;
}

.related-product-card:hover .related-product-dot {
    animation: blink-dot 0.6s infinite;
}

@keyframes blink-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(107, 142, 35, 0.6);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(107, 142, 35, 0.9);
    }
}

.related-product-shipment {
    font-size: 14px;
    color: #383838;
    margin-bottom: 12px;
}

.related-product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.btn-related-enquire,
.btn-related-read {
    flex: 1;
    padding: 12px 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-related-enquire {
    background:#497216;
    color: white;
    border: 2px solid #497216;
    font-family: "Poppins";
}

.btn-related-enquire:hover {
    background: #79c220;
    border-color: #79c220;
}

.btn-related-read {
    color: #333;
    text-decoration: underline;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.btn-related-read:hover {
    color: #79c220;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-products-title {
        font-size: 20px;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .related-products-section {
        padding: 40px 20px;
    }

    .related-products-title {
        font-size: 18px;
        margin-bottom: 28px;
    }

    /* .related-product-image {
        height: 200px;
    } */

    /* .related-product-actions {
        flex-direction: column;
    } */

    .btn-related-enquire,
    .btn-related-read {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-products-title {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .related-product-card {
        padding: 12px;
    }
}