/*
Theme Name: GuiaZona Theme
Theme URI: https://guiazona.com.ve/
Author: GuiaZona
Description: Tema propio de GuiaZona. Base inicial para migración progresiva desde Elementor.
Version: 0.1.0-alpha
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: guiazona-theme
*/

/*
|--------------------------------------------------------------------------
| SECCIÓN: ESTILOS BASE
|--------------------------------------------------------------------------
| Responsabilidad: estilos globales mínimos del tema.
| Límites: no contiene estilos de Search, negocios, horarios o reseñas.
| Dependencias: WordPress.
*/
:root {
    --gz-color-primary: #0f766e;
    --gz-color-accent: #6f3dff;
    --gz-color-text: #1f2937;
    --gz-color-muted: #6b7280;
    --gz-color-border: #e5e7eb;
    --gz-color-surface: #ffffff;
    --gz-color-background: #f8fafc;
    --gz-container: 1200px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--gz-color-text);
    background: var(--gz-color-background);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.gz-site-container { width: min(100% - 32px, var(--gz-container)); margin-inline: auto; }
.gz-site-main { min-height: 50vh; }

/*
|--------------------------------------------------------------------------
| SECCIÓN: AUTH MODAL
|--------------------------------------------------------------------------
| Responsabilidad: presentación responsive del modal de autenticación.
| Límites: no contiene lógica de autenticación.
| Dependencias: componente auth-modal.php y AuthForm del plugin.
*/
.gz-auth-modal[hidden] {
    display: none;
}

.gz-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gz-auth-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(4px);
}

.gz-auth-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--gz-color-surface);
    border: 1px solid var(--gz-color-border);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
    padding: 32px;
}

.gz-auth-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--gz-color-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.gz-auth-modal__close:hover {
    background: var(--gz-color-background);
    color: var(--gz-color-text);
}

.gz-auth-modal__header {
    padding-right: 42px;
    margin-bottom: 24px;
}

.gz-auth-modal__title {
    margin: 0 0 6px;
    color: var(--gz-color-text);
    font-size: 26px;
    line-height: 1.25;
}

.gz-auth-modal__subtitle {
    margin: 0;
    color: var(--gz-color-muted);
    font-size: 15px;
}

.gz-auth-modal__body {
    width: 100%;
}

/*
|--------------------------------------------------------------------------
| SECCIÓN: AUTH MODAL — BLOQUEO DE SCROLL
|--------------------------------------------------------------------------
*/
html.gz-auth-modal-open,
body.gz-auth-modal-open {
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| SECCIÓN: AUTH MODAL — RESPONSIVE
|--------------------------------------------------------------------------
*/
@media (max-width: 640px) {
    .gz-auth-modal {
        align-items: flex-end;
        padding: 0;
    }

    .gz-auth-modal__dialog {
        width: 100%;
        max-height: 94vh;
        border-radius: 20px 20px 0 0;
        padding: 26px 20px 24px;
    }

    .gz-auth-modal__title {
        font-size: 22px;
    }

    .gz-site-account {
        gap: 6px;
    }

    .gz-site-account__button,
    .gz-site-account__link {
        min-height: 38px;
        padding: 7px 10px;
        font-size: 14px;
    }
}

/**
 * ============================================================
 * SECCIÓN: DASHBOARD DE CUENTA
 * Responsabilidad: estilos visuales del área Mi cuenta.
 * Límites: no contiene lógica de negocio.
 * ============================================================
 */

.gz-account-dashboard {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
    width: 100%;
    margin: 32px 0 48px;
    align-items: stretch;
}

/**
 * SECCIÓN: SIDEBAR
 */

.gz-account-dashboard__sidebar {
    display: flex;
    flex-direction: column;
    min-height: 620px;
    padding: 22px 16px;
    border: 1px solid var(--gz-color-border);
    border-radius: 20px;
    background: var(--gz-color-surface);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.gz-account-dashboard__brand {
    padding: 4px 10px 22px;
    border-bottom: 1px solid var(--gz-color-border);
}

.gz-account-dashboard__brand-name {
    color: var(--gz-color-primary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gz-account-dashboard__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 10px;
    border-bottom: 1px solid var(--gz-color-border);
}

.gz-account-dashboard__avatar {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.1);
    color: var(--gz-color-primary);
    font-size: 16px;
    font-weight: 800;
}

.gz-account-dashboard__user-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.gz-account-dashboard__user-info strong {
    overflow: hidden;
    color: var(--gz-color-text);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gz-account-dashboard__user-info span {
    color: var(--gz-color-muted);
    font-size: 12px;
}

.gz-account-dashboard__menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
}

.gz-account-dashboard__menu-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--gz-color-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.gz-account-dashboard__menu-item:hover {
    background: var(--gz-color-background);
    color: var(--gz-color-primary);
}

.gz-account-dashboard__menu-item--active {
    background: rgba(15, 118, 110, 0.09);
    color: var(--gz-color-primary);
}

.gz-account-dashboard__menu-icon {
    display: inline-flex;
    width: 22px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}

.gz-account-dashboard__sidebar-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--gz-color-border);
}

.gz-account-dashboard__menu-item--logout {
    color: #b42318;
}

.gz-account-dashboard__menu-item--logout:hover {
    background: #fef3f2;
    color: #b42318;
}

/**
 * SECCIÓN: CONTENIDO PRINCIPAL
 */

.gz-account-dashboard__main {
    min-width: 0;
}

.gz-account-dashboard__main-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--gz-color-border);
    border-radius: 20px;
    background: var(--gz-color-surface);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.gz-account-dashboard__eyebrow {
    margin: 0 0 6px;
    color: var(--gz-color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gz-account-dashboard__title {
    margin: 0 0 8px;
    color: var(--gz-color-text);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
}

.gz-account-dashboard__description {
    margin: 0;
    color: var(--gz-color-muted);
    font-size: 16px;
}

.gz-account-dashboard__role {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 36px;
    padding: 7px 14px;
    border: 1px solid var(--gz-color-border);
    border-radius: 999px;
    background: var(--gz-color-background);
    color: var(--gz-color-text);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.gz-account-dashboard__content {
    min-height: 400px;
    padding: 32px;
    border: 1px solid var(--gz-color-border);
    border-radius: 20px;
    background: var(--gz-color-surface);
}

.gz-account-dashboard__welcome h2 {
    margin: 0 0 8px;
    color: var(--gz-color-text);
    font-size: 24px;
}

.gz-account-dashboard__welcome p {
    margin: 0;
    color: var(--gz-color-muted);
}

/**
 * SECCIÓN: RESPONSIVE
 */

@media (max-width: 900px) {
    .gz-account-dashboard {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 16px;
    }

    .gz-account-dashboard__sidebar {
        padding-inline: 12px;
    }

    .gz-account-dashboard__main-header,
    .gz-account-dashboard__content {
        padding: 24px;
    }
}

@media (max-width: 700px) {
    .gz-account-dashboard {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px 0 32px;
    }

    .gz-account-dashboard__sidebar {
        min-height: auto;
        padding: 16px;
        border-radius: 16px;
    }

    .gz-account-dashboard__brand {
        padding-bottom: 16px;
    }

    .gz-account-dashboard__user {
        padding: 16px 8px;
    }

    .gz-account-dashboard__menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        padding-top: 12px;
    }

    .gz-account-dashboard__sidebar-footer {
        margin-top: 12px;
    }

    .gz-account-dashboard__main-header {
        flex-direction: column;
        padding: 24px;
        border-radius: 16px;
    }

    .gz-account-dashboard__content {
        min-height: 300px;
        padding: 24px;
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .gz-account-dashboard__menu {
        grid-template-columns: 1fr;
    }
}

/**
 * ============================================================
 * SECCIÓN: HEADER GLOBAL
 * Responsabilidad: presentación visual del Header del Theme.
 * Límites: no contiene lógica de navegación, autenticación
 *          ni búsqueda.
 *
 * Estructura real del markup (inc/components/site-header.php):
 * <header class="gz-site-header">
 *   <div class="gz-site-header__inner">
 *     <div class="gz-site-header__brand">...</div>
 *     <div class="gz-site-header__search">...</div>   (solo páginas internas)
 *     <nav class="gz-site-navigation">...</nav>
 *     <div class="gz-site-account">...</div>
 *   </div>
 * </header>
 *
 * Distribución:
 * - Logo (brand) siempre a la izquierda.
 * - Buscador (si existe), navegación y acciones agrupados
 *   y alineados a la derecha, pegados entre sí.
 * ============================================================
 */

.gz-site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid var(--gz-color-border);
    background: rgba(255, 255, 255, 0.97);
}

.gz-site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    width: 100%;
    box-sizing: border-box;
    padding-inline: 40px;
}

/**
 * ------------------------------------------------------------
 * SUBSECCIÓN: MARCA / LOGO — siempre a la izquierda
 * ------------------------------------------------------------
 */

.gz-site-header__brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin-right: auto; /* empuja todo lo demás hacia la derecha */
}

.gz-site-brand {
    display: inline-flex;
    align-items: center;
    color: var(--gz-color-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.gz-site-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.gz-site-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 48px;
    object-fit: contain;
}

/**
 * ------------------------------------------------------------
 * SUBSECCIÓN: BUSCADOR INTERNO (solo páginas internas)
 * ------------------------------------------------------------
 */

.gz-site-header__search {
    flex: 0 1 340px;
    width: 340px;
    max-width: 340px;
    min-width: 0;
}

.gz-site-header__search .gz-home-search {
    width: 100%;
    margin: 0;
}

.gz-site-header__search .gz-home-search-grid {
    width: 100%;
    box-sizing: border-box;
}

/* Versión más delgada del buscador dentro del header.
   Los campos y el botón del buscador pertenecen a otro
   componente (shortcode [guiazona_home_search]); aquí solo
   se reduce su altura/padding sin tocar el ancho. */
.gz-site-header__search input[type="text"],
.gz-site-header__search input[type="search"],
.gz-site-header__search button {
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}

/**
 * ------------------------------------------------------------
 * SUBSECCIÓN: HEADER INTERNO — buscador centrado
 * En páginas internas el header pasa a una grilla de 3
 * columnas (marca / buscador / grupo derecho) para que el
 * buscador quede centrado sin importar el ancho del logo
 * ni el del grupo de la derecha.
 * ------------------------------------------------------------
 */

.gz-site-header--inner .gz-site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
}

.gz-site-header--inner .gz-site-header__brand {
    grid-column: 1;
    justify-self: start;
    margin-right: 0;
}

.gz-site-header--inner .gz-site-header__search {
    grid-column: 2;
    justify-self: center;
}

/* Grupo derecho: navegación + acciones de cuenta juntos */
.gz-site-header__right {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 24px;
}

.gz-site-header--inner .gz-site-header__right {
    grid-column: 3;
    justify-self: end;
}

/**
 * ------------------------------------------------------------
 * SUBSECCIÓN: NAVEGACIÓN — "Guías de uso"
 * ------------------------------------------------------------
 */

.gz-site-navigation {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

/* En portada no hay buscador: la navegación es la primera
   pieza del grupo derecho, así que ella empuja el resto. */
.gz-site-header--home .gz-site-navigation {
    margin-left: auto;
}

.gz-site-navigation__dropdown {
    position: relative;
}

.gz-site-navigation__dropdown summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 8px 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--gz-color-text);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    white-space: nowrap;
}

.gz-site-navigation__dropdown summary::-webkit-details-marker {
    display: none;
}

.gz-site-navigation__dropdown summary::after {
    content: "⌄";
    font-size: 13px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.gz-site-navigation__dropdown[open] summary::after {
    transform: rotate(180deg);
}

.gz-site-navigation__dropdown summary:hover {
    color: var(--gz-color-accent);
}

.gz-site-navigation__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    width: 250px;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--gz-color-border);
    border-radius: 14px;
    background: var(--gz-color-surface);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.gz-site-navigation__dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    box-sizing: border-box;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--gz-color-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.gz-site-navigation__dropdown-menu a:hover {
    background: #f5f3ff;
    color: var(--gz-color-accent);
}

.gz-site-navigation__icon {
    display: inline-flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    width: 24px;
    margin-right: 4px;
    color: var(--gz-color-accent);
    font-size: 16px;
    font-weight: 700;
}

/**
 * ------------------------------------------------------------
 * SUBSECCIÓN: ACCIONES DE CUENTA
 * ------------------------------------------------------------
 */

.gz-site-account {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.gz-site-account__button,
.gz-site-account__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--gz-color-border);
    border-radius: 10px;
    background: var(--gz-color-surface);
    color: var(--gz-color-text);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gz-site-account__button:hover,
.gz-site-account__link:hover {
    border-color: var(--gz-color-accent);
    color: var(--gz-color-accent);
}

.gz-site-account__button--register {
    border-color: var(--gz-color-accent);
    background: var(--gz-color-accent);
    color: #ffffff;
}

.gz-site-account__button--register:hover {
    border-color: #5d2fe0;
    background: #5d2fe0;
    color: #ffffff;
}

/* Añadir negocio: siempre la última acción del grupo derecho */
.gz-site-account__create {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 99;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--gz-color-accent);
    border-radius: 12px;
    background: var(--gz-color-accent);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(111, 61, 255, 0.18);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gz-site-account__create:hover {
    border-color: #5d2fe0;
    background: #5d2fe0;
    color: #ffffff;
}

/**
 * ------------------------------------------------------------
 * SUBSECCIÓN: RESPONSIVE
 * ------------------------------------------------------------
 */

@media (max-width: 1250px) {
    .gz-site-header__inner {
        padding-inline: 28px;
        gap: 16px;
    }

    .gz-site-header__search {
        flex-basis: 300px;
        width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 1050px) {
    .gz-site-header__inner {
        flex-wrap: wrap;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    /* Por debajo de 1050px el header interno vuelve a flex-wrap:
       marca + grupo derecho en la fila superior, buscador debajo
       ocupando todo el ancho. */
    .gz-site-header--inner .gz-site-header__inner {
        display: flex;
    }

    .gz-site-header--inner .gz-site-header__brand {
        margin-right: auto;
    }

    .gz-site-header--inner .gz-site-header__right {
        margin-left: auto;
    }

    .gz-site-header__search {
        order: 3;
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
        margin-top: 8px;
    }
}

@media (max-width: 700px) {
    .gz-site-header__inner {
        min-height: 64px;
        padding: 10px 16px;
        gap: 8px;
        flex-wrap: wrap;
    }

    /* Logo y grupo derecho no se encogen: así se quedan juntos
       en la misma línea y solo el buscador baja a la suya. */
    .gz-site-header__brand,
    .gz-site-header__right {
        flex-shrink: 0;
    }

    .gz-site-brand .custom-logo {
        max-width: 70px;
        max-height: 21px;
    }

    .gz-site-navigation {
        display: none;
    }

    /* El buscador ya no se oculta: se apila debajo del header
       (misma regla que hereda de la query de 1050px: order 3,
       ancho completo, margen superior). */
    .gz-site-header__search {
        margin-top: 6px;
    }

    .gz-site-account {
        margin-left: auto;
        gap: 6px;
    }

    .gz-site-account__button,
    .gz-site-account__link,
    .gz-site-account__create {
        min-height: 38px;
        padding: 7px 9px;
        font-size: 11px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .gz-site-header__inner {
        padding-inline: 12px;
    }

    .gz-site-brand .custom-logo {
        max-width: 59px;
        max-height: 18px;
    }

    .gz-site-account {
        gap: 4px;
    }

    .gz-site-account__button,
    .gz-site-account__link,
    .gz-site-account__create {
        min-height: 36px;
        padding: 6px 7px;
        font-size: 10px;
    }
}

/* =========================================================
   SECCIÓN SINGLE NEGOCIO
   GuiaZona — estructura visual inicial
   ========================================================= */

.gz-business-single {
    --gz-single-max-width: 1200px;
    --gz-single-radius: 18px;
    --gz-single-border: #e8e8e8;
    --gz-single-text: #171717;
    --gz-single-muted: #6b7280;
    --gz-single-accent: #66E9B9;
    background: #fff;
    color: var(--gz-single-text);
}

/* SECCIÓN: CONTENEDOR */

.gz-business-container {
    width: min(100% - 40px, var(--gz-single-max-width));
    margin-inline: auto;
}


/* SECCIÓN: GALERÍA */

.gz-business-gallery {
    width: 100%;
    position: relative;
    background: #f3f4f6;
    overflow: hidden;
}

.gz-business-gallery__featured {
    width: 100%;
    height: min(56vw, 620px);
    min-height: 360px;
    overflow: hidden;
}

.gz-business-gallery__featured img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gz-business-gallery__placeholder {
    width: 100%;
    height: min(56vw, 620px);
    min-height: 360px;
    background: #f3f4f6;
}

.gz-business-gallery__thumbs {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}

.gz-business-gallery__thumb {
    width: 76px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.9);
    box-shadow: 0 4px 16px rgba(0,0,0,.14);
}

.gz-business-gallery__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* SECCIÓN: CABECERA */

.gz-business-header {
    padding: 32px 0 28px;
    border-bottom: 1px solid var(--gz-single-border);
}

.gz-business-header__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.gz-business-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.gz-business-badge--premium {
    background: #171717;
    color: #fff;
}

.gz-business-badge--sponsor {
    background: var(--gz-single-accent);
    color: #111;
}

.gz-business-category {
    margin-bottom: 7px;
    color: var(--gz-single-muted);
    font-size: 14px;
    font-weight: 600;
}

.gz-business-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--gz-single-text);
}

.gz-business-rating-placeholder {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--gz-single-muted);
    font-size: 14px;
}

.gz-business-rating-placeholder span:first-child {
    color: #111;
    font-size: 16px;
}


/* SECCIÓN: LAYOUT */

.gz-business-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 56px;
    padding-top: 42px;
    padding-bottom: 80px;
}

.gz-business-main {
    min-width: 0;
}


/* SECCIÓN: ZONAS */

.gz-business-zone {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid var(--gz-single-border);
}

.gz-business-zone__heading {
    margin-bottom: 20px;
}

.gz-business-zone__heading h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gz-single-text);
}

.gz-business-description {
    color: #404040;
    font-size: 16px;
    line-height: 1.75;
}

.gz-business-description p {
    margin: 0 0 14px;
}

.gz-business-description p:last-child {
    margin-bottom: 0;
}

.gz-business-location {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 26px;
    padding: 18px;
    border: 1px solid var(--gz-single-border);
    border-radius: 14px;
}

.gz-business-location strong,
.gz-business-location span {
    font-size: 14px;
}

.gz-business-location small {
    color: var(--gz-single-muted);
}


/* SECCIÓN: PLACEHOLDERS */

.gz-business-zone__placeholder {
    padding: 22px;
    border: 1px dashed #d7d7d7;
    border-radius: 14px;
    color: var(--gz-single-muted);
    font-size: 14px;
}


/* SECCIÓN: EXTRAS */

.gz-business-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.gz-business-extra {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 13px;
    border: 1px solid var(--gz-single-border);
    border-radius: 999px;
    background: #fafafa;
    color: #333;
    font-size: 13px;
}


/* SECCIÓN: CONTACTO */

.gz-business-contact {
    align-self: start;
    position: sticky;
    top: 100px;
}

.gz-business-contact__card {
    padding: 24px;
    border: 1px solid var(--gz-single-border);
    border-radius: var(--gz-single-radius);
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
}

.gz-business-contact__heading {
    margin-bottom: 18px;
}

.gz-business-contact__heading h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

.gz-business-contact__item,
.gz-business-contact__location {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 15px 0;
    border-top: 1px solid var(--gz-single-border);
    text-decoration: none;
}

.gz-business-contact__item span,
.gz-business-contact__location span {
    color: var(--gz-single-muted);
    font-size: 12px;
}

.gz-business-contact__item strong,
.gz-business-contact__location strong {
    color: var(--gz-single-text);
    font-size: 14px;
    line-height: 1.45;
}

.gz-business-contact__item:hover strong {
    text-decoration: underline;
}


/* SECCIÓN: RESPONSIVE */

@media (max-width: 900px) {

    .gz-business-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gz-business-contact {
        position: static;
        order: -1;
    }

    .gz-business-contact__card {
        box-shadow: none;
    }

}

@media (max-width: 640px) {

    .gz-business-container {
        width: min(100% - 28px, var(--gz-single-max-width));
    }

    .gz-business-gallery__featured,
    .gz-business-gallery__placeholder {
        height: 62vw;
        min-height: 240px;
    }

    .gz-business-gallery__thumbs {
        right: 14px;
        bottom: 14px;
    }

    .gz-business-gallery__thumb {
        width: 58px;
        height: 44px;
    }

    .gz-business-header {
        padding: 24px 0;
    }

    .gz-business-layout {
        padding-top: 28px;
        padding-bottom: 50px;
    }

    .gz-business-zone {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .gz-business-title {
        font-size: 32px;
    }

}
