/* public/frontend/css/skins/menu-card.css */

.custom-menu-card {
    border: none;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #ffffff;
    height: 100%;
}

.custom-menu-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.custom-menu-card .card-body {
    padding: 10px;
}

.custom-menu-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.30rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.custom-menu-card .card-title i {
    color: #00A63E;
    background: #e6f6eb;
    padding: 8px;
    border-radius: 8px;
    font-size: 1rem;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-card-list-item {
    display: flex;
    align-items: center;
    padding: 3px 15px;
    margin-bottom: 8px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-card-list-item:last-child {
    margin-bottom: 0;
}

.menu-card-list-item:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.menu-card-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00A63E 0%, #008532 100%);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(0, 166, 62, 0.4);
    flex-shrink: 0;
}

.menu-card-list-item:hover .menu-card-bullet {
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(0, 166, 62, 0.15);
}

.menu-card-list-link {
    text-decoration: none;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    flex: 1;
    display: block;
}

.menu-card-list-item:hover .menu-card-list-link {
    color: #00A63E;
}
