.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.logo-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-box:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Restaurant Cards Section */
.restaurant-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.restaurant-card .logos-grid {
    height: 150px;
    background: #f8fafc;
    position: relative;
}

.restaurant-card .logo-box {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.restaurant-card .logo-box img {
    filter: none;
    opacity: 1;
    border-radius: 50%;
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.cuisine-types {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.delivery-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #4a5568;
}

.delivery-time {
    background: #f0fdf4;
    color: #166534;
    padding: 3px 8px;
    border-radius: 4px;
}

.delivery-fee {
    background: #eff6ff;
    color: #1e40af;
    padding: 3px 8px;
    border-radius: 4px;
}
.restaurant-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.logos-grid {
    height: 150px;
    background-color: #f8f9fa;
    padding: 20px;
}

.logo-box {
    max-width: 180px;
    max-height: 110px;
}

.logo-box img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cuisine-types {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

.delivery-info {
    color: #6c757d;
    font-size: 0.85rem;
}
