
        /* Custom styles for allergens page */
        .allergen-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1562967916-eb82221dfb92?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=100');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 20px 20px;
        }
        
        .allergen-badge {
            display: inline-block;
            padding: 5px 15px;
            background: linear-gradient(135deg, #146a34 0%, #10683b 100%);
            color: white;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .warning-box {
            background: #fff8e1;
            border-left: 5px solid #ff9800;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        
        .warning-box h3 {
            color: #d35400;
            margin-top: 0;
        }
        
        .allergen-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .allergen-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border-top: 4px solid;
        }
        
        .allergen-card:hover {
            transform: translateY(-5px);
        }
        
        .gluten { border-color: #e74c3c; }
        .dairy { border-color: #3498db; }
        .soy { border-color: #2ecc71; }
        .nuts { border-color: #f39c12; }
        .eggs { border-color: #9b59b6; }
        
        .allergen-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }
        
        .safe-item, .unsafe-item {
            padding: 8px 12px;
            margin: 5px;
            border-radius: 5px;
            display: inline-block;
            font-size: 14px;
        }
        
        .safe-item {
            background: #d5f4e6;
            color: #27ae60;
            border: 1px solid #27ae60;
        }
        
        .unsafe-item {
            background: #ffeaea;
            color: #e74c3c;
            border: 1px solid #e74c3c;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .comparison-table th {
            background: linear-gradient(135deg, #146a34 0%, #10683b 100%);
            color: white;
            padding: 18px;
            text-align: left;
            font-weight: bold;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            vertical-align: top;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .comparison-table tr:hover {
            background: #fff8e1;
        }
        
        .risk-level {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .high-risk { background: #ffebee; color: #c62828; }
        .medium-risk { background: #fff3e0; color: #ef6c00; }
        .low-risk { background: #e8f5e9; color: #2e7d32; }
        
        .allergen-tip {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #2196f3;
        }
        
        .content-navigation {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .content-navigation ul {
            columns: 2;
            margin: 15px 0 0 20px;
        }
        
        .content-navigation li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            background: #f5f5f5;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 30px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        .quick-faq {
            background: #e8f4ff;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #3498db;
        }
        
        .quick-faq ul {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        .quick-faq li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .allergy-checker {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 40px 0;
            border-top: 4px solid #9b59b6;
        }
        
        .allergy-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        
        .allergy-btn {
            padding: 10px 20px;
            background: #f1f1f1;
            border: 2px solid #ddd;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .allergy-btn:hover {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .allergy-btn.active {
            background: #2ecc71;
            color: white;
            border-color: #27ae60;
        }
        
        .related-questions {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .question {
            background: white;
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            border-left: 4px solid #3498db;
        }
        
        .answer {
            background: #f8f9fa;
            padding: 15px;
            margin: 0 0 10px 15px;
            border-radius: 5px;
            display: none;
        }
        
        .hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .location-notice {
            background: #fff3cd;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            border: 1px solid #ffc107;
            font-size: 14px;
        }
        
        .changelog {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            font-size: 14px;
        }
        
        .changelog ul {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        @media (max-width: 768px) {
            .content-navigation ul {
                columns: 1;
            }
            
            .allergen-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .allergy-buttons {
                justify-content: center;
            }
        }
        
        /* FAQ SECTION */
.faq-section {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #146a34 0%, #2ecc71 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #146a34;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #146a34 0%, #2ecc71 100%);
    border-radius: 2px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item:hover {
    border-color: #146a34;
    box-shadow: 0 8px 30px rgba(20, 106, 52, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #146a34;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    box-shadow: 0 10px 40px rgba(20, 106, 52, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    color: #2c3e50;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #146a34;
}

.faq-question .question-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #146a34 0%, #2ecc71 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-question .question-text {
    flex: 1;
    margin-right: 20px;
    line-height: 1.4;
}

.faq-question .toggle-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question .toggle-icon::before,
.faq-question .toggle-icon::after {
    content: '';
    position: absolute;
    background: #146a34;
    transition: all 0.3s ease;
}

.faq-question .toggle-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-question .toggle-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-question .toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 30px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    display: block;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    color: #146a34;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.faq-answer strong {
    color: #2c3e50;
    font-weight: 600;
}

.faq-answer a {
    color: #146a34;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.faq-answer a:hover {
    border-bottom: 1px solid #146a34;
}

/* FAQ Search Bar */
.faq-search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search {
    width: 100%;
    padding: 18px 25px;
    padding-right: 60px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-search:focus {
    outline: none;
    border-color: #146a34;
    box-shadow: 0 5px 20px rgba(20, 106, 52, 0.15);
}

.faq-search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #146a34;
    font-size: 1.2rem;
    pointer-events: none;
}

/* FAQ Stats */
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #146a34;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 50px;
}

.faq-category {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-category:hover,
.faq-category.active {
    background: linear-gradient(135deg, #146a34 0%, #2ecc71 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 106, 52, 0.3);
}

/* FAQ Footer */
.faq-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.faq-footer h3 {
    color: #146a34;
    margin-bottom: 15px;
}

.faq-footer p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* FAQ Back to Top */
.faq-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #146a34 0%, #2ecc71 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(20, 106, 52, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.faq-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.faq-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(20, 106, 52, 0.5);
}

/* FAQ No Results */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.faq-no-results .icon {
    font-size: 4rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.faq-no-results h3 {
    color: #555;
    margin-bottom: 10px;
}

.faq-no-results p {
    color: #888;
    max-width: 400px;
    margin: 0 auto;
}

/* FAQ Enhancement Styles */
.ordering-steps {
    margin: 25px 0;
}

.step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #146a34 0%, #2ecc71 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    margin: 0;
    color: #555;
}

.info-sources {
    margin: 25px 0;
}

.source {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.source h4 {
    margin-top: 0;
    color: #3498db;
    display: flex;
    align-items: center;
}

.source h4 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.pdf-link {
    display: inline-block;
    background: #146a34;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.3s;
}

.pdf-link:hover {
    background: #2ecc71;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 106, 52, 0.3);
}

.pdf-link i {
    margin-right: 8px;
}

.allergen-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.allergen-table th {
    background: linear-gradient(135deg, #146a34 0%, #10683b 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.allergen-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.warning-note {
    background: #ffebee;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    margin: 20px 0;
}

.warning-note i {
    color: #e74c3c;
    margin-right: 10px;
}

.highlight-red {
    color: #e74c3c;
    font-weight: 700;
}

.tip-box {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.safe-item-highlight {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.avoid-list ul {
    margin: 0;
    padding-left: 20px;
}

.avoid-list li {
    margin-bottom: 8px;
    position: relative;
}

.avoid-list li::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.final-warning {
    animation: warningPulse 3s infinite;
}

@keyframes warningPulse {
    0% { border-color: #ffc107; }
    50% { border-color: #ff9800; }
    100% { border-color: #ffc107; }
}

/* FAQ Accessibility */
.faq-question:focus {
    outline: 2px solid #146a34;
    outline-offset: 2px;
}

.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 2000px;
    opacity: 1;
}

/* FAQ Hover Effects */
.faq-item:hover .faq-question .question-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(20, 106, 52, 0.3);
}

.faq-item:hover .faq-question .toggle-icon::before,
.faq-item:hover .faq-question .toggle-icon::after {
    background: #2ecc71;
}

/* FAQ Gradient Border Animation - REMOVED HOVER BACKGROUND */
.faq-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #146a34, #2ecc71, #146a34);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        margin: 40px 0;
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }
    
    .faq-question .question-number {
        width: 28px;
        height: 28px;
        line-height: 28px;
        margin-right: 12px;
        font-size: 0.8rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-search-container {
        margin: 0 auto 30px;
    }
    
    .faq-search {
        padding: 15px 20px;
        padding-right: 50px;
    }
    
    .faq-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-categories {
        margin: 20px 0 40px;
    }
    
    .faq-category {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .faq-footer {
        margin-top: 40px;
        padding: 20px;
    }
    
    .ordering-steps .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .info-sources .source {
        padding: 15px;
    }
    
    .allergen-table {
        display: block;
        overflow-x: auto;
    }
    
    .faq-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 25px 15px;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .faq-category {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    .pdf-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .source h4 {
        font-size: 1.1rem;
    }
}

/* FAQ Print Styles */
@media print {
    .faq-section {
        background: none;
        box-shadow: none;
    }
    
    .faq-item {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    .faq-question {
        color: #000;
    }
    
    .faq-answer {
        max-height: none !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .faq-search-container,
    .faq-categories,
    .faq-footer,
    .faq-back-to-top {
        display: none;
    }
}
