/* ── Site Header FSE Styles ─────────────────────────────────────── */
/* Add to child theme's style.css or a dedicated header-footer.css  */

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background-color: var(--wp--preset--color--base, #ffffff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.site-header__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding: 0.75rem 1.5rem;
}

.site-header__logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* Navigation ─────────────────────────────────────────────────────── */
.site-header__nav .wp-block-navigation__container {
    gap: 1.75rem;
}

.site-header__nav a {
    font-family: var(--wp--preset--font-family--body, sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wp--preset--color--contrast, #111827);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
    color: var(--wp--preset--color--primary, #2E89CE);
}

/* Utility Icons ─────────────────────────────────────────────────── */
.site-header__utilities {
    gap: 1rem;
}

/* Language Switcher */
.site-header__lang-switcher {
    font-size: 0.85rem;
}

/* Cart Icon */
.site-header__cart .wc-block-mini-cart__button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--wp--preset--color--contrast, #111827);
}

/* Mobile: hamburger via WP core overlay */
@media (max-width: 768px) {
    .site-header__nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
        display: none;
    }
}

/* ── Site Footer FSE Styles ─────────────────────────────────────── */

.site-footer {
    background-color: var(--wp--preset--color--contrast, #111827);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(3rem, 5vw, 5rem) 1.5rem 1.5rem;
}

.site-footer__cols {
    max-width: 1280px;
    margin-inline: auto;
}

.site-footer__heading {
    font-family: var(--wp--preset--font-family--heading, serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.15s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.site-footer__nav .wp-block-navigation__container {
    flex-direction: column;
    gap: 0;
}

.site-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}