/* Minimal Frontend Product Allergens Styles */

/* Product Allergens Container */
.product-allergens {
    margin: 15px 0;
    padding: 10px 0;
}

.allergens-title {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

/* Allergens List Container */
.allergens-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Individual Allergen Tags - Minimal Style */
.allergen-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

/* Product Loop Allergen Badges */
.product-allergen-badges {
    margin-top: 5px;
}

.allergen-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

.allergen-badge {
    display: inline-block;
    padding: 2px 6px;
    margin: 1px 2px 1px 0;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 10px;
    color: #666;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .allergens-title {
        font-size: 13px;
    }
    
    .allergen-tag {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .allergen-badge {
        font-size: 9px;
        padding: 1px 4px;
    }
}
