/* =====================================================
TENZO · PARQUE DE VEHÍCULOS
Diseño completo unificado
===================================================== */

.tenzo-coches-wrapper{
max-width:1380px;
margin:0 auto;
padding:50px 20px 60px;
width:100%;
}

/* TITULOS */

.tenzo-coches-wrapper .tenzo-coches-title{
font-size:40px;
font-weight:700;
margin-bottom:6px;
letter-spacing:-0.5px;
}

.tenzo-coches-wrapper .tenzo-coches-sub{
color:#6b7280;
margin-bottom:30px;
font-size:16px;
}


/* =================================
FILTROS PRINCIPALES (MODALIDAD)
================================= */

.tenzo-coches-wrapper .tenzo-filtros{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-bottom:22px;
}

.tenzo-coches-wrapper .tenzo-filtros a{
display:inline-block;
padding:10px 20px;
background:#f1f1f1;
border-radius:10px;
text-decoration:none;
font-weight:600;
color:#333;
transition:.18s ease;
border:1px solid #e4e4e4;
}

.tenzo-coches-wrapper .tenzo-filtros a:hover{
background:#ffd100;
color:#000;
border-color:#ffd100;
}

.tenzo-coches-wrapper .tenzo-filtros a.active{
background:#ffd100;
color:#000;
border-color:#ffd100;
box-shadow:0 4px 12px rgba(0,0,0,.15);
}


/* =================================
FILTROS SECUNDARIOS
================================= */

.tenzo-coches-wrapper .tenzo-filtros-secundarios{

display:flex;
align-items:center;
gap:10px;
width:100%;
margin-bottom:28px;
}

.tenzo-coches-wrapper .tenzo-filtros-secundarios select{

appearance:none;
-webkit-appearance:none;

width:auto;
min-width:180px;

padding:6px 14px;

border-radius:8px;
border:1px solid #e4e4e4;

background:#fff;

font-size:14px;
font-weight:500;

color:#333;

transition:.15s ease;

}

.tenzo-coches-wrapper .tenzo-filtros-secundarios select:hover{
border-color:#cfcfcf;
}

.tenzo-coches-wrapper .tenzo-filtros-secundarios select:focus{
outline:none;
border-color:#ffd100;
box-shadow:0 0 0 2px rgba(255,209,0,.25);
}

.tenzo-guia-wrapper{

margin-top:15px;
margin-bottom:10px;

}

.tenzo-guia-categorias{

margin-left:auto;

display:inline-flex;
align-items:center;

padding:10px 18px;

background:#0f2f3d;
color:#fff;

border-radius:6px;

font-size:14px;
font-weight:600;

text-decoration:none;

transition:.2s;

}

.tenzo-guia-categorias:hover{
background:#174a5d;
color:#ffd100;
}

/* =================================
GRID
================================= */

.tenzo-coches-wrapper .tenzo-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:32px;
width:100%;
min-height:200px;
}


/* =================================
TARJETA
================================= */

.tenzo-coches-wrapper .tenzo-card{
background:#ffffff;
border-radius:8px;
overflow:visible;
box-shadow:0 12px 30px rgba(0,0,0,.10);
transition:transform .25s ease, box-shadow .25s ease;
display:flex;
flex-direction:column;
position:relative;
}

.tenzo-coches-wrapper .tenzo-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.16);
}


/* IMAGEN */

.tenzo-coches-wrapper .tenzo-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}


/* TITULO */

.tenzo-coches-wrapper .tenzo-card h3{
font-size:20px;
font-weight:700;
margin:18px 18px 12px;
color:#d4a300;
line-height:1.25;
letter-spacing:-0.2px;
}


/* DATOS TECNICOS */

.tenzo-coches-wrapper .tenzo-meta{
padding:0 18px 22px;
font-size:15px;
color:#374151;
line-height:1.6;
margin-top:auto;
}

.tenzo-coches-wrapper .tenzo-meta span{
display:block;
margin-bottom:3px;
}


/* =================================
BADGES
================================= */

.tenzo-coches-wrapper .tenzo-badge{

position:absolute;

top:10px;

left:50%;

transform:translateX(-50%);

font-size:12px;

font-weight:600;

padding:5px 12px;

border-radius:20px;

white-space:nowrap;

z-index:5;

}

.tenzo-coches-wrapper .tenzo-badge.lanzamiento{
background:rgba(255,196,0,.95);
color:#111;
box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.tenzo-coches-wrapper .tenzo-badge.disponible{
background:rgba(46,204,113,.95);
color:#fff;
}

.tenzo-coches-wrapper .tenzo-badge.revision{
background:rgba(52,152,219,.95);
color:#fff;
}

.tenzo-coches-wrapper .tenzo-badge.no-disponible{
background:rgba(231,76,60,.95);
color:#fff;
}


/* =================================
LIGHTBOX
================================= */

.tenzo-coches-wrapper .tenzo-lightbox{
display:none;
position:fixed;
z-index:9999;
inset:0;
background-color:rgba(0,0,0,0.9);

display:flex;
align-items:center;
justify-content:center;
}

.tenzo-coches-wrapper .tenzo-lightbox-content{
max-width:90%;
max-height:90%;
border-radius:8px;
box-shadow:0 0 40px rgba(0,0,0,0.6);
cursor:default;
}

.tenzo-coches-wrapper .tenzo-lightbox-close{
position:absolute;
top:20px;
right:40px;
color:#fff;
font-size:42px;
font-weight:300;
cursor:pointer;
z-index:10000;
}

.tenzo-coches-wrapper .tenzo-lightbox-close:hover{
color:#f0c000;
}


/* =================================
RESPONSIVE
================================= */

@media (max-width:1400px){

.tenzo-coches-wrapper .tenzo-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media (max-width:950px){

.tenzo-coches-wrapper .tenzo-grid{
grid-template-columns:repeat(2,1fr);
}

.tenzo-coches-wrapper .tenzo-card img{
height:240px;
}

}

@media (max-width:520px){

.tenzo-coches-wrapper .tenzo-grid{
grid-template-columns:1fr;
}

.tenzo-coches-wrapper .tenzo-card img{
height:220px;
}

.tenzo-coches-wrapper .tenzo-coches-title{
font-size:32px;
}

.tenzo-coches-wrapper .tenzo-filtros-secundarios select{

background:#ffffff;
color:#333;
font-size:14px;
font-weight:500;
padding:10px 14px;
border-radius:8px;
border:1px solid #ddd;
width:100%;
appearance:auto;

}

}


/* =================================
MENSAJE SIN RESULTADOS
================================= */

.tenzo-coches-wrapper .tenzo-no-resultados{

display:none;

text-align:center;

padding:60px 20px;

font-size:18px;

color:#6b7280;

background:#fafafa;

border-radius:8px;

margin-top:30px;

}