.open-menu-club {
    display: inline-block;
    cursor: pointer;
    background-color: #C8B100 !important;
    color: #fff !important;
    font-family: Manrope;
    height: auto;
    line-height: 19px;
    font-weight: 600;
    padding: 2px 7px 3px;
    border-radius: 50px;
    border: 1px solid #C8B100;
    text-decoration: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 7px;
}

.restaurant-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.restaurant-menu-modal {
    max-width: 1320px;
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    padding: 33px 35px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.restaurant-menu-modal .golf-popup-close {
    position: absolute;
    top: 30px;
    left: 30px;
}

.restaurant-menu-title {
    position: relative;
    margin-top: 0;
    margin-bottom: 20px;
    color: #0D5347;
    font-family: "Arial Rounded MT Bold";
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.69px;
    text-transform: uppercase;
    margin-left: 65px;
    width: fit-content;
}

.restaurant-menu-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #0D5347;
}

/* Contenu menu */
.restaurant-menu-content {
    margin-top: 35px;
}

/* Catégorie */
.restaurant-menu-category {
    margin-bottom: 35px;
}

.restaurant-menu-category:last-child {
    margin-bottom: 0;
}

.restaurant-menu-cat-title {
    color: #C8B100;
    font-family: Manrope;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.48px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E7EB;
}

/* Grille plats */
.restaurant-menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Plat */
.restaurant-menu-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #f9faf9;
    transition: box-shadow 0.2s ease;
}


/* Image plat */
.restaurant-menu-item-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
}

.restaurant-menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info plat */
.restaurant-menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.restaurant-menu-item-name {
    color: #0D5347;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.36px;
}

.restaurant-menu-item-price {
    color: #C8B100;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.restaurant-menu-item-desc {
    color: #666;
    font-family: Manrope;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .restaurant-menu-modal {
        padding: 25px 20px;
        margin: 20px auto;
        border-radius: 16px;
    }

    .restaurant-menu-title {
        font-size: 22px;
        margin-left: 55px;
    }

    .restaurant-menu-cat-title {
        font-size: 20px;
    }

    .restaurant-menu-items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .restaurant-menu-item-name {
        font-size: 16px;
    }

    .restaurant-menu-item-price {
        font-size: 16px;
    }
}
