/* El Bodegón — Header (full-bleed: fondo y borde a todo el ancho, contenido centrado) */
.ebh {
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--eb-font-head, 'Montserrat', sans-serif);
    background: #fff;
}

/* ── Barra de contacto superior ─────────────────────────────── */
.ebh-top { background: var(--eb-ink, #1d1d1f); color: #fff; }
.ebh-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 24px;
    display: flex;
    gap: 28px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.ebh-top-link {
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--eb-font-body, 'Inter', sans-serif);
    font-size: 0.76rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}
.ebh-top-link i { color: var(--eb-yellow, #ffd200); }
.ebh-top-link:hover { color: #fff; }

/* ── Barra de navegación (full-bleed) ───────────────────────── */
.ebh-bar {
    background: #fff;
    border-bottom: 3px solid var(--eb-red, #db0b14);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.ebh-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ebh-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.ebh-logo img { height: 38px; width: auto; display: block; }

.ebh-menu {
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}
.ebh-menu a {
    display: inline-block;
    font-family: var(--eb-font-head, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a4a4a;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.ebh-menu a:hover { color: var(--eb-red, #db0b14); background: var(--eb-red-soft, #fdeaeb); }
.ebh-menu a.is-home { color: var(--eb-red, #db0b14); font-weight: 700; }
.ebh-menu a.is-cta {
    background: linear-gradient(135deg, var(--eb-red, #db0b14), var(--eb-red-dark, #a8090f));
    color: #fff;
    box-shadow: 0 4px 12px rgba(219, 11, 20, 0.25);
    margin-left: 6px;
}
.ebh-menu a.is-cta:hover { color: #fff; background: linear-gradient(135deg, var(--eb-red-dark, #a8090f), var(--eb-red, #db0b14)); transform: translateY(-1px); }

.ebh-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    color: var(--eb-red, #db0b14);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
}

@media (max-width: 920px) {
    .ebh-toggle { display: inline-flex; }
    .ebh-nav { flex-wrap: wrap; }
    .ebh-menu {
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--eb-ease, ease);
    }
    .ebh-menu.open { max-height: 600px; margin-top: 10px; margin-bottom: 6px; }
    .ebh-menu a { padding: 12px 14px; }
    .ebh-menu a.is-cta { text-align: center; margin: 4px 0 0; }
    .ebh-top-inner { justify-content: center; gap: 16px; }
}
