/* Winter's Spells - Enhanced Header Styles */

.mmenu-item--mega {
    vertical-align: middle !important;
}

@media (min-width: 1025px) {
    .mobilemenu {
        display: block !important;
    }
}

/* Sticky Header Enhancement */
.hdr-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hdr-content-sticky {
    background: rgba(13, 13, 18, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--ws-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hdr-topline {
    background: #09090D !important;
    color: var(--ws-text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--ws-border);
}

.logo img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.2)) !important;
    max-height: 70px !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.4)) !important;
}

/* Navigation hover effects */
.mmenu>li>a {
    position: relative;
    transition: all 0.3s ease;
    padding: 25px 20px !important;
}

.mmenu>li>a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ws-gold);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--ws-gold);
}

.mmenu>li>a:hover::after {
    width: 60%;
}

/* Search button enhancement */
.header-search-button {
    transition: all 0.3s ease;
}

.header-search-button:hover {
    background: rgba(168, 85, 247, 0.15) !important;
    border-radius: 14px;
    transform: translateY(-2px);
}

/* Minicart badge */
.minicart-qty {
    background: var(--ws-gold) !important;
    color: #000 !important;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}