:root {
    --primary: #A2B518;
    --primary-hover: #7A8C0E;
    --accent: #C9A96E;
    --dark: #1F383D;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --bg-warm: #FAFAFA;
    --white: #FFFFFF;
}
.restaurants-hero {
    position: relative;
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, var(--dark) 0%, #16213E 50%, #0F3460 100%);
    text-align: center;
    overflow: hidden;
}
.restaurants-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(162,181,24,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.restaurants-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.restaurants-hero .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeIn 0.8s 0.2s ease-out forwards;
}
.restaurants-hero .hero-label i {
    font-size: 0.6rem;
}
.restaurants-hero .hero-title {
    font-family: 'Lora', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: heroSlideUp 0.8s 0.35s ease-out forwards;
}
.restaurants-hero .hero-title span {
    color: var(--accent);
}
.restaurants-hero .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    animation: heroSlideUp 0.8s 0.5s ease-out forwards;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.restaurants-section-v3 {
    padding: 5rem 0 6rem;
    background-color: var(--bg-warm);
}
.restaurants-container-v3 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.restaurants-title-v3,
.restaurants-subtitle-v3 {
    display: none;
}
.restaurants-list-v3 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.restaurant-item-card-v3 {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.6s ease-out forwards;
}
@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.restaurant-item-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 20px 50px rgba(0,0,0,0.1);
}
.card-image-wrapper-v3 {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background-color: #E8EDF2;
}
.card-image-wrapper-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.06), transparent);
    pointer-events: none;
}
.card-image-wrapper-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}
.restaurant-item-card-v3:hover .card-image-wrapper-v3 img.lightbox-trigger {
    transform: scale(1.06);
}
.card-content-wrapper-v3 {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-title-v3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.card-cuisine-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: linear-gradient(135deg, rgba(162,181,24,0.12), rgba(162,181,24,0.06));
    color: var(--primary-hover);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(162,181,24,0.2);
    margin-bottom: 1rem;
    width: fit-content;
}
.card-cuisine-badge i {
    font-size: 0.7rem;
    color: var(--accent);
}
.card-info-line {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65em;
    line-height: 1.5;
}
.card-info-line i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.card-info-line a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s ease;
}
.card-info-line a:hover {
    color: var(--accent);
}
.card-description-v3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0.8rem 0 1.5rem;
}
.card-description-v3 p {
    margin-bottom: 0.5em;
}
.card-description-v3 p:last-child {
    margin-bottom: 0;
}
.card-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border: none;
    margin: 0 0 1.25rem;
    border-radius: 2px;
}
.card-actions-v3 {
    margin-top: auto;
    padding-top: 0.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.card-actions-v3 .btn-restaurant-action-v3 {
    flex: 1;
    justify-content: center;
}
.btn-restaurant-action-v3 {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.btn-restaurant-action-v3:first-child {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-restaurant-action-v3:first-child:hover {
    background: #2D2D4E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31,56,61,0.3);
}
.btn-restaurant-action-v3:last-child {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}
.btn-restaurant-action-v3:last-child:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
#loading-message {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    padding: 3rem;
    grid-column: 1 / -1;
}
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.94);
    align-items: center;
    justify-content: center;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: color 0.3s ease;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
    text-decoration: none;
}
@media (max-width: 992px) {
    .restaurants-list-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .restaurants-hero {
        padding: 6rem 1.5rem 3.5rem;
    }
    .restaurants-hero .hero-title {
        font-size: 2.2rem;
    }
    .restaurants-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .restaurants-section-v3 {
        padding: 3rem 0 4rem;
    }
    .restaurants-list-v3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .card-image-wrapper-v3 {
        height: 220px;
    }
    .card-content-wrapper-v3 {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .restaurants-hero .hero-title {
        font-size: 1.8rem;
    }
    .restaurants-hero .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .card-image-wrapper-v3 {
        height: 200px;
    }
    .card-actions-v3 {
        flex-direction: column;
    }
    .btn-restaurant-action-v3 {
        width: 100%;
        justify-content: center;
    }
}
