/**
 * Front Office CSS
 *
 * @author    allforweb
 * @copyright allforweb
 * @license   AFL-3.0
 */

/* =====================================================
   PRODUCT INGREDIENTS DISPLAY
   ===================================================== */

.a4w-product-ingredients {
    padding: 20px 0;
}

/* Section blocks */
.a4w-ingredients-block,
.a4w-allergens-block {
    margin-bottom: 25px;
}

.a4w-ingredients-block:last-child,
.a4w-allergens-block:last-child {
    margin-bottom: 0;
}

/* Section titles */
.a4w-block-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

/*.a4w-allergens-block .a4w-block-title {
    color: #c00;
    border-bottom-color: #c00;
}*/

/* Ingredients list */
.a4w-ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.a4w-ingredient-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.a4w-ingredient-row:last-child {
    border-bottom: none;
}

.a4w-ingredient-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.a4w-ingredient-label {
    font-weight: 500;
}

.a4w-allergen-indicator {
    display: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    background: #c00;
    color: #fff;
}

.a4w-trace-indicator {
    background: #666;
}

.a4w-ingredient-value {
    color: #666;
    font-size: 14px;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

/* Inline display variant */
.a4w-ingredients-inline {
    line-height: 1.8;
}

.a4w-ingredients-inline .a4w-ingredient-item {
    display: inline;
}

.a4w-ingredients-inline .a4w-ingredient-item:not(:last-child)::after {
    content: ', ';
}

.a4w-ingredients-inline .a4w-allergen-highlight {
    font-weight: 700;
}

.a4w-ingredients-inline .a4w-trace-highlight {
    font-style: italic;
}

/* Compact list variant */
.a4w-ingredients-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.a4w-ingredient-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    font-size: 13px;
}

.a4w-ingredient-tag.a4w-allergen-tag {
    background: #fff0f0;
    border-color: #c00;
    color: #c00;
}

.a4w-ingredient-tag.a4w-trace-tag {
    background: #f8f8f8;
    border-color: #666;
    color: #666;
}

/* =====================================================
   ACCORDION INTEGRATION
   ===================================================== */

.product-ingredients-section .accordion-body {
    padding: 20px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 576px) {
    .a4w-ingredient-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .a4w-ingredient-value {
        align-self: auto;
        text-align: right;
    }
}
