/* Price Display Container */
.fcond-price-display {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Subtotal */
.fcond-price-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

/* Modifiers (Tax, discounts) */
.fcond-price-modifier {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

/* Separator */
.fcond-price-separator {
    border: none;
    border-top: 2px solid #ddd;
    margin: 12px 0;
}

/* Final total */
.fcond-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 18px;
    color: #333;
}

.fcond-price-total .fcond-price-value {
    color: #28a745;
    font-size: 24px;
}

/* Labels */
.fcond-price-label {
    flex: 1;
}

.fcond-price-value {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .fcond-price-display {
        padding: 15px;
    }

    .fcond-price-total {
        font-size: 16px;
    }

    .fcond-price-total .fcond-price-value {
        font-size: 20px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .fcond-price-display {
        background-color: #2d3748;
        color: #e2e8f0;
    }

    .fcond-price-subtotal,
    .fcond-price-modifier {
        color: #cbd5e0;
    }

    .fcond-price-separator {
        border-top-color: #4a5568;
    }

    .fcond-price-total {
        color: #f7fafc;
    }
}
