#forno-sticky-header_11bd5ea9 {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: top 0.4s ease-in-out;
    font-family: 'Inter', sans-serif;
}
#forno-sticky-header_11bd5ea9.is-visible {
    top: 0;
}
body.admin-bar #forno-sticky-header_11bd5ea9.is-visible {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar #forno-sticky-header_11bd5ea9.is-visible {
        top: 46px;
    }
}
.forno-sticky-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}
.forno-sticky-logo {
    font-weight: 800;
    font-size: 20px;
    color: #000;
}
.forno-sticky-nav {
    display: flex;
    gap: 24px;
}
.forno-sticky-nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.2s;
}
.forno-sticky-nav a:hover {
    color: #000;
}
.forno-sticky-cta {
    background-color: #FF8C00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.forno-sticky-cta:hover {
    background-color: #e07b00;
}