/* ==========================================================================
   Brandoz Product Specifications – Frontend Styles
   Rounded card, one row per configured field with a value for the current
   product: icon + label on the left, bold value on the right.
   ========================================================================== */

.brandoz-specs-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin: 24px 0;
}

.brandoz-specs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #eef0f2;
}

.brandoz-specs-row:last-child {
    border-bottom: none;
}

.brandoz-specs-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brandoz-specs-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    line-height: 1;
    color: var(--brandoz-specs-icon-color, #2271b1);
}

.brandoz-specs-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brandoz-specs-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brandoz-specs-label-color, #475569);
}

.brandoz-specs-value {
    flex: 0 0 auto;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brandoz-specs-value-color, #0f172a);
    text-align: right;
}

@media (max-width: 480px) {
    .brandoz-specs-row {
        padding: 12px 16px;
        gap: 10px;
    }

    .brandoz-specs-label,
    .brandoz-specs-value {
        font-size: 0.85rem;
    }
}
