/*
	CSS personalizado para single RESTAURANTES
	Estilos compartidos en: style-single-common.css
*/

/*********************************** #rowSingleRestauranteContent **********************************/

#rowSingleRestauranteContent {
    padding: 80px 0;
}

#rowSingleRestauranteContent .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: left;
}

/* ---- Dos columnas: descripción + contacto ---- */

.divRestauranteColumns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.divRestauranteDesc {
    flex: 1 1 0;
    min-width: 0;
}

.divRestauranteContacto {
    flex: 0 0 240px;
    position: sticky;
    top: 120px;
}


/****************************************** RESPONSIVE ******************************************/

@media (max-width: 980px) {
    .divRestauranteColumns {
        flex-direction: column;
        gap: 40px;
    }

    .divRestauranteContacto {
        flex: none;
        width: 100%;
        position: static;
    }

    #rowSingleRestauranteContent .container {
        padding: 0 40px;
    }
}

@media (max-width: 580px) {
    #rowSingleRestauranteContent .container {
        padding: 0 20px;
    }
}

/********************************* FILTROS  **********************************/


/* ==========================================================================
   ESTILOS ADAPTADOS: FILTROS DE COMARCAS Y CATEGORÍAS
   ========================================================================== */

/* Forzar la tipografía Lato en los títulos de las tarjetas */
.escapada-card-textos h3,
.escapada-card-titulo,
.divTitulo {
    font-family: var(--font-family-normal) !important;
    /* Cambiado de Garamond a Lato */
    font-weight: 700 !important;
    /* Negrita rotunda y limpia */
    font-size: 24px !important;
    /* Mantiene el impacto de tamaño */
    line-height: 1.2 !important;
    /* Ajuste de interlineado idóneo */
    letter-spacing: -0.2px !important;
    /* Unificado con el estilo de Lato */
}

/* --- ENCABEZADO DEL BLOQUE (Planifica tu evento) --- */
/* Añade estas clases si tienes acceso al contenedor de los textos superiores */
.planifica-titulo,
#rowRestaurantesFeed h2,
.site-content h2 {
    font-family: var(--font-family-rowdies) !important;
    font-weight: 500 !important;
    font-size: 44px !important;
    color: #111111 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.5px !important;
    /* Mantiene el ancho compacto de las letras serif */
}

.planifica-subtitulo,
.site-content p {
    font-family: var(--font-family-normal) !important;
    font-size: 15px !important;
    color: #4B5563 !important;
    font-weight: 400 !important;
}


/* --- CONTENEDOR 1: COMARCAS --- */
.comarcas-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

/* Botones de comarca individuales */
.comarcas-filter .filter-btn {
    font-family: var(--font-family-normal) !important;
    /* Aplicada fuente Lato */
    background-color: #ffffff;
    color: #4B5563;
    border: 1px solid #D1D5DB;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
    outline: none;
}

.comarcas-filter .filter-btn:hover {
    border-color: var(--color-secundario-hex);
    color: var(--color-secundario-hex);
}

/* Estado activo exacto (Azul Purpúreo) */
.comarcas-filter .filter-btn.active {
    background-color: var(--color-secundario-hex) !important;
    border-color: var(--color-secundario-hex) !important;
    color: #ffffff !important;
}


/* --- CONTENEDOR 2: CATEGORÍAS --- */
.categorias-filter {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 15px;
}

/* Botones de categoría individuales (Texto plano sin forma de botón) */
.categorias-filter .cat-btn {
    font-family: var(--font-family-normal) !important;
    /* Aplicada fuente Lato */
    background: none;
    border: none;
    padding: 0 0 4px 0;
    margin: 0;
    font-size: 14px;
    color: #4B5563;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: none;
}

.categorias-filter .cat-btn:hover {
    color: #000000;
}

/* Estado activo exacto (Texto negro con subrayado grueso) */
.categorias-filter .cat-btn.active {
    color: #000000 !important;
    font-weight: 700 !important;
    /* Se ve más grueso como en tu imagen */
    border-bottom: 2px solid #000000 !important;
    background: none !important;
}