.tyovalo-header-container {
    width: 100%;
    padding: 12px 24px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.tyovalo-header-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.tyovalo-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.tyovalo-logo-box {
    width: 38px;
    height: 38px;
    background-color: #111111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tyovalo-logo-dot {
    width: 12px;
    height: 12px;
    background-color: #e05a26;
    border-radius: 50%;
}

.tyovalo-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
}

.tyovalo-logo-accent {
    color: #e05a26;
}

/* Nav Menu */
.tyovalo-nav {
    display: flex;
    align-items: center;
}

.tyovalo-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tyovalo-nav-list a {
    display: inline-block;
    padding: 8px 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
}

/* Actions */
.tyovalo-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tyovalo-cart {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid #e1dfda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
}

.tyovalo-cart-icon {
    width: 18px;
    height: 18px;
}

.tyovalo-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #e05a26;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-sizing: border-box;
}

.tyovalo-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #111111;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: opacity 0.2s ease-in-out;
}

.tyovalo-cta:hover {
    opacity: 0.9;
}

/* Mobile Toggle */
.tyovalo-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.tyovalo-mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: #111111;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Styling */
@media (max-width: 991px) {
    .tyovalo-mobile-toggle {
        display: flex;
    }

    .tyovalo-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f9f8f6;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-radius: 12px;
        z-index: 99;
    }

    .tyovalo-nav.is-open {
        display: block;
    }

    .tyovalo-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tyovalo-nav-list a {
        display: block;
        text-align: center;
    }
}
