/* ============================================
   SUPER SIMPLE MENU HOVER - DARK SHADOW + ZOOM + FLASH
   ============================================ */

/* Main Menu Items - Dark Shadow + Zoom + Flash on Hover */
.cat_bar > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

/* Flash Effect - Light Sweep */
.cat_bar > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.cat_bar > a:hover::before {
    left: 100%;
}

/* Dark Shadow + Zoom on Hover */
.cat_bar > a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Dropdown Menu */
.Cat_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 5px;
    display: none;
    z-index: 1000;
}

.cat_bar:hover .Cat_menu {
    display: block;
}

/* Subcategory Hover - Light Background */
.Cat_list a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.Cat_list a:hover {
    background-color: #f5f5f5;
}

/* Child Menu */
.child_menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    margin-left: 5px;
    display: none;
    z-index: 1001;
}

.Cat_list:hover .child_menu {
    display: block;
}

/* Child Menu Hover */
.child_main a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.child_main a:hover {
    background-color: #f5f5f5;
}