/* Sticky Header Styles */
.header__sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Wonder Hero Section Styles */
.wonder-hero-section {
    position: relative;
    padding: 0 !important;
    margin-top: 0 !important;
    overflow: hidden;
}

.wonder-hero-slide {
    position: relative;
    min-height: 500px;
    height: auto;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Clean Menu Styles */
.main__header {
    transition: all 0.3s ease;
    padding: 15px 0;
    width: 100%;
    z-index: 999;
}

.header__menu--link {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header__menu--link:hover {
    color: #f7a400;
}

.header__account--btn {
    position: relative;
    color: #333;
    padding: 5px;
}

.items__count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f7a400;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wonder-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.wonder-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5rem;
    max-width: 800px;
}

.wonder-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #f7a400; /* Tangerine color */
    text-transform: uppercase;
}

.wonder-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.wonder-hero-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.wonder-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 164, 0, 0.4);
}

@media (max-width: 768px) {
    .wonder-hero-slide {
        height: 400px;
    }
    .wonder-hero-content {
        padding-left: 1.5rem;
    }
    .wonder-hero-title {
        font-size: 2rem;
    }
}
