@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
}

.language-selector {
    text-align: center;
}

.language-selector select {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background-color: white;
    cursor: pointer;
}
.rating-stars {
    color: #fbbf24;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.cuisine-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #f3f4f6;
    color: #4b5563;
}

/* Restaurant details page styles */
.restaurant-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.restaurant-gallery img {
    border-radius: 8px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.restaurant-gallery img:hover {
    transform: scale(1.05);
}

.menu-section {
    margin-top: 2rem;
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.menu-item-name {
    font-weight: 600;
}

.menu-item-price {
    color: #f59e0b;
    font-weight: 600;
}

.menu-item-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* Animation for loading cards */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.loading-card {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.menu-item-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.add-to-cart {
    transition: background-color 0.2s;
}
.add-to-cart:hover {
    background-color: #d97706;
}

/* Cart styles */
.cart-item-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo-section {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 4rem;
    background-color: #f8fafc;
}
