/**
 * Frontend City Price Selector
 * Phase 6B
 */

.m77-city-price-selector {
    max-width: 500px;
    margin: 20px 0;
    font-family: inherit;
}

/* City Selector */
.m77-city-selector-wrap {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.m77-selector-row {
    flex: 1;
    min-width: 200px;
}

.m77-selector-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.m77-fe-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.m77-fe-select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.m77-fe-select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Price Breakdown */
.m77-price-breakdown {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
}

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

.m77-price-row:last-child {
    border-bottom: none;
}

.m77-price-label {
    font-size: 14px;
    color: #444;
}

.m77-tax-info {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.m77-price-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: right;
}

/* Ex-showroom row */
.m77-price-exshowroom {
    background: #fff;
    margin: -20px -20px 10px -20px;
    padding: 15px 20px;
    border-radius: 6px 6px 0 0;
    border-bottom: 2px solid #e0e0e0;
}

.m77-price-exshowroom .m77-price-label {
    font-weight: 600;
    color: #333;
}

.m77-price-exshowroom .m77-price-value {
    font-size: 16px;
    color: #0073aa;
}

/* Tax rows */
.m77-price-tax {
    background: transparent;
}

.m77-price-tax .m77-price-label {
    color: #666;
}

/* Total row */
.m77-price-total {
    background: #333;
    color: #fff;
    margin: 10px -20px -20px -20px;
    padding: 15px 20px;
    border-radius: 0 0 6px 6px;
}

.m77-price-total .m77-price-label {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.m77-price-total .m77-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
}

/* Placeholder */
.m77-price-placeholder {
    text-align: center;
    padding: 30px 20px;
    color: #888;
}

.m77-price-placeholder p {
    margin: 0;
    font-size: 14px;
}

/* Error message */
.m77-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .m77-city-selector-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .m77-selector-row {
        min-width: 100%;
    }

    .m77-price-breakdown {
        padding: 15px;
    }

    .m77-price-exshowroom {
        margin: -15px -15px 10px -15px;
        padding: 12px 15px;
    }

    .m77-price-total {
        margin: 10px -15px -15px -15px;
        padding: 12px 15px;
    }

    .m77-price-total .m77-price-value {
        font-size: 18px;
    }
}
