

        /* ============================================
           WHY CHOOSE US SECTION
           ============================================ */
        .section-intro {
            max-width: 700px;
            margin: 0 auto 40px auto;
            color: #555;
            font-size: var(--fs-lg);
        }

        .trust-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--brand-green);
            font-weight: 600;
            font-size: var(--fs-sm);
            max-width: 200px;
        }

        .trust-item-title {
            font-size: var(--fs-xl);
            color: var(--primary-blue);
        }

        .trust-item-description {
            font-weight: 400;
            color: var(--text-dark);
            font-size: var(--fs-sm);
            margin-top: 5px;
            line-height: 1.4;
            text-align: center;
        }

        .trust-icon-circle {
            width: 70px;
            height: 70px;
            border: 2px solid var( --nature-green);
            background-color: #f1f8e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .trust-icon-circle svg {
            width: 32px;
            height: 32px;
            fill: var( --nature-green);
        }

        .trust-item:hover .trust-icon-circle {
            transform: translateY(-5px);
            background-color: var( --nature-green);
        }

        .trust-item:hover .trust-icon-circle svg {
            fill: white;
            stroke: white;
        }

        /* ============================================
           TAB CONTROLLER
           ============================================ */
        .tab-controller {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            background: var(--bg-grey);
            padding: 5px;
            border-radius: 50px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .tab-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background: transparent;
            border-radius: 45px;
            font-family: inherit;
            font-weight: 700;
            font-size: var(--fs-base);
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background-color: var(--primary-blue);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(33, 29, 82, 0.3);
        }

        /* ============================================
           TAB CONTENT WRAPPER
           ============================================ */
        .content-block {
            margin-bottom: 2rem;
        }

        /* ============================================
           INGREDIENTS & SPECS SECTION
           ============================================ */
        .specs-section {
            background-color: var(--white);
            border-top: 1px solid #eee;
        }

        .ingredients-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            min-height: 80px;
            margin-bottom: 20px;
        }

        .ingredients-header .section-title {
            margin-bottom: 0;
        }
        
        .ingredients-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .ingredients-text {
            font-size: var(--fs-lg);
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .ingredients-text p {
            margin: 0px 0 15px 0 ;
        }

    

        /* ============================================
           FLAVOR GRID
           ============================================ */
        .flavor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
            text-align: left;
        } /* FIX: Added missing closing brace */

        .flavor-card {
            background: var(--bg-grey);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--brand-orange);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .flavor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .flavor-img-container {
            width: 100%;
            height: 250px;
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flavor-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none; /* Hidden by default */
        }

        .flavor-img.active {
            display: block; /* Show only active image */
        }

        .flavor-title {
            font-size: var(--fs-xl);
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .flavor-desc {
            color: var(--text-dark);
            margin-bottom: 15px;
            font-size: var(--fs-base);
            line-height: 1.5;
            flex-grow: 1;
        }

        .flavor-profile {
            font-weight: 600;
            color: var(--brand-orange);
            font-size: var(--fs-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .mobile-scroll-hint {
            display: none;
            font-size: 0.75rem;
            color: #666;
            margin-bottom: 5px;
            font-style: italic;
            text-align: right;
        }


        /* ============================================
           STORAGE & LOGISTICS
           ============================================ */
        .storage-content p {
            margin-bottom: 10px;
            line-height: 1.8;
            font-size: var(--fs-base);
        }

        /* ============================================
           PRIVATE LABELLING SECTION
           ============================================ */
        .private-labelling-section {
            background-color: #f9fafb;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .private-labelling-grid {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }

        .private-labelling-content {
            flex: 2;
            min-width: 300px;
        }

        .private-labelling-description {
            margin-bottom: 20px;
            font-size: var(--fs-lg);
            color: #555;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: var(--fs-base);
        }

        .feature-bullet {
            width: 8px;
            height: 8px;
            background: var(--brand-red);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .private-labelling-graphic {
            flex: 1;
            display: flex;
            justify-content: center;
            opacity: 0.15;
        }

        .private-labelling-graphic svg {
            width: 200px;
            height: 200px;
            fill: var(--primary-blue);
        }

     
        /* ============================================
           RESPONSIVE - MOBILE
           ============================================ */
   
        
        @media (max-width: 600px) {
            .mobile-scroll-hint {
                display: block; /* UI Fix: Show scroll hint on mobile */
            }
        }

        @media (max-width: 768px) {
            /* Hero */
            .hero-title {
                font-size: var(--fs-4xl);
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            
            .section-title-small {
                font-size: var(--fs-2xl);
            }

      
            
        
            .hero-img-wrapper img{
                width: 250px;
                height: 200px;
            }
        }

        @media (min-width: 600px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                justify-items: start;
                text-align: left;
            }

            .footer-tagline,
            .footer-contact-item,
            .social-row {
                margin-left: 0;
                margin-right: 0;
                justify-content: flex-start;
                text-align: left;
            }
        }

        @media (max-width: 700px) {
            .ingredients-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .badge {
                position: static;
                margin: 0;
            }
        }

   

        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }