/* Mega Menu Styling */
.header .mega-menu-dropdown .dropdown-menu.mega-menu {
    width: 100%;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 30px 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border: none !important;
    border-top: 3px solid #DC143C !important;
    background: white !important;
    margin-top: 0 !important;
}

.header .mega-menu-item {
    display: block !important;
    text-decoration: none !important;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.header .mega-menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
}

.header .mega-menu-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.header .mega-menu-item:hover .mega-menu-image img {
    transform: scale(1.1);
}

.header .mega-menu-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
}

.header .mega-menu-title {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: #222;
    background: white;
    transition: all 0.3s ease;
}

.header .mega-menu-item:hover .mega-menu-title {
    background: #DC143C;
    color: white;
}

.header .mega-menu-item.mega-menu-all {
    border: 2px dashed #DC143C;
}

.header .mega-menu-item.mega-menu-all .mega-menu-placeholder {
    background: rgba(220, 20, 60, 0.05);
}
