/*
Theme Name: Vehica Child
Theme URI: https://vehicatheme.com/
Author: TangibleDesign
Author URI: https://tangibledesign.net/
Description: Vehica
Template: vehica
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: translation-ready
Text Domain: vehica
*/

/* Teléfonos adicionales en header - texto blanco */
.vehica-top-bar__element a {
    color: white !important;
}

.vehica-top-bar__element span {
    color: white !important;
}

/* Espaciado entre iconos y texto */
.vehica-top-bar .vehica-top-bar__left i {
    margin-right: 5px;
}

/* Nombres de coches en mayúsculas */
.vehica-car-card__name {
    text-transform: uppercase !important;
}

.vehica-car-name {
    text-transform: uppercase !important;
}

/* Ocultar botón de calcular */
.vehica-car-card-row__calculate {
    display: none !important;
}

/* Estilos para popup de interés en coche */
.interes-coche-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interes-coche-popup-overlay.show {
    opacity: 1;
}

.interes-coche-popup-content {
    position: relative;
    background: white;
    max-width: 700px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.interes-coche-popup-overlay.show .interes-coche-popup-content {
    transform: scale(1);
}

.interes-coche-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 10000;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.interes-coche-popup-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.interes-coche-popup-inner {
    padding: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .interes-coche-popup-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .interes-coche-popup-inner {
        padding: 20px;
    }
    
    .interes-coche-popup-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
}