/**
 * Go4It Custom Pricing Module - CSS Styles
 */

/* Custom Pricing Info in Price Block */
.custom-pricing-info {
    margin-top: 10px;
    padding: 8px 0;
    border-top: 1px solid #e5e5e5;
}

.custom-price-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.custom-price-label {
    font-weight: 500;
    color: #555;
    margin-right: 10px;
    min-width: 150px;
}

.custom-price-value {
    font-weight: 600;
    color: #2ecc71;
    text-align: left;
}



/* Custom Pricing Section in Product Details */
.product-custom-pricing {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #007cba;
}

.product-custom-pricing .h6 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.custom-pricing-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-price-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.custom-price-detail:last-child {
    border-bottom: none;
}

.custom-price-detail .custom-price-label {
    font-weight: 500;
    color: #495057;
}

.custom-price-detail .custom-price-value {
    font-weight: 600;
    color: #28a745;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-price-item,
    .custom-price-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .custom-price-value {
        align-self: flex-end;
    }
} 