/* Grille des restaurants */
.annuairemada-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.restaurant-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.restaurant-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.restaurant-card-content {
    padding: 1.5rem;
}

.restaurant-card h3 {
    margin: 0 0 0.5rem 0;
}

.restaurant-card h3 a {
    color: #2d3748;
    text-decoration: none;
}

.restaurant-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.restaurant-quartier {
    color: #667eea;
    font-weight: 500;
    margin: 0.5rem 0;
}

.btn-voir {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.btn-voir:hover {
    color: #764ba2;
}

/* Page single restaurant */
.restaurant-single-header {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.restaurant-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.restaurant-info-overlay h1 {
    color: white;
    border: none;
    margin: 0 0 1rem 0;
}

.restaurant-rating-display {
    color: #ffd700;
    font-size: 1.5rem;
}

.restaurant-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .restaurant-layout {
        grid-template-columns: 1fr;
    }
}

.restaurant-main section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    margin-bottom: 2rem;
}

.restaurant-main h2 {
    color: #2d3748;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.restaurant-sidebar .info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    margin-bottom: 2rem;
}

.restaurant-sidebar h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.info-item strong {
    display: block;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

#restaurant-map {
    height: 300px;
    border-radius: 8px;
}