/**
 * WC MP Booking Pro - Subtotal Styles
 * Estilos para el componente de subtotal
 * Version: 1.0.0
 */

.mp-booking-pro-subtotal-wrapper {
    margin: 20px 0 !important;
    padding: 0 !important;
}

.mp-subtotal-container {
    background: #fff !important;
    border: 2px solid #ff6210 !important;
    border-radius: 0 !important;
    padding: 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.mp-subtotal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0 0 15px 0 !important;
    padding: 0 0 10px 0 !important;
    border-bottom: 1px solid #e9ecef !important;
}

.mp-subtotal-title {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #333 !important;
    text-align: left !important;
}

.mp-subtotal-toggle-details {
    background: transparent !important;
    border: none !important;
    color: #ff6210 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 8px !important;
    transition: all 0.2s ease !important;
}

.mp-subtotal-toggle-details:hover {
    color: #e55a00 !important;
}

.mp-subtotal-toggle-details .toggle-icon {
    transition: transform 0.2s ease !important;
}

.mp-subtotal-toggle-details.expanded .toggle-icon {
    transform: rotate(180deg) !important;
}

.mp-subtotal-details {
    margin-top: 10px !important;
}

.mp-subtotal-items {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mp-subtotal-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 2px 0 !important;
    border-bottom: 1px solid #f8f9fa !important;
}

.mp-subtotal-item:last-child {
    border-bottom: none !important;
}

.mp-subtotal-label {
    font-size: 14px !important;
    color: #666 !important;
    flex: 1 !important;
}

.mp-subtotal-value {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #333 !important;
    text-align: right !important;
    min-width: 80px !important;
}

.mp-subtotal-total {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 2px solid #ff6210 !important;
}

.mp-subtotal-total-label {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

.mp-subtotal-total-value {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #ff6210 !important;
}

.mp-subtotal-disclaimer {
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
    font-size: 11px !important;
    color: #999 !important;
    text-align: center !important;
    font-style: italic !important;
}

