/* ==========================================================================
   Featured Dining Widget - Luxury Layout
   ========================================================================== */

.lavie-dining-section {
    background-color: #FFFBF4;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lavie-dining-header {
    margin-bottom: 50px;
    justify-content: center;
}

.lavie-dining-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0 30px;
    text-align: center;
}

/* Dining Card Styling */
.lavie-dining-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto; /* Let Swiper handle heights natively */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Inner Gallery Swiper */
.lavie-dining-gallery {
    height: 220px;
    width: 100%;
}

.lavie-dining-img-wrapper {
    width: 100%;
    height: 100%;
}

.lavie-dining-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Details Section */
.lavie-dining-details {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.lavie-dining-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lavie-dining-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.lavie-dining-logo h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #d4af37;
}

.lavie-dining-desc {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    flex-grow: 1;
}

/* Buttons and Actions */
.lavie-dining-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.lavie-btn-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #d4af37;
    transition: color 0.3s ease;
}

.lavie-btn-text:hover {
    color: #d4af37;
}

.lavie-btn-outline {
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4af37;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lavie-btn-outline:hover {
    background: #d4af37;
    color: #ffffff;
}

/* Footer / View All */
.lavie-dining-footer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.lavie-view-all-btn {
    width: auto;
    min-width: 180px;
    padding: 15px 40px;
}

/* Swiper Overrides to match Lavie Theme */
.lavie-dining-section .swiper-button-next,
.lavie-dining-section .swiper-button-prev {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: scale(0.7);
}

.lavie-dining-section .swiper-pagination-bullet {
    background-color: #d4af37;
    opacity: 0.5;
}

.lavie-dining-section .swiper-pagination-bullet-active {
    opacity: 1;
}

.lavie-global-swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    height: 40px;
}

.lavie-global-swiper-controls .swiper-button-next,
.lavie-global-swiper-controls .swiper-button-prev {
    position: static;
    color: #1a1a1a;
    text-shadow: none;
    margin: 0 20px;
}

.lavie-global-swiper-controls .swiper-pagination {
    position: static;
    width: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lavie-dining-header h2 {
        font-size: 1.8rem;
    }
    .lavie-dining-actions {
        flex-direction: column;
        gap: 15px;
    }
    .lavie-btn-outline {
        width: 100%;
        text-align: center;
    }
}