/*
==============================================================================
COMPONENTS.CSS - UI Component Styles
==============================================================================

This file contains all reusable UI component styles for Hollywood Snack Shack:
- Button components (commercial-btn, call-btn, CTA buttons)
- Card components (menu cards, story cards, contact cards, review cards)
- Modal components (Image Modal, Welcome Modal, Video Modal, Facebook Modal)
- Form components
- Gallery components (gallery grid, gallery items, gallery modal)
- Badge components (Google Reviews Badge, seasonal badges)

Mobile-first responsive design with CSS custom properties for theming.
*/

/* ===== EXTRAS SECTION COMPONENTS ===== */

/* Dressings and Add-ons Containers */
.dressings,
.add-ons {
    background: var(--warm-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dressings::before,
.add-ons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--light-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dressings:hover::before,
.add-ons:hover::before {
    transform: scaleX(1);
}

.dressings:hover,
.add-ons:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 80, 22, 0.1);
}

.dressings h3,
.add-ons h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.dressings h3::before {
    content: '🥗';
    font-size: 1.6rem;
}

.add-ons h3::before {
    content: '➕';
    font-size: 1.3rem;
}

.dressings ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.dressings li {
    padding: 14px 18px;
    background: rgba(45, 80, 22, 0.05);
    border-radius: var(--border-radius-small);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #2d5016;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dressings li:hover {
    background: rgba(45, 80, 22, 0.1);
    transform: translateX(8px);
    border-color: var(--accent-green);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
}

.dressings li::before {
    content: "✓ ";
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 8px;
}

.dressing-icon {
    margin-right: 8px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.addon-grid {
    display: grid;
    gap: 12px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(45, 80, 22, 0.05);
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    min-width: 0;
    gap: 15px;
    border: 1px solid #2d5016;
    position: relative;
}

.addon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02), rgba(74, 124, 35, 0.02));
    border-radius: var(--border-radius-small);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.addon-item:hover::before {
    opacity: 1;
}

.addon-item span:first-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.addon-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.addon-item:hover {
    background: rgba(45, 80, 22, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.addon-price {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.2rem;
    background: var(--warm-white);
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    white-space: nowrap;
    border: 2px solid rgba(45, 80, 22, 0.1);
    transition: all 0.3s ease;
}

.addon-item:hover .addon-price {
    background: var(--accent-green);
    color: white;
    transform: scale(1.05);
}

/* Soup Notice Component */
.soup-notice {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.soup-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

.soup-notice p {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Enhanced animations for desktop */
@media (min-width: 1024px) {
    .dressings,
    .add-ons {
        position: relative;
    }

    .dressings::after,
    .add-ons::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -30px;
        width: 20px;
        height: 20px;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        border-radius: 50%;
        transform: translateY(-50%) scale(0);
        transition: transform 0.3s ease;
        opacity: 0.7;
    }

    .dressings:hover::after,
    .add-ons:hover::after {
        transform: translateY(-50%) scale(1);
        animation: pulse 2s infinite;
    }
}

/* Mobile optimizations for extras components */
@media (max-width: 767px) {
    .extras .addon-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .extras .addon-item {
        padding: 12px 16px !important;
        gap: 12px !important;
        min-height: 54px !important;
        align-items: center !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    .extras .addon-item span:first-child {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        gap: 12px !important;
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-right: 12px !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .extras .addon-icon {
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
        margin-right: 12px !important;
        width: 1.2rem !important;
        text-align: center !important;
        display: inline-block !important;
    }

    .extras .dressing-icon {
        font-size: 1.4rem !important;
        width: 28px !important;
        height: 28px !important;
    }

    .extras .dressings li {
        padding: 16px 20px !important;
        gap: 14px !important;
    }

    .extras .addon-price {
        font-size: 1.05rem !important;
        padding: 6px 12px !important;
        font-weight: 600 !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        white-space: nowrap !important;
        min-width: fit-content !important;
    }
}

@media (max-width: 390px) {
    .extras .addon-item {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 18px !important;
        min-height: 55px !important;
        gap: 16px !important;
    }

    .extras .addon-item span:first-child {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        gap: 12px !important;
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-right: 12px !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .extras .addon-icon {
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
        margin-right: 8px !important;
        width: 1.1rem !important;
    }

    .extras .addon-price {
        font-size: 1rem !important;
        padding: 6px 10px !important;
        margin-left: 8px !important;
    }
}

@media (max-width: 360px) {
    .extras .addon-item {
        padding: 12px 14px !important;
        gap: 12px !important;
        min-height: 50px !important;
    }

    .extras .addon-item span:first-child {
        font-size: 0.85rem !important;
        gap: 8px !important;
    }

    .extras .addon-icon {
        font-size: 1rem !important;
        margin-right: 6px !important;
        width: 1rem !important;
    }

    .extras .addon-price {
        font-size: 0.95rem !important;
        padding: 5px 8px !important;
    }
}

/* ===== BUTTON COMPONENTS ===== */

/* Commercial Button - Header */
.commercial-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: var(--border-radius-small);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
    white-space: nowrap;
}

.commercial-btn:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.commercial-btn .tv-icon {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .commercial-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .commercial-btn .tv-icon {
        width: 16px;
        height: 16px;
    }

    .commercial-btn span {
        display: none;
    }
}

/* Call Button - Navigation */
.call-btn {
    display: block;
    background: transparent;
    color: var(--text-dark);
    padding: 15px 8px;
    border-radius: var(--border-radius-small);
    text-align: center;
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-green);
}

/* Desktop responsive fix for call button */
@media (min-width: 1024px) {
    .call-btn {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.cta-secondary {
    background: var(--warm-white);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.cta-secondary:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-3px);
}

/* Hero Action Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: auto;
    white-space: nowrap;
}

.hero-btn span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: inherit;
}

.hero-btn .btn-icon {
    font-size: 1.3rem;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    color: inherit;
    filter: none;
    opacity: 1;
}

.hero-btn .btn-text {
    font-weight: 700;
    color: inherit;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.4);
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.5);
}


/* Contact Button Styles */
.directions-btn,
.call-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-green);
    color: white;
    padding: 12px 18px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    margin-top: 20px;
    width: 100%;
    font-size: 0.95rem;
}

.directions-btn:hover,
.call-now-btn:hover,
.call-hours-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.call-hours-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-green);
    color: white;
    padding: 12px 18px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    margin-top: 20px;
    width: 100%;
    font-size: 0.95rem;
}

.call-order-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.call-order-btn:hover {
    background: linear-gradient(135deg, #ff5722, #e65100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1877f2;
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

/* ===== CARD COMPONENTS ===== */

/* Menu Cards */
.menu-card {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #2d5016;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Add light colors to menu cards for better contrast */
.menu-card:nth-child(1) { /* Hollywood Club - Featured */
    background: linear-gradient(135deg, #fefdf8 0%, #f8fdf4 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(2) { /* Italian */
    background: linear-gradient(135deg, #f0fdf4 0%, #fafffa 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(3) { /* Tom Tom - Spicy */
    background: linear-gradient(135deg, #fef2f2 0%, #fffafa 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(4) { /* Sweet Caroline */
    background: linear-gradient(135deg, #fffbeb 0%, #fffef7 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(5) { /* Turkey */
    background: linear-gradient(135deg, #f0f9ff 0%, #f8faff 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(6) { /* Pretzel Wrap */
    background: linear-gradient(135deg, #fdf4ff 0%, #fefaff 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(7) { /* London Broil Roast Beef */
    background: linear-gradient(135deg, #fef7ed 0%, #fffbf5 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(8) { /* Fresh Daily Creations - Image Card */
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fdf8 100%);
    border-color: #2d5016;
}

.menu-card:nth-child(9) { /* Boar's Head Quality - Image Card */
    background: linear-gradient(135deg, #fffbeb 0%, #fefdf8 100%);
    border-color: #2d5016;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--light-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 80, 22, 0.1);
}

/* Touch feedback for mobile devices */
.menu-card.touch-active {
    transform: translateY(-2px) scale(0.98);
    transition: transform 0.1s ease;
}

.featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    padding: 30px 25px;
}

.featured-card::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.special-card {
    background: linear-gradient(135deg, #fff8e1 0%, #f3e5f5 100%);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}

@media (min-width: 768px) {
    .card-header {
        flex-direction: row;
        gap: 0;
    }

    .card-icon {
        margin: 0;
    }
}

.card-icon {
    font-size: 2rem;
    padding: 12px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
}

/* Italian Flag Component */
.italian-flag {
    display: flex;
    width: 32px;
    height: 20px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.italian-flag.small {
    width: 20px;
    height: 12px;
}

.italian-flag .flag-stripe {
    flex: 1;
    height: 100%;
}

.italian-flag .flag-stripe.green {
    background-color: #009246;
}

.italian-flag .flag-stripe.white {
    background-color: #f1f2f1;
}

.italian-flag .flag-stripe.red {
    background-color: #ce2b37;
}

.card-badge {
    background: var(--accent-green);
    color: white;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
    text-align: center;
    padding: 0 5px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .card-title {
        text-align: left;
    }
}

.card-description {
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
    padding: 0 5px;
    flex-grow: 1;
}

.card-description small {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: var(--text-medium);
}

/* Price Components */
.price-row {
    display: flex;
    gap: 12px;
    padding: 0 5px;
    margin-top: auto;
}

.price-row.single-price {
    justify-content: center;
}

.price-option {
    flex: 1;
    background: var(--accent-green);
    color: white;
    padding: 14px 16px;
    border-radius: var(--border-radius-small);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-option:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.price-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.single-price .price-option {
    max-width: 130px;
}

.single-price .price-value {
    font-size: 1.3rem;
}

/* Image Card Styles */
.menu-card.image-card {
    position: relative;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    transition: transform 0.3s ease;
}

.menu-card.image-card:hover .card-image {
    transform: scale(1.05);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius-small);
}

.menu-card.image-card:hover .card-image-overlay {
    opacity: 1;
}

.card-image-overlay .card-icon {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-image-overlay .card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-green);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Cards */
.story-card {
    background: var(--warm-white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid #2d5016;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Add light colors to each story card for better contrast */
.story-card:nth-child(1) {
    background: linear-gradient(135deg, #f0f8ff 0%, #fafeff 100%);
    border-color: #2d5016;
    position: relative;
}

.story-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-image: url('../Assets/Images/charcuterie-board.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.story-card:nth-child(2) {
    background: linear-gradient(135deg, #f0fff4 0%, #fafffa 100%);
    border-color: #2d5016;
    position: relative;
}

.story-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-image: url('../Assets/Images/deli-counter-essentials.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.story-card:nth-child(3) {
    background: linear-gradient(135deg, #fffbf0 0%, #fffefa 100%);
    border-color: #2d5016;
    position: relative;
}

.story-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-image: url('../Assets/Images/coffee-pastries-vertical.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 35, 0.1), transparent);
    transition: left 0.5s ease;
}

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(74, 124, 35, 0.2);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: rgba(74, 124, 35, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.story-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.story-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Cards */
.contact-card {
    background: var(--warm-white);
    padding: 18px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid #2d5016;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
    height: auto;
}

/* Add light colors to contact cards for better contrast */
.location-card {
    background: linear-gradient(135deg, #fff5f5 0%, #fffafa 100%);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.phone-card {
    background: linear-gradient(135deg, #f0fff4 0%, #fafffa 100%);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.social-card {
    background: linear-gradient(135deg, #eff6ff 0%, #f8faff 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.hours-card {
    background: linear-gradient(135deg, #fffbf0 0%, #fffefa 100%);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced hover effects for individual contact cards */
.location-card:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.phone-card:hover {
    box-shadow: 0 8px 25px rgba(74, 124, 35, 0.2);
}

.social-card:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.location-card {
    border-top: 4px solid #ff6b6b;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.phone-card {
    border-top: 4px solid var(--accent-green);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hours-card {
    border-top: 4px solid #4ecdc4;
}

.social-card {
    border-top: 4px solid #1877f2;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(74, 124, 35, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.contact-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Review Cards */
.review-card {
    background: var(--warm-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--accent-green);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating span {
    color: #ffd700;
    font-size: 1.1rem;
}

.reviewer-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
}

.review-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-align: right;
}

/* Community Love Card */
.community-love {
    background: linear-gradient(135deg, var(--cream), #f8fdf4);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-green);
    position: relative;
}

.community-love h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.community-love p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

/* ===== MODAL COMPONENTS ===== */

/* Welcome Modal */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.welcome-modal.active {
    opacity: 1;
    visibility: visible;
}

.welcome-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.welcome-modal-container {
    position: relative;
    max-width: 480px;
    width: 90%;
    z-index: 2;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.welcome-modal.active .welcome-modal-container {
    transform: scale(1);
}

.welcome-modal-content {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent-green);
}

.welcome-modal-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: white;
    padding: 30px 25px 25px;
    text-align: center;
    position: relative;
}

.welcome-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: welcomeShine 3s infinite;
}

@keyframes welcomeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.welcome-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: welcomePulse 2s infinite;
}

@keyframes welcomePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.welcome-modal-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.welcome-modal-header p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.4;
    margin: 0;
}

.welcome-modal-actions {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.welcome-btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.welcome-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.welcome-btn-secondary {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--text-medium);
}

.welcome-btn-secondary:hover {
    background: var(--text-medium);
    color: white;
    transform: translateY(-1px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}

.video-modal-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    margin: 20px;
    z-index: 2;
}

.video-modal-close {
    display: none;
}

.video-modal-close:hover {
    background: rgba(45, 80, 22, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.video-modal-content {
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--border-radius);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    margin: 20px;
    z-index: 2001;
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--warm-white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 2002;
    opacity: 0.8;
}

.image-modal-close:hover {
    background: rgba(45, 80, 22, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: scale(1.05);
}

.image-modal-content {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

/* Facebook Modal */
.fb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    touch-action: none;
}

.fb-modal.show {
    opacity: 1;
    visibility: visible;
}

.fb-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
    touch-action: none;
}

.fb-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    height: 80vh;
    background: var(--warm-white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.fb-modal.show .fb-modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.fb-modal:not(.show) .fb-modal-container {
    transform: translate(-50%, -50%) scale(0.9);
}

.fb-modal-header {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.fb-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: headerShine 4s infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.fb-modal-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.fb-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.fb-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.fb-modal-close span {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 300;
}

.fb-modal-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: #f8f9fa;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    touch-action: pan-y;
    overscroll-behavior: contain;
}


/* ===== GALLERY COMPONENTS ===== */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    grid-template-columns: 1fr;
    width: 100%;
}

/* Mobile grid: 1 column */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Tablet grid: 2 columns */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

/* Desktop grid: 3 columns */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Large desktop grid: 4 columns */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--warm-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.gallery-item:focus {
    outline: 3px solid var(--accent-green);
    outline-offset: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border-radius: var(--border-radius);
    background: #f0f0f0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* Gallery Placeholder Styling */
.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border: 2px solid var(--accent-green);
    cursor: default;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(74, 124, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(127, 176, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-placeholder:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--primary-green);
}

.gallery-placeholder-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.placeholder-star {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: twinkle 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
}

.placeholder-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 12px;
}

.placeholder-hollywood {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.placeholder-snack {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-green);
}

.placeholder-tagline {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.gallery-placeholder-content {
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.gallery-icon {
    font-size: 2rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    z-index: 2001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.gallery-close-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.gallery-close-btn:active {
    transform: scale(0.95);
}

/* Add a subtle pulse animation to make it more noticeable */
.gallery-close-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: closeBtnPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes closeBtnPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    pointer-events: auto;
    margin: 0 20px;
}

.gallery-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== BADGE COMPONENTS ===== */

/* Google Reviews Badge */
.google-reviews-badge {
    display: flex;
    justify-content: center;
    margin: 30px 0 40px 0;
}

.google-badge-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.google-badge-link:hover {
    transform: translateY(-2px);
}

.google-badge-content {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e8eaed;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 320px;
}

.google-badge-content:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: #4285f4;
}

.google-icon {
    margin-right: 12px;
    flex-shrink: 0;
}

.google-badge-text {
    flex: 1;
    min-width: 0;
}

.google-badge-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3c4043;
    margin-bottom: 4px;
}

.google-badge-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: #fbbc04;
    font-size: 1rem;
    line-height: 1;
}

.rating-score {
    font-size: 0.9rem;
    color: #5f6368;
    font-weight: 500;
}

.google-badge-arrow {
    margin-left: 12px;
    color: #5f6368;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.google-badge-link:hover .google-badge-arrow {
    transform: translateX(3px);
}

/* Seasonal Badge */
.seasonal-badge {
    display: inline-block;
    background: linear-gradient(135deg,
        rgba(217, 119, 6, 0.1) 0%,
        rgba(251, 146, 60, 0.1) 100%);
    color: #c2410c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(217, 119, 6, 0.2);
    margin: 8px 0 15px 0;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.1);
    animation: badge-shimmer 4s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(217, 119, 6, 0.1);
    }
    50% {
        box-shadow: 0 2px 12px rgba(217, 119, 6, 0.2);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
}


/* ===== FORM COMPONENTS ===== */

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== MOBILE RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 480px) {
    .welcome-modal-container {
        width: 95%;
    }

    .welcome-modal-header {
        padding: 25px 20px 20px;
    }

    .welcome-modal-header h2 {
        font-size: 1.3rem;
    }

    .welcome-modal-header p {
        font-size: 0.9rem;
    }

    .welcome-modal-actions {
        padding: 20px;
    }

    .welcome-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .welcome-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .welcome-icon svg {
        width: 40px;
        height: 40px;
    }

    .video-modal-close {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        top: -50px;
        right: -5px;
    }

    .video-modal-content video {
        max-width: 95vw;
        max-height: 70vh;
    }

    .image-modal-close {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        top: 12px;
        right: 12px;
    }

    .modal-image {
        max-width: 95vw;
        max-height: 80vh;
    }


    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
    }

    .hero-btn {
        width: auto;
        padding: 10px 16px;
        font-size: 0.95rem;
        min-width: auto;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .hero-btn .btn-icon {
        font-size: 1.2rem;
        margin-right: 6px;
        display: inline-flex;
        align-items: center;
        opacity: 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-radius: var(--border-radius-small);
    }

    .gallery-close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin: 0 10px;
    }

    /* Mobile placeholder adjustments */
    .placeholder-star {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .placeholder-hollywood {
        font-size: 1.1rem;
    }

    .placeholder-snack {
        font-size: 0.9rem;
    }

    .placeholder-tagline {
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) {
    .google-badge-content {
        padding: 18px 24px;
        max-width: 350px;
    }

    .google-badge-title {
        font-size: 1rem;
    }

    .rating-score {
        font-size: 0.95rem;
    }

    .gallery-close-btn {
        top: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }

    .gallery-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 30px;
    }

    /* Tablet placeholder adjustments */
    .placeholder-star {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .placeholder-hollywood {
        font-size: 1.6rem;
    }

    .placeholder-snack {
        font-size: 1.3rem;
    }

    .placeholder-tagline {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .google-badge-content {
        padding: 20px 28px;
        max-width: 380px;
    }

    .google-badge-title {
        font-size: 1.05rem;
    }

    .rating-stars {
        font-size: 1.1rem;
    }

    .rating-score {
        font-size: 1rem;
    }

    .gallery-item {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gallery-item:hover {
        transform: translateY(-8px) scale(1.03);
    }

    /* Desktop placeholder adjustments */
    .placeholder-star {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .placeholder-hollywood {
        font-size: 1.8rem;
    }

    .placeholder-snack {
        font-size: 1.4rem;
    }

    .placeholder-tagline {
        font-size: 1rem;
    }

    .gallery-placeholder:hover {
        transform: translateY(-5px) scale(1.02);
    }

    /* Placeholder visible on desktop (feature reversed) */
    .gallery-placeholder {
        display: block;
    }

    /* Enhanced close button for desktop */
    .gallery-close-btn {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
        top: 40px;
        right: 40px;
    }

    .gallery-close-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.15);
    }

    /* Desktop Optimizations for Facebook Modal */
    .fb-modal-container {
        width: 40%;
        max-width: 380px;
        height: 85vh;
        max-height: 95vh;
    }

    .fb-modal-header {
        padding: 16px 28px;
    }

    .fb-modal-header h2 {
        font-size: 1.4rem;
    }

    .fb-modal-content {
        padding: 8px;
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .fb-modal-container {
        width: 35%;
        max-width: 420px;
        height: 88vh;
    }
}

/* Prevent modal scroll issues */
body.gallery-modal-open {
    overflow: hidden;
}

/* Prevent body scroll only when modal is shown */
body:has(.fb-modal.show) {
    overflow: hidden;
}

/* Fallback for browsers that don't support :has() */
.fb-modal.show ~ body,
body.modal-open {
    overflow: hidden;
}

/* ===== DETROIT LIONS SCHEDULE MODAL ===== */
.lions-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lions-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lions-modal {
    background: linear-gradient(135deg, #0076B6 0%, #4A9FD9 50%, #8CC8F0 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    max-width: 420px;
    width: 90%;
    margin: 20px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    border: 3px solid #B0B7BC;
}

.lions-modal-overlay.show .lions-modal {
    transform: scale(1);
}

.lions-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px 0;
}

.lions-modal-close {
    background: rgba(0, 118, 182, 0.1);
    border: none;
    font-size: 28px;
    color: #0076B6;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lions-modal-close:hover {
    background: #0076B6;
    color: white;
}

.lions-modal-content {
    padding: 0 30px 30px;
    text-align: center;
}

.lions-modal-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.lions-modal h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lions-modal p {
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lions-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lions-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0076B6, #005A8B);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    gap: 8px;
}

.lions-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 118, 182, 0.3);
}

.lions-close-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #10b981;
    color: #059669;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: none;
}

.lions-close-btn:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .lions-modal {
        max-width: 95%;
        margin: 10px;
    }

    .lions-modal-content {
        padding: 0 20px 25px;
    }

    .lions-modal h2 {
        font-size: 22px;
    }

    .lions-modal-logo {
        width: 120px;
        height: 120px;
    }
}
