/* Modern Menu Styles for 2025 */
.dcf_menu_wrap {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    max-width: 900px;
}

.dcf_menu_section {
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dcf_section_title {
    padding: 18px 20px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    color: #222;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
}

.dcf_section_title::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -1px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    border-radius: 2px;
}

.dcf_menu_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dcf_menu_item:last-child {
    border-bottom: none;
}

.dcf_menu_item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.dcf_menu_item i {
    color: #aaa;
    font-size: 14px;
}

.dcf_menu_item:hover i {
    color: #666;
    animation: dcf_bounce 0.5s;
}

@keyframes dcf_bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@media (max-width: 768px) {
    .dcf_menu_item {
        padding: 14px 16px;
    }
    
    .dcf_section_title {
        padding: 12px 16px;
        font-size: 16px;
    }
    .dcf_section_title::after {
        left: 16px;
    }
    .dcf_menu_item:hover {
        background-color: #fff;
        transform: translateX(0px);
    }
    .dcf_menu_item:hover i {
        color: #666;
    }
}