<?php
$pageTitle = "Yeast Extract | Premium Food Ingredients | BLDL INDIA";
$pageDescription = "Get technical specifications, key applications, and request a quote for Yeast Extract from BLDL India, leading food ingredients distributor.";
$pageKeywords = "Yeast Extract, yeast, food ingredients, emulsifiers, cocoa powder, bakery raw materials, ice cream ingredients, BLDL, Behari Lal Darshan Lal";
$canonicalUrl = "https://benevolent-cocada-7d32d8.netlify.app/yeast-extract.php";
$base_path = "";
include("header.php");
?><style>
        /* Product Page Specific Styles */
        .product-hero {
            padding: 180px 20px 100px;
            background: linear-gradient(rgba(30, 10, 8, 0.75), rgba(30, 10, 8, 0.75)), url('img/baner/banner2.avif') center/cover no-repeat;
            color: #fff;
            text-align: center;
        }

        .product-hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 5vw, 48px);
            color: var(--gold-soft);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .product-hero p {
            font-size: clamp(14px, 2vw, 18px);
            font-weight: 300;
            color: #f3ede2;
            max-width: 800px;
            margin: 0 auto;
        }

        .detail-section {
            padding: 90px 20px;
            background: var(--primary-light);
        }

        .detail-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
        }

        @media (max-width: 992px) {
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        .specs-panel {
            background: white;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .product-detail-img-wrap {
            text-align: center;
            margin-bottom: 35px;
            background: #faf8f5;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border-light);
        }

        .product-detail-img {
            max-width: 250px;
            border-radius: 50%;
            border: 6px solid var(--gold-soft);
            box-shadow: var(--shadow-sm);
            aspect-ratio: 1/1;
            object-fit: cover;
            width: 100%;
        }

        .detail-title {
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .detail-category {
            color: var(--gold);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .detail-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-dark);
            border-bottom: 2px solid var(--gold-soft);
            padding-bottom: 6px;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 35px;
        }

        .specs-table tr {
            border-bottom: 1px dashed var(--border-light);
        }

        .specs-table td {
            padding: 12px 0;
            font-size: 15px;
        }

        .specs-table td:first-child {
            font-weight: 600;
            color: var(--text-dark);
        }

        .specs-table td:last-child {
            text-align: right;
            color: #555;
        }

        .apps-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;
        }

        .apps-list li {
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 500;
        }

        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .apps-panel {
            background: white;
            padding: 40px 30px;
            border-radius: 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .form-panel {
            background: white;
            padding: 40px 30px;
            border-radius: 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .form-panel h3 {
            font-family: var(--font-heading);
            color: var(--text-dark);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .enquiry-form-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .enquiry-form-grid label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .enquiry-form-grid input,
        .enquiry-form-grid textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            background: var(--secondary-bg);
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .enquiry-form-grid input:focus,
        .enquiry-form-grid textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
            box-shadow: 0 0 0 3px rgba(139, 107, 74, 0.1);
        }

        .submit-btn {
            background: var(--gold);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(139, 107, 74, 0.2);
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #5C3A21;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 107, 74, 0.3);
        }

        .related-section {
            padding: 80px 20px;
            background: var(--secondary-bg);
            border-top: 1px solid var(--border-light);
        }

        .related-title {
            text-align: center;
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--gold) !important;
            margin-bottom: 40px;
        }

        .related-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
        }

        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--gold-soft);
        }

        .related-card-img {
            height: 180px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #faf8f5;
            border-bottom: 1px solid var(--border-light);
        }

        .related-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover .related-card-img img {
            transform: scale(1.08);
        }

        .related-card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .related-card-body h4 {
            font-family: var(--font-heading);
            color: var(--text-dark);
            font-size: 18px;
            margin-bottom: 8px;
        }

        .related-card-body p {
            color: #666;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 480px) {
            .detail-section {
                padding: 50px 15px;
            }
            .specs-panel, .apps-panel, .form-panel {
                padding: 25px 15px;
            }
        }
    </style>

    <section class="product-hero">
        <h1>Yeast Extract</h1>
        <p>Premium grade raw materials and processing agents for high-capacity industrial food manufacturing.</p>
    </section>

    <!-- Details View Grid -->
    <section class="detail-section">
        <div class="detail-grid">
            <!-- Left Side Specs -->
            <div class="specs-panel">
                <div class="product-detail-img-wrap">
                    <img class="product-detail-img" src="img/services/7.avif" alt="Yeast Extract" title="Yeast Extract" onerror="this.src='https://placehold.co/250x250?text=Product'"/>
                </div>
                <span class="detail-category">yeast</span>
                <h2 class="detail-title">Yeast Extract</h2>
                <p class="detail-desc">Natural savory flavor enhancer derived from yeast cell contents. Rich in free amino acids and nucleotides, providing strong umami, salt enhancement, and round flavor profiles.</p>
                
                <h4 class="section-subtitle">Specifications</h4>
                <table class="specs-table">
                    <tbody>
                        <tr><td>Protein Content</td><td>50% Min</td></tr>
<tr><td>Solubility</td><td>100% soluble in water</td></tr>
<tr><td>Salt Content</td><td>0 - 15%</td></tr>
<tr><td>Total Nitrogen</td><td>8% Min</td></tr>

                    </tbody>
                </table>
            </div>

            <!-- Right Side Column -->
            <div class="right-column">
                <!-- Key Applications -->
                <div class="apps-panel">
                    <h4 class="section-subtitle" style="margin-top: 0;">Key Applications</h4>
                    <ul class="apps-list">
                        <li><i class="fa-solid fa-circle-check" style="color: var(--gold); margin-right: 5px;"></i> Savory seasonings & spices</li>
<li><i class="fa-solid fa-circle-check" style="color: var(--gold); margin-right: 5px;"></i> Instant soups & broths</li>
<li><i class="fa-solid fa-circle-check" style="color: var(--gold); margin-right: 5px;"></i> Snack seasonings</li>
<li><i class="fa-solid fa-circle-check" style="color: var(--gold); margin-right: 5px;"></i> Meat processing & vegetarian foods</li>

                    </ul>
                </div>

                <!-- Request a Quote Form -->
                <div class="form-panel">
                    <h3>Request a Quote</h3>
                    <form id="productPageForm" class="enquiry-form-grid">
                        <input type="hidden" id="pNameHidden" value="Yeast Extract" />
                        <div>
                            <label for="pName">Your Name *</label>
                            <input type="text" id="pName" placeholder="John Doe" required />
                        </div>
                        <div>
                            <label for="pEmail">Your Email *</label>
                            <input type="email" id="pEmail" placeholder="john@example.com" required />
                        </div>
                        <div>
                            <label for="pMsg">Enquiry Details *</label>
                            <textarea id="pMsg" rows="5" placeholder="Specify quantity, destination, and application details..." required></textarea>
                        </div>
                        <button type="submit" class="submit-btn" id="pSubmitBtn">Send Enquiry</button>
                    </form>
                </div>
            </div>
        </div>
    </section>

    <!-- Related Products -->
    <section class="related-section" data-aos="fade-up">
        <h3 class="related-title">Related Ingredients</h3>
        <div class="related-grid">
            
        <a href="instant-dry-yeast-yeast.php" class="related-card" title="View details for Instant Dry Yeast – Yeast">
            <div class="related-card-img">
                <img src="img/services/6.avif" alt="Instant Dry Yeast – Yeast" title="Instant Dry Yeast – Yeast" onerror="this.src='https://placehold.co/200x200?text=Product'">
            </div>
            <div class="related-card-body">
                <h4>Instant Dry Yeast – Yeast</h4>
                <p>High-activity dry yeast vacuum packed to preserve leavening power. Requires no pre-hydration; blends directly with dry ingredients to drive fast, consistent fermentation.</p>
            </div>
        </a>

        <a href="flavour-enhancer.php" class="related-card" title="View details for Flavour Enhancer">
            <div class="related-card-img">
                <img src="img/services/8.avif" alt="Flavour Enhancer" title="Flavour Enhancer" onerror="this.src='https://placehold.co/200x200?text=Product'">
            </div>
            <div class="related-card-body">
                <h4>Flavour Enhancer</h4>
                <p>Highly effective ingredient blend designed to intensify and balance food flavors, elevating natural taste notes and enhancing salty/umami perception.</p>
            </div>
        </a>

        <a href="cocoa-powder-alkalised-cocoa.php" class="related-card" title="View details for Cocoa Powder – Alkalised Cocoa">
            <div class="related-card-img">
                <img src="img/services/1.avif" alt="Cocoa Powder – Alkalised Cocoa" title="Cocoa Powder – Alkalised Cocoa" onerror="this.src='https://placehold.co/200x200?text=Product'">
            </div>
            <div class="related-card-body">
                <h4>Cocoa Powder – Alkalised Cocoa</h4>
                <p>Premium alkalised cocoa powder with balanced acidity, rich dark color, and deep chocolatey aroma. Ideal for confectionery, baking, and dairy products.</p>
            </div>
        </a>

        </div>
    </section>

    <!-- Form submission scripts specific to the product page -->
    <script>
        document.addEventListener('DOMContentLoaded', () => {
            // Handle Enquiry Form Submission
            const form = document.getElementById('productPageForm');
            if (form) {
                form.addEventListener('submit', async (e) => {
                    e.preventDefault();
                    const btn = document.getElementById('pSubmitBtn');
                    const originalText = btn.textContent;
                    btn.textContent = 'Sending...';

                    const name = document.getElementById('pName').value;
                    const email = document.getElementById('pEmail').value;
                    const message = document.getElementById('pMsg').value;
                    const productName = document.getElementById('pNameHidden').value;

                    if (window.supabase) {
                        try {
                            const { error } = await window.supabase
                                .from('contacts')
                                .insert([
                                    { name, email, subject: 'Product Enquiry: ' + productName, message }
                                ]);
                            if (error) throw error;
                        } catch (err) {
                            console.error('Error saving inquiry:', err);
                        }
                    } else {
                        console.log('Offline submission:', { name, email, product: productName, message });
                    }

                    btn.textContent = '✓ Enquiry Sent!';
                    form.reset();
                    setTimeout(() => btn.textContent = originalText, 3000);
                });
            }
        });
    </script>
<?php include("footer.php"); ?>
