/*
==============================================================================
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.
*/

/* ===== 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: 400;
    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(-1px);
    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(-1px);
}

/* Hero Action Buttons - Optimized for Touch */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 3vw, 18px) clamp(18px, 4vw, 28px);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 44px;
    min-height: 44px;
    white-space: nowrap;
    position: relative;
}

.hero-btn span {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    font-size: inherit;
    color: inherit;
}

.hero-btn .btn-icon {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-right: clamp(6px, 1.5vw, 8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: inherit;
    filter: none;
    opacity: 1;
    min-width: 24px;
    min-height: 24px;
}

/* Make phone icon red in call buttons */
.hero-btn .btn-icon.phone-icon {
    color: #e74c3c !important;
}

/* Specific styling for phone icon SVG */
.hero-btn .btn-icon.phone-icon svg {
    fill: #e74c3c !important;
}

.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(-1px);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.secondary-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

.secondary-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
}

/* Enhanced touch feedback for mobile */
@media (hover: none) and (pointer: coarse) {
    .hero-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}


/* 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 - Premium Redesign */
.menu-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 8px 32px rgba(45, 80, 22, 0.08),
        0 2px 16px rgba(45, 80, 22, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Thin green borders for cards in specific sections */
#menu .menu-card,
#extras .menu-card,
#convenience .menu-card,
#soup-salad .menu-card {
    border: 2px solid #4a7c23;
}

/* Premium Card Backgrounds with Glass Morphism */
.menu-card:nth-child(1) {
    /* Hollywood Club - Featured */
    background: linear-gradient(135deg,
            rgba(255, 248, 225, 0.9) 0%,
            rgba(248, 253, 244, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.menu-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 223, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 80, 22, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(2) {
    /* Italian */
    background: linear-gradient(135deg,
            rgba(240, 253, 244, 0.9) 0%,
            rgba(250, 255, 250, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 146, 70, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(206, 43, 55, 0.05) 0%, transparent 40%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(3) {
    /* Tom Tom - Spicy */
    background: linear-gradient(135deg,
            rgba(254, 242, 242, 0.9) 0%,
            rgba(255, 250, 250, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(239, 68, 68, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(251, 146, 60, 0.08) 0%, transparent 45%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(4) {
    /* Sweet Caroline */
    background: linear-gradient(135deg,
            rgba(255, 251, 235, 0.9) 0%,
            rgba(255, 254, 247, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(252, 211, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(5) {
    /* Turkey */
    background: linear-gradient(135deg,
            rgba(240, 249, 255, 0.9) 0%,
            rgba(248, 250, 255, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(219, 234, 254, 0.1) 0%, transparent 40%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(6) {
    /* Pretzel Wrap */
    background: linear-gradient(135deg,
            rgba(253, 244, 255, 0.9) 0%,
            rgba(254, 250, 255, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(6)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.05) 0%, transparent 45%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(7) {
    /* London Broil Roast Beef */
    background: linear-gradient(135deg,
            rgba(254, 247, 237, 0.9) 0%,
            rgba(255, 251, 245, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(7)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(254, 215, 170, 0.1) 0%, transparent 40%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card:nth-child(8),
/* Fresh Daily Creations - Image Card */
.menu-card:nth-child(9) {
    /* Boar's Head Quality - Image Card */
    background: linear-gradient(135deg,
            rgba(240, 253, 244, 0.9) 0%,
            rgba(248, 253, 248, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.menu-card:nth-child(8)::before,
.menu-card:nth-child(9)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.menu-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            rgba(45, 80, 22, 0.8) 0%,
            rgba(74, 124, 35, 0.6) 50%,
            rgba(134, 194, 50, 0.4) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
}

.menu-card:hover::after {
    transform: scaleX(1);
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(45, 80, 22, 0.15),
        0 8px 16px rgba(45, 80, 22, 0.1),
        0 2px 8px rgba(45, 80, 22, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
}

/* Touch feedback for mobile devices */
.menu-card.touch-active {
    transform: translateY(-8px) scale(1.02);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 40px rgba(45, 80, 22, 0.15),
        0 8px 16px rgba(45, 80, 22, 0.1),
        0 2px 8px rgba(45, 80, 22, 0.05);
}

.featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: 35px 30px;
    background: linear-gradient(135deg,
            rgba(255, 248, 225, 0.95) 0%,
            rgba(248, 253, 244, 1) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.featured-card::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 223, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 80, 22, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}



/* Remove decorative star for the Neighborhood Store card only */
.featured-card.no-star::after {
    content: none;
    background: none;
    box-shadow: none;
    width: 0;
    height: 0;
    animation: none;
}

.special-card {
    background: linear-gradient(135deg,
            rgba(255, 248, 225, 0.95) 0%,
            rgba(243, 229, 245, 0.95) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.special-card::before {
    background:
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 45%);
}

/* Card Header - Premium Design */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .card-header {
        flex-direction: row;
        gap: 0;
    }

    .card-icon {
        margin: 0;
    }
}

.card-icon {
    font-size: 2.2rem;
    padding: 16px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(248, 250, 252, 0.8) 100%);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(45, 80, 22, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(45, 80, 22, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.menu-card:hover .card-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 32px rgba(45, 80, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(45, 80, 22, 0.1);
}

.menu-card:hover .card-icon::before {
    transform: rotate(45deg) translateX(100%);
}

/* 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: linear-gradient(135deg, var(--accent-green) 0%, #4a7c23 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    box-shadow:
        0 4px 12px rgba(45, 80, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-badge::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;
}

.menu-card:hover .card-badge::before {
    left: 100%;
}

.card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
    padding: 0 8px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(45, 80, 22, 0.1);
}

@media (min-width: 768px) {
    .card-title {
        text-align: left;
    }
}

.card-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    padding: 0 8px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.card-description small {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: var(--text-medium);
}

/* Premium Price Components */
.price-row {
    display: flex;
    gap: 12px;
    padding: 0 8px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.price-row.single-price {
    justify-content: center;
}

.price-option {
    flex: 1;
    background: rgba(45, 80, 22, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--primary-green);
    padding: 14px 16px;
    border-radius: 14px;
    text-align: center;
    box-shadow:
        0 4px 16px rgba(45, 80, 22, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(74, 124, 35, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.price-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    border-radius: 14px;
    pointer-events: none;
}

.price-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 35, 0.15), transparent);
    transition: left 0.6s ease;
}

.price-option:hover {
    background: rgba(45, 80, 22, 0.12);
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 6px 20px rgba(45, 80, 22, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(74, 124, 35, 0.12);
    color: var(--accent-green);
}

.price-option:hover::after {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 100%);
}

.price-option:hover::before {
    left: 100%;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.85;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.price-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Fredoka', sans-serif;
}

.single-price .price-option {
    max-width: 140px;
    padding: 12px 18px;
}

.single-price .price-value {
    font-size: 1.25rem;
    font-weight: 600;
}

/* 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 {
    display: none;
}

/* Remove hover effects that show icons */
.menu-card.image-card:hover .card-image-overlay {
    display: none;
}

.card-image-overlay .card-icon {
    display: none;
}

.card-image-overlay .card-badge {
    display: none;
}

/* Hide mobile icons on desktop */
.mobile-card-icon {
    display: none;
}

/* 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;
}

/* Story cards - clean design without background images */

.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(-2px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(74, 124, 35, 0.15);
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: rgba(74, 124, 35, 0.08);
    border-radius: 12px;
    animation: subtleShift 4s ease-in-out infinite;
    color: var(--accent-green);
    font-weight: 700;
}

@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%) !important;
    border: 1px solid rgba(245, 158, 11, 0.1) !important;
    position: relative !important;
    z-index: 1 !important;
}

.contact-card:hover {
    transform: translateY(-2px);
    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 - Enhanced with heart icon integration */
.community-love {
    background: linear-gradient(135deg, var(--cream), #f8fdf4);
    padding: 40px 30px;
    border-radius: 25px;
    border: 3px solid var(--accent-green);
    position: relative;
    box-shadow:
        0 10px 30px rgba(74, 124, 35, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: visible;
    transition: all 0.3s ease;
}

.community-love:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(74, 124, 35, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.community-love h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Enhanced heart icon with gradient effects and perfect alignment */
.community-love h3::before {
    content: "♥";
    background: linear-gradient(135deg, #ff0000 0%, #ff3333 50%, #ff6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em !important;
    margin-right: 0.5em;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-0.1em);
    animation: heartBeat 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.3)) drop-shadow(0 4px 8px rgba(255, 0, 0, 0.2));
    position: relative;
}

/* Add a subtle glow effect behind the heart */
.community-love h3::before {
    content: "♥";
    background: linear-gradient(135deg, #ff0000 0%, #ff3333 50%, #ff6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em !important;
    margin-right: 0.5em;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-0.1em);
    animation: heartBeat 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.3)) drop-shadow(0 4px 8px rgba(255, 0, 0, 0.2));
}

/* Create a subtle glow effect */
.community-love h3::after {
    content: "♥";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(255, 51, 51, 0.2) 50%, rgba(255, 102, 102, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em !important;
    margin-right: 0.5em;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-0.1em) scale(1.1);
    filter: blur(2px);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

/* Heart beat animation for the icon */
@keyframes heartBeat {

    0%,
    100% {
        transform: translateY(-0.1em) scale(1);
    }

    50% {
        transform: translateY(-0.1em) scale(1.1);
    }
}

/* Override any inherited colors */
.community-love h3 {
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.community-love h3::before {
    color: #ff0000 !important;
    -webkit-text-fill-color: #ff0000 !important;
}

/* Enhanced heart icon hover effect */
.community-love h3:hover::before {
    animation: heartBeat 1s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(255, 0, 0, 0.4)) drop-shadow(0 6px 12px rgba(255, 0, 0, 0.3)) !important;
    transform: translateY(-0.1em) scale(1.05);
}

.community-love h3:hover::after {
    animation: heartBeat 1s ease-in-out infinite;
    opacity: 0.9;
    filter: blur(3px);
}

/* Enhanced heart beat animation */
@keyframes heartBeat {

    0%,
    100% {
        transform: translateY(-0.1em) scale(1);
    }

    25% {
        transform: translateY(-0.1em) scale(1.05);
    }

    50% {
        transform: translateY(-0.1em) scale(1.15);
    }

    75% {
        transform: translateY(-0.1em) scale(1.08);
    }
}

.community-love p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 15px;
}

/* Responsive adjustments for the heart icon */
@media (max-width: 768px) {
    .community-love h3::before {
        font-size: 1.6em !important;
        margin-right: 0.4em;
    }

    .community-love {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .community-love h3::before {
        font-size: 1.4em !important;
        margin-right: 0.3em;
    }

    .community-love {
        padding: 25px 20px;
    }

    .community-love h3 {
        font-size: 1.3rem;
    }
}

/* Enhanced heart icon for larger screens */
@media (min-width: 1024px) {
    .community-love h3::before {
        font-size: 2em !important;
        margin-right: 0.6em;
    }

    .community-love {
        padding: 50px 40px;
    }
}

@media (min-width: 1400px) {
    .community-love h3::before {
        font-size: 2.2em !important;
        margin-right: 0.7em;
    }

    .community-love {
        padding: 60px 50px;
    }
}

/* ===== 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(-2px) scale(1.01);
    box-shadow: var(--shadow-medium);
}

.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(147, 197, 253, 0.25) 0%,
            rgba(191, 219, 254, 0.2) 100%);
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(147, 197, 253, 0.5);
    margin: 8px 0 15px 0;
    box-shadow: 0 4px 15px rgba(147, 197, 253, 0.4), 0 0 20px rgba(191, 219, 254, 0.3);
    animation: badge-shimmer 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes badge-shimmer {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(147, 197, 253, 0.4), 0 0 20px rgba(191, 219, 254, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(147, 197, 253, 0.6), 0 0 30px rgba(191, 219, 254, 0.5);
    }
}

/* 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;
    }
}

.card-icon {
    color: var(--primary-green) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px !important;
}

/* Permanent glass shine effect */
.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: glassShine 3s ease-in-out infinite;
}

@keyframes glassShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Subtle hover enhancement */
.card-icon:hover {
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.55) !important;
}

/* ===== CUSTOM REVIEWS WIDGET ===== */

.custom-reviews-widget {
    background: var(--warm-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 80, 22, 0.1);
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(45, 80, 22, 0.1);
}

.reviews-header h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-score {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}


.review-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            rgba(45, 80, 22, 0.05),
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.6s ease;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(45, 80, 22, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover::after {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), rgba(45, 80, 22, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 12px rgba(45, 80, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.review-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.8;
}

.review-rating {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
}

.review-content p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.review-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.helpful-btn {
    background: none;
    border: 1px solid rgba(45, 80, 22, 0.2);
    border-radius: var(--border-radius-small);
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.helpful-btn:hover {
    background: rgba(45, 80, 22, 0.05);
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-1px);
}

.helpful-btn.clicked {
    background: rgba(45, 80, 22, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
    cursor: default;
}

.reviews-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(45, 80, 22, 0.1);
}

.read-more-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-green);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    background: rgba(45, 80, 22, 0.05);
}

.read-more-reviews:hover {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.read-more-reviews span:last-child {
    transition: transform 0.3s ease;
}

.read-more-reviews:hover span:last-child {
    transform: translateX(4px);
}

/* Responsive Design for Reviews Widget */
@media (max-width: 768px) {
    .custom-reviews-widget {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem;
    }

    .reviews-header h3 {
        font-size: 1.5rem;
    }

    .reviews-rating {
        flex-direction: column;
        gap: 0.5rem;
    }


    .review-card {
        padding: 1.25rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .reviewer-info {
        gap: 0.6rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .review-content p {
        font-size: 0.95rem;
    }

    .helpful-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}


@media (max-width: 480px) {
    .custom-reviews-widget {
        padding: 1rem 0.75rem;
        margin: 2rem 0.5rem;
    }

    .reviews-header {
        margin-bottom: 1.5rem;
    }


    .review-card {
        padding: 1rem;
    }

    .review-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ===== PRIVACY POLICY COMPONENTS ===== */

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Privacy Section Headers */
.privacy-container h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-green);
}

.privacy-container h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-green);
    margin: 1.5rem 0 0.5rem 0;
}

/* Privacy Content Text */
.privacy-container p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.privacy-container .intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-green) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Lists */
.privacy-container ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-container li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Special Information Boxes */
.privacy-container .effective-date-box {
    background: linear-gradient(135deg, var(--light-yellow), #fff8e1);
    border: 2px solid var(--accent-yellow);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.privacy-container .effective-date-box p {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

.privacy-container .note-box {
    background: linear-gradient(135deg, #e8f5e8, #f1f8f1);
    border: 2px solid var(--accent-green);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.1);
}

.privacy-container .analytics-box {
    background: linear-gradient(135deg, #e3f2fd, #f3f8ff);
    border: 2px solid #42a5f5;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(66, 165, 245, 0.1);
}

.privacy-container .contact-box {
    background: linear-gradient(135deg, var(--light-red), #ffebee);
    border: 2px solid var(--accent-red);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(244, 67, 54, 0.1);
}

.privacy-container .contact-box p {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.privacy-container .contact-box a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
}

.privacy-container .contact-box a:hover {
    text-decoration: underline;
}

/* Privacy Policy Link Styling */
.privacy-container a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-container a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Section Spacing */
.privacy-container .privacy-section {
    margin: 2rem 0;
}

.privacy-container .privacy-section:first-child {
    margin-top: 0;
}

.privacy-container .privacy-section:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .privacy-container h2 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem 0;
    }

    .privacy-container h3 {
        font-size: 1rem;
    }

    .privacy-container p,
    .privacy-container li {
        font-size: 0.9rem;
    }

    .privacy-container .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        margin: 0.5rem;
        padding: 1rem;
    }

    .privacy-container h2 {
        font-size: 1.2rem;
    }

    .privacy-container ul {
        padding-left: 1rem;
    }
}