/* Custom Italian Style */
:root {
    --italian-red: #C8102E;
    --italian-green: #008C45;
    --italian-white: #F4F5F0;
    --dark-bg: #F5E6D3; /* Tuscan cream pastel */
    --dark-text: #5D4E37; /* Dark brown for contrast */
    --pastel-terracotta: #E8C4A8; /* Terracotta accent */
    --pastel-sage: #D4E5D7; /* Sage green */
    --gold: #d4af37; /* More metallic gold */
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--italian-white);
    color: #5D4E37; /* Dark brown */
    /* Prevent content jump for fixed header if we used it, but we use sticky */
}

/* Modern Navbar Styles - SOLID BACKGROUND ALWAYS (Default) */
.navbar-modern {
    background-color: #F5E6D3 !important; /* Tuscan cream pastel */
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent State (Only used on Homepage via PHP logic) */
.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 25px 0; /* Taller on hero for elegance */
}

/* White text for transparent navbar on hero */
.navbar-transparent .nav-link {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.navbar-transparent .nav-link:hover,
.navbar-transparent .nav-link.active {
    color: var(--gold) !important;
}

.navbar-transparent .navbar-brand {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Scrolled State (Restores solid background on Homepage) */
.navbar-modern.scrolled {
    background-color: #F5E6D3 !important;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

/* Black logo effect when scrolled */
.navbar-modern.scrolled .navbar-brand img,
.navbar-modern:not(.navbar-transparent) .navbar-brand img {
    filter: brightness(0);
    transition: filter 0.4s ease;
}

/* Normal logo on transparent navbar */
.navbar-transparent .navbar-brand img {
    filter: none;
    transition: filter 0.4s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--gold) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #5D4E37 !important; /* Dark brown for pastel background */
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Hover Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Customization */
.dropdown-menu-dark-custom {
    background-color: rgba(245, 230, 211, 0.98); /* Tuscan cream */
    border: 1px solid rgba(93, 78, 55, 0.1);
}

.dropdown-item {
    color: #5D4E37; /* Dark brown */
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: rgba(93, 78, 55, 0.1);
    color: var(--gold);
}

/* Buttons */
.btn-order-modern {
    background-color: var(--gold);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.btn-order-modern:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Rest of the CSS... */
/* Modern Hero Section - Site Colors */
.hero-section {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(232, 196, 168, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 229, 215, 0.3) 0%, transparent 40%),
        linear-gradient(160deg, #5D4E37 0%, #4a3f2d 30%, #3d3225 60%, #2d261c 100%);
    background-size: 200% 200%, 200% 200%, 150% 150%, 100% 100%;
    animation: heroGradientShift 12s ease infinite;
    color: white;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient keyframes */
@keyframes heroGradientShift {
    0% { background-position: 0% 50%, 100% 50%, 50% 100%, 0% 0%; }
    50% { background-position: 100% 50%, 0% 50%, 50% 80%, 0% 0%; }
    100% { background-position: 0% 50%, 100% 50%, 50% 100%, 0% 0%; }
}

/* Decorative floating shapes - gold accent */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: floatShape 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(232, 196, 168, 0.2);
    transform: rotate(45deg);
    animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    opacity: 0; /* For animation */
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px; /* Increased spacing below title */
    margin-top: 20px;    /* Added spacing above title */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 50px; /* Increased spacing below subtitle */
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero-primary {
    background-color: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    padding: 12px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    margin: 10px;
    display: inline-block;
}

.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    margin: 10px;
    display: inline-block;
}

.btn-hero-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-section {
        background-attachment: scroll; /* Fix parallax on mobile/iOS */
    }
}


/* Modern About Section */
.about-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-image-stack {
    position: relative;
    padding-bottom: 40px; /* Space for the floating image */
}

.about-img-main {
    width: 90%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 8px solid #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Modern Gradient Cards for About Section */
.about-gradient-main {
    width: 90%;
    height: 380px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 140, 69, 0.15) 0%, transparent 50%),
        linear-gradient(145deg, #5D4E37 0%, #4a3f2d 50%, #3d3225 100%);
    box-shadow: 0 25px 50px rgba(93, 78, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-gradient-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent 30%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    100% { transform: rotate(360deg); }
}

.about-gradient-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 50%, rgba(232, 196, 168, 0.5) 0%, transparent 70%),
        linear-gradient(135deg, var(--gold) 0%, #c5a028 50%, #a8872a 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.gradient-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.about-gradient-accent .gradient-icon {
    font-size: 2rem;
}

.gradient-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.about-gradient-accent .gradient-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Mobile adjustments for gradient cards */
@media (max-width: 991px) {
    .about-gradient-main {
        width: 100%;
        height: 300px;
    }
    .about-gradient-accent {
        width: 150px;
        height: 150px;
        right: 10px;
        bottom: -10px;
    }
    .gradient-icon {
        font-size: 2.5rem;
    }
    .about-gradient-accent .gradient-icon {
        font-size: 1.5rem;
    }
}

.script-text {
    font-family: 'Playfair Display', serif; /* Using Playfair Italic as a script substitute */
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--italian-white);
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-box h6 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Tuscan Luxury About Section */
.about-dark-section {
    background-color: #F5E6D3; /* Tuscan cream */
    color: #5D4E37; /* Dark brown text */
    position: relative;
    overflow: hidden;
}

/* Override white text in about section for pastel background */
.about-dark-section .text-white {
    color: #5D4E37 !important; /* Dark brown instead of white */
}

.about-dark-section .text-white-50 {
    color: #8B7355 !important; /* Warm brown instead of white-50 */
}

.about-dark-section h2,
.about-dark-section p,
.about-dark-section .lead {
    color: #5D4E37;
}

/* Background pattern (optional subtle detail) */
.about-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.about-dark-accent-img {
    border: 5px solid var(--gold) !important; /* Gold border instead of white */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.feature-box-dark {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5); /* Light cream effect */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
    height: 100%;
}

.feature-box-dark:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.feature-box-dark i {
    font-size: 2rem;
    color: var(--gold);
}

.feature-box-dark h6 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #5D4E37; /* Dark brown */
    font-size: 1.1rem;
}

.feature-box-dark small {
    color: #8B7355; /* Warm brown */
}

.text-gold {
    color: var(--gold) !important;
}

/* Override Bootstrap muted text */
.text-muted {
    color: #8B7355 !important; /* Warm brown instead of grey */
}

/* Featured Dishes */
.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;
    color: #5D4E37; /* Dark brown */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--italian-red);
}

.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-warning {
    background-color: var(--gold);
    border: none;
    padding: 10px 25px;
}

.btn-warning:hover {
    background-color: #e67e22;
}

.text-italian-red {
    color: var(--italian-red);
}

.text-italian-green {
    color: var(--italian-green);
}

/* Classic Restaurant List View - Large Scale */
.menu-classic-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px; /* More spacing between items */
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu-classic-img {
    width: 160px; /* Much larger */
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 35px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.menu-classic-item:hover .menu-classic-img {
    transform: scale(1.05) rotate(3deg);
    border-color: var(--gold);
}

.menu-classic-content {
    flex-grow: 1;
    padding-top: 10px; /* Align with larger image */
}

.menu-header-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
}

.menu-classic-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem; /* Huge title */
    color: #5D4E37; /* Dark brown */
    margin: 0;
    padding-right: 15px;
    background: var(--italian-white);
    z-index: 1;
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 3px dotted #C4B5A0; /* Warm beige dots */
    margin: 0 15px;
    position: relative;
    top: -8px;
    opacity: 0.6;
}

.menu-classic-price {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2rem; /* Huge price */
    color: var(--italian-red);
    padding-left: 15px;
    background: var(--italian-white);
    z-index: 1;
}

.menu-classic-desc {
    color: #8B7355; /* Warm brown */
    font-size: 1.2rem; /* Larger description */
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .menu-classic-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    .menu-classic-img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 140px;
        height: 140px;
    }
    .menu-header-row {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
    .menu-dots {
        display: none;
    }
    .menu-classic-title {
        font-size: 1.6rem;
        padding: 0;
        margin-bottom: 5px;
    }
    .menu-classic-price {
        font-size: 1.5rem;
        padding: 0;
    }
}

/* Menu items without images */
.menu-classic-item.no-image {
    margin-bottom: 30px;
}

.menu-classic-item.no-image .menu-classic-content {
    padding-top: 0;
}

.menu-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.menu-section-divider::before,
.menu-section-divider::after {
    content: '';
    height: 1px;
    background-color: #C4B5A0; /* Warm beige */
    flex-grow: 1;
    max-width: 150px;
    margin: 0 20px;
}

.menu-section-divider span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
}

/* Modern Gallery Grid */
.gallery-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    width: 350px;
    height: 260px;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-item {
        width: 300px;
        height: 225px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: 100%;
        max-width: 350px;
        height: 260px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    touch-action: none;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    touch-action: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
}

/* Body when lightbox is open */
body.lightbox-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

html.lightbox-open {
    overflow: hidden !important;
}

/* Modern Footer Styles */
.footer-modern {
    background-color: #E8C4A8; /* Tuscan terracotta */
    color: #5D4E37; /* Dark brown text */
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: #5D4E37; /* Dark brown */
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-title {
    color: #5D4E37; /* Dark brown */
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-link {
    color: #5D4E37; /* Dark brown */
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-input {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(93, 78, 55, 0.2);
    color: #5D4E37; /* Dark brown */
    padding: 12px 15px;
    width: 100%;
    border-radius: 4px;
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.7);
    border-color: var(--gold);
    outline: none;
    color: #5D4E37;
}

.newsletter-input::placeholder {
    color: #8B7355;
}

.footer-bottom {
    background-color: #D4E5D7; /* Tuscan sage green */
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(93, 78, 55, 0.1);
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(93, 78, 55, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5D4E37; /* Dark brown */
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

/* Modern Contact Page Styles */
.contact-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #5D4E37; /* Dark brown */
    margin-bottom: 15px;
}

.contact-info-card {
    background-color: #F5E6D3; /* Tuscan cream */
    color: #5D4E37; /* Dark brown */
    padding: 50px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Override white text in contact card */
.contact-info-card .text-white-50 {
    color: #8B7355 !important; /* Warm brown */
}

/* Decorative circle */
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(255,255,255,0.05);
}

.contact-icon-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon-circle i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B7355; /* Warm brown */
    margin-bottom: 5px;
    display: block;
}

.contact-value {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    color: #5D4E37; /* Dark brown */
}

.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.form-control-line {
    border: none;
    border-bottom: 2px solid #D4C8B8; /* Warm beige */
    border-radius: 0;
    padding: 15px 0;
    background: transparent;
    transition: all 0.3s;
}

.form-control-line:focus {
    border-bottom-color: var(--gold);
    box-shadow: none;
}

.form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B7355; /* Warm brown */
    margin-top: 10px;
}

.btn-send-message {
    background-color: #5D4E37; /* Dark brown */
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-send-message:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
    color: #fff;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 400px;
    margin-top: 50px;
}

/* Modern Events Page - Editorial Layout */
.event-row {
    margin-bottom: 80px;
    align-items: center;
}

.event-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.event-img-wrapper img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.event-img-wrapper:hover img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 70px;
}

.event-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #5D4E37; /* Dark brown */
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 700;
}

.event-category {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #5D4E37; /* Dark brown */
    margin-bottom: 20px;
}

.event-desc {
    color: #8B7355; /* Warm brown */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5D4E37; /* Dark brown */
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

/* Featured Dishes - Elevated Design */
.featured-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: visible; /* Important for the floating badge */
    height: 100%;
    position: relative; /* Needed for badge positioning */
}

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

.featured-img-wrapper {
    height: 260px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-img-wrapper img {
    transform: scale(1.1);
}

.featured-price-badge {
    position: absolute;
    top: 222px; /* Positions centered on the 260px line (260 - 75/2) */
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.featured-price-badge.lunch-price {
    width: 85px;
    height: 85px;
    top: 217px;
    flex-direction: column;
    line-height: 1.2;
    font-size: 1.1rem;
}

.featured-price-badge .original-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
}

.featured-body {
    padding: 45px 25px 30px; /* Top padding clears the badge */
    text-align: center;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #5D4E37; /* Dark brown */
    margin-bottom: 10px;
}

.featured-ingr {
    color: #8B7355; /* Warm brown */
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

/* Menu Background Vectors */
.menu-bg-pattern {
    position: relative;
    overflow: hidden;
}

.menu-bg-pattern::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.menu-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 140, 69, 0.03) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Decorative leaf-like shape (CSS only) */
.menu-deco-leaf {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 200px;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50% 50% 0 50%;
    transform: rotate(45deg);
    z-index: -1;
}

/* Decorative circle shape */
.menu-deco-circle {
    position: absolute;
    bottom: 10%;
    left: 2%;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(0,0,0,0.02);
    border-radius: 50%;
    z-index: -1;
}

/* Extended Menu Deco */
.menu-deco-wave {
    position: absolute;
    top: 40%;
    left: -5%;
    width: 300px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.239-.422c1.657-.566 3.033-1.029 4.141-1.428 6.47-2.311 11.633-4.154 16.965-4.754 9.986-1.121 20.07-2.319 29.957-.033 6.664 1.543 13.722 3.638 21.42 6.467.924.339 1.85.683 2.777 1.036 1.28.473 2.505.926 3.667 1.348l1.348.484.214.076v-2.863l-.214-.076c-1.162-.422-2.387-.875-3.667-1.348-1.077-.394-2.152-.79-3.23-1.187-7.698-2.829-14.756-4.924-21.42-6.467-10.73-2.489-21.673-1.178-32.404.027-5.332.6-10.495 2.443-16.965 4.754-1.108.399-2.484.862-4.141 1.428l-1.239.422c-.368.138-.731.272-1.088.402l-.247.087V20l.247-.087z' fill='%23d4af37' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
    transform: rotate(-10deg);
}

.menu-deco-dots {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(0,0,0,0.1) 20%, transparent 20%);
    background-size: 10px 10px;
    z-index: -1;
}

.menu-deco-triangle {
    position: absolute;
    top: 80%;
    left: 15%;
    width: 0; 
    height: 0; 
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(212, 175, 55, 0.08);
    transform: rotate(15deg);
    z-index: -1;
}

.menu-deco-ring {
    position: absolute;
    top: 25%;
    right: 40%;
    width: 150px;
    height: 150px;
    border: 2px dashed rgba(0, 140, 69, 0.1); /* Green tint */
    border-radius: 50%;
    z-index: -1;
}

/* Hide decorative elements on mobile to prevent overflow */
@media (max-width: 991px) {
    .menu-deco-leaf,
    .menu-deco-circle,
    .menu-deco-wave,
    .menu-deco-dots,
    .menu-deco-triangle,
    .menu-deco-ring,
    .menu-bg-pattern::before,
    .menu-bg-pattern::after {
        display: none !important;
    }
}

/* Minimal Clean Menu Categories (Restored) */
.menu-category-pills {
    border-bottom: 1px solid #D4C8B8; /* Warm beige */
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.menu-category-pills .nav-link {
    background: transparent !important;
    color: #5D4E37 !important; /* Dark brown for contrast */
    border: none;
    margin: 0 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600; /* Bold */
    padding: 10px 0;
    position: relative;
    transition: all 0.3s;
    box-shadow: none !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8); /* White halo to separate from bg */
}

.menu-category-pills .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-category-pills .nav-link:hover {
    color: var(--gold);
    transform: none;
}

.menu-category-pills .nav-link.active {
    color: #5D4E37 !important; /* Dark brown */
    font-weight: 700;
}

.menu-category-pills .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(245, 230, 211, 0.98); /* Tuscan cream */
    backdrop-filter: blur(10px);
    z-index: 9990; /* Just behind the navbar toggler */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow-y: auto;
}

/* Close Button Inside Menu */
.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: #5D4E37; /* Dark brown */
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10000;
}

.mobile-menu-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #5D4E37; /* Dark brown */
    text-decoration: none;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for links */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav-link:hover {
    color: var(--gold);
    letter-spacing: 2px;
}

/* Animated Hamburger Icon */
.custom-toggler {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 99999; /* Ensure it stays ABOVE the overlay */
    display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
    .custom-toggler {
        display: block;
    }
    /* Hide default bootstrap collapse on mobile since we use custom overlay */
    .navbar-collapse {
        display: none !important;
    }
}

.toggler-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    position: absolute;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.toggler-bar:nth-child(1) { top: 0; }
.toggler-bar:nth-child(2) { top: 11px; }
.toggler-bar:nth-child(3) { top: 22px; }

/* Transform to X */
.custom-toggler.open .toggler-bar:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.custom-toggler.open .toggler-bar:nth-child(2) {
    opacity: 0;
}

.custom-toggler.open .toggler-bar:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* Mobile Lang Switcher */
.mobile-lang-switch {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.mobile-lang-btn {
    color: #8B7355; /* Warm brown */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(93, 78, 55, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
}

.mobile-lang-btn.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

/* Enhanced Italian Modal Style */
.modal-content-italian {
    background-color: #F5E6D3; /* Tuscan cream */
    border: none;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Decorative top border */
.modal-content-italian::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    z-index: 10;
}

.modal-header-italian {
    border-bottom: 1px solid rgba(93, 78, 55, 0.1);
    padding: 30px 30px 15px 30px;
    background-color: rgba(255, 255, 255, 0.4);
}

.modal-title-italian {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #5D4E37; /* Dark brown */
    font-size: 2rem;
    text-align: center;
    width: 100%;
}

.modal-body-italian {
    padding: 30px 40px 40px 40px;
}

.form-label-italian {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8B7355; /* Warm brown */
    font-weight: 700;
    margin-bottom: 8px;
}

.form-control-italian {
    background-color: #fff;
    border: 1px solid rgba(93, 78, 55, 0.15);
    border-radius: 4px;
    padding: 12px 15px;
    color: #5D4E37;
    font-family: 'Playfair Display', serif; /* Elegant font for input */
    font-size: 1.1rem;
    transition: all 0.3s;
}

.form-control-italian:focus {
    background-color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-control-italian::placeholder {
    color: #C4B5A0; /* Light beige */
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.btn-italian-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-italian-gold:hover {
    background-color: #c5a028;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    color: #fff;
}

/* Subtle background pattern for modal */
.modal-bg-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background-image: radial-gradient(#5D4E37 2px, transparent 2px);
    background-size: 20px 20px;
    border-radius: 50%;
    pointer-events: none;
}

/* ===== Google Reviews Carousel ===== */
.reviews-section {
    background: linear-gradient(180deg, #fff 0%, #F5E6D3 100%);
    overflow: hidden;
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.google-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.rating-info {
    text-align: left;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #5D4E37;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #FBBC04;
    font-size: 1.1rem;
}

.review-count {
    font-size: 0.85rem;
    color: #8B7355;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding: 20px 0;
}

/* Carousel Container */
.reviews-carousel {
    display: flex;
    gap: 25px;
    animation: scrollReviews 60s linear infinite;
    width: max-content;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    flex-shrink: 0;
    width: 350px;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #c5a028 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-info h5 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #5D4E37;
}

.reviewer-badge {
    font-size: 0.75rem;
    color: #8B7355;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #FBBC04;
    font-size: 0.85rem;
}

/* Review Text */
.review-text {
    color: #5D4E37;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    font-size: 0.8rem;
    color: #8B7355;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .google-rating-badge {
        padding: 12px 20px;
        gap: 10px;
    }

    .google-logo {
        width: 30px;
        height: 30px;
    }

    .rating-number {
        font-size: 1.5rem;
    }

    .review-card {
        width: 300px;
        padding: 20px;
    }

    .reviews-carousel {
        animation-duration: 45s;
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 280px;
    }
}

/* ===== Neighborhood Discount Section ===== */
.neighborhood-section {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8C4A8 100%);
}

.neighborhood-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.neighborhood-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.neighborhood-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold) 0%, #c5a028 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.neighborhood-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5D4E37;
    margin-bottom: 20px;
    line-height: 1.3;
}

.discount-highlight {
    display: block;
    color: var(--gold);
}

.neighborhood-text {
    color: #8B7355;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Location Check Button */
.btn-check-location {
    background: linear-gradient(135deg, #5D4E37 0%, #3d3225 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-check-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 78, 55, 0.3);
}

.btn-check-location:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Location Results */
.location-result {
    margin-top: 25px;
}

.location-success,
.location-fail,
.location-error {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.location-success {
    background: linear-gradient(135deg, rgba(0, 140, 69, 0.1) 0%, rgba(0, 140, 69, 0.05) 100%);
    border: 1px solid rgba(0, 140, 69, 0.2);
}

.location-success i {
    color: #008C45;
    font-size: 2rem;
    flex-shrink: 0;
}

.location-success strong {
    color: #008C45;
    font-size: 1.1rem;
}

.location-success p {
    margin: 5px 0;
    color: #5D4E37;
}

.location-fail {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(200, 16, 46, 0.05) 100%);
    border: 1px solid rgba(200, 16, 46, 0.2);
}

.location-fail i {
    color: #C8102E;
    font-size: 2rem;
    flex-shrink: 0;
}

.location-fail strong {
    color: #C8102E;
    font-size: 1.1rem;
}

.location-fail p {
    margin: 5px 0;
    color: #5D4E37;
}

.location-error {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.location-error i {
    color: #ffc107;
    font-size: 2rem;
    flex-shrink: 0;
}

.location-error strong {
    color: #856404;
    font-size: 1.1rem;
}

.location-error p {
    margin: 5px 0;
    color: #5D4E37;
}

.distance-info {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #5D4E37;
    margin-top: 5px;
}

/* Visual Discount Circle */
.neighborhood-visual {
    position: relative;
    padding: 30px;
}

.discount-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #c5a028 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.discount-circle::before {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.discount-percent {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.discount-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.radius-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 10px 20px;
    background: rgba(93, 78, 55, 0.1);
    border-radius: 50px;
    color: #5D4E37;
    font-weight: 600;
}

.radius-indicator i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Discount Code Box */
.discount-code-box {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px dashed var(--gold);
    border-radius: 15px;
    text-align: center;
}

.discount-code-box .code-label {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: #5D4E37;
    font-weight: 500;
}

.discount-code-box .discount-code {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
}

.btn-copy-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-copy-code.copied {
    background: linear-gradient(135deg, #28a745, #20873a);
}

.discount-code-box .code-info {
    margin: 15px 0 0 0;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .neighborhood-card {
        padding: 35px;
    }

    .neighborhood-title {
        font-size: 2rem;
    }

    .neighborhood-visual {
        margin-top: 40px;
    }

    .discount-circle {
        width: 160px;
        height: 160px;
    }

    .discount-circle::before {
        width: 190px;
        height: 190px;
    }

    .discount-percent {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .neighborhood-card {
        padding: 25px;
    }

    .neighborhood-title {
        font-size: 1.7rem;
    }

    .neighborhood-text {
        font-size: 1rem;
    }

    .btn-check-location {
        width: 100%;
        justify-content: center;
    }

    .discount-code-box {
        padding: 15px;
    }

    .discount-code-box .discount-code {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .btn-copy-code {
        width: 100%;
        justify-content: center;
    }
}
