/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF9B42;
    --secondary-teal: #6EC5B8;
    --accent-yellow: #FFD166;
    --bg-cream: #FFF9F5;
    --bg-white: #FFFFFF;
    --bg-light: #FFF5ED;
    --text-dark: #2D3436;
    --text-gray: #636E72;
    --text-light: #95A5A6;
    --border-light: #E8E8E8;
    --success-green: #26C281;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Language Selector
   =========================== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.lang-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.lang-btn.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 110px;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    text-align: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 155, 66, 0.15) 0%, rgba(110, 197, 184, 0.15) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 72px;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(255, 155, 66, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 1s ease 0.6s both;
}

.badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 12px 26px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-orange);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.badge-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background: #fff5ed;
}

.badge-cta {
    font-size: 18px;
    padding: 16px 34px;
    background: linear-gradient(135deg, #FF9B42 0%, #FF6B6B 100%);
    color: white;
    font-weight: 800;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(255, 155, 66, 0.4);
    animation: heroGlow 2.5s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.badge-cta::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -25%;
    width: 50%;
    height: 220%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    transform: rotate(25deg);
    animation: badgeShine 3.2s linear infinite;
}

.badge-cta:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 30px rgba(255, 155, 66, 0.55);
}

.badge-row-cta {
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-indicator,
    .scroll-indicator span::before,
    .badge-cta::after {
        animation: none !important;
    }
}

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

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

@keyframes heroGlow {
    from {
        box-shadow: 0 10px 25px rgba(255, 155, 66, 0.35);
    }
    to {
        box-shadow: 0 16px 40px rgba(255, 155, 66, 0.55);
    }
}

@keyframes badgeShine {
    0% {
        transform: translateX(-150%) rotate(25deg);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translateX(250%) rotate(25deg);
        opacity: 0;
    }
}

@keyframes badgeGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ===========================
   Announcement Banner
   =========================== */
.announcement {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8329 100%);
    padding: 30px 0;
    text-align: center;
}

.announcement-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.announcement-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* ===========================
   Gift Card Banner
   =========================== */
.giftcard-banner {
    background: linear-gradient(135deg, var(--secondary-teal) 0%, #5AB5A8 100%);
    padding: 25px 0;
}

.giftcard-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.giftcard-banner-icon {
    font-size: 40px;
}

.giftcard-banner-text {
    text-align: center;
}

.giftcard-banner-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.giftcard-banner-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.giftcard-banner-btn {
    background: white;
    color: var(--secondary-teal);
    padding: 12px 28px;
    font-size: 15px;
}

.giftcard-banner-btn:hover {
    background: var(--bg-cream);
    color: #4A9E91;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .giftcard-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .giftcard-banner-text h3 {
        font-size: 20px;
    }
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-teal) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===========================
   Merienda Shows
   =========================== */
.shows {
    background: var(--bg-white);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.show-card {
    background: var(--bg-light);
    border-radius: 30px;
    border: 2px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(255, 155, 66, 0.1);
    position: relative;
}

.show-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: white;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.show-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.show-label {
    align-self: flex-start;
    background: rgba(255, 155, 66, 0.15);
    color: var(--primary-orange);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.show-date {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: var(--text-dark);
}

.show-title {
    font-size: 24px;
    font-weight: 700;
    color: #E67E22;
    line-height: 1.3;
    margin: 5px 0;
}

.show-details {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.5;
}

.show-note {
    font-size: 15px;
    color: var(--text-gray);
}

.show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
}

.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.btn-secondary {
    background: #fff;
    border-color: var(--border-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 110, 114, 0.15);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 155, 66, 0.25);
}

.btn-whatsapp {
    border-color: var(--success-green);
    color: var(--success-green);
}

.btn-whatsapp:hover {
    background: var(--success-green);
    color: white;
    box-shadow: 0 10px 20px rgba(38, 194, 129, 0.25);
}

/* Past Shows Styling */
.show-card.past-show {
    opacity: 0.7;
    filter: grayscale(30%);
}

.show-card.past-show .show-image {
    position: relative;
}

.show-card.past-show .show-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.show-label.past-label {
    background: rgba(110, 197, 184, 0.2);
    color: var(--secondary-teal);
}

.share-panel {
    width: 100%;
    flex-basis: 100%;
    margin-top: 12px;
    background: white;
    border-radius: 22px;
    border: 2px solid var(--border-light);
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    gap: 12px;
}

.share-panel.active {
    display: flex;
    animation: fadeInUp 0.25s ease;
}

.share-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.share-panel-title {
    font-weight: 700;
    color: var(--text-dark);
}

.share-panel-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}

.share-panel-close:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

.share-link-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

.share-link-input {
    flex: 1 1 240px;
    border: 2px dashed var(--border-light);
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
}

.share-copy-btn {
    flex: 0 0 auto;
}

.share-feedback {
    font-size: 14px;
    min-height: 18px;
    color: var(--success-green);
}

.share-feedback.error {
    color: #E74C3C;
}

.share-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===========================
   Birthdays Section
   =========================== */
.birthdays {
    background: var(--bg-cream);
}

.birthdays-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.birthdays-info p {
    color: var(--text-gray);
    font-size: 17px;
    margin-bottom: 20px;
}

.birthdays-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: grid;
    gap: 12px;
}

.birthdays-list li {
    padding: 14px 18px;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.birthdays-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.birthdays-actions .btn-primary,
.birthdays-actions .btn-outline {
    flex: 0 0 auto;
}

.birthday-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.birthday-card {
    background: white;
    border-radius: 24px;
    border: 2px solid var(--border-light);
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.birthday-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.birthday-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: #E67E22;
}

.birthday-card p {
    color: var(--text-gray);
    font-size: 15px;
    flex: 1;
}

.status-pill {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(110, 197, 184, 0.15);
    color: var(--secondary-teal);
}

.status-pill.soon {
    background: rgba(255, 155, 66, 0.15);
    color: var(--primary-orange);
}

.birthday-card .btn-primary,
.birthday-card .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
}

/* ===========================
   Reservations Section
   =========================== */
.reservations {
    background: white;
}

.reservation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.reservation-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 155, 66, 0.1) 0%, rgba(110, 197, 184, 0.1) 100%);
    transform: scale(1.05);
}

.reservation-card.wide {
    grid-column: 1 / -1;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: start;
}

.reservation-card.wide .card-icon {
    display: none;
}

.reservation-card.wide h3 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
}

.reservation-card.wide .pricing-column {
    padding: 10px;
}

.reservation-card.wide .pricing-column h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.reservation-card.wide .pricing-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.reservation-card.wide .pricing-list li {
    padding: 5px 0;
    font-size: 15px;
}

.reservation-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 155, 66, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reservation-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reservation-card p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #FF8329;
    box-shadow: 0 6px 20px rgba(255, 155, 66, 0.4);
    transform: translateY(-2px);
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: #E67E22;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 155, 66, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

.feature p a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.feature p a:hover {
    text-decoration: underline;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 155, 66, 0.2);
    border-color: var(--secondary-teal);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: #E67E22;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 155, 66, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 155, 66, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 155, 66, 0.15);
}

.faq-item summary {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    padding-right: 30px;
    position: relative;
    font-family: 'Fredoka', sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--secondary-teal);
    box-shadow: 0 8px 25px rgba(110, 197, 184, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 32px;
}

.contact-details h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: #E67E22;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-orange);
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    background: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: white;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 3px solid var(--border-light);
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

footer small,
.pensanta-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 20px;
    margin-left: 0;
    margin-right: auto;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
}

footer small:hover,
.pensanta-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
}

footer small svg,
.pensanta-credit svg {
    flex-shrink: 0;
    opacity: 0.8;
    color: var(--primary-orange);
}

footer small a,
.pensanta-credit a {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer small a:hover,
.pensanta-credit a:hover {
    color: var(--primary-orange);
}

/* ===========================
   Floating Reservation Button
   =========================== */
/* ===========================
   Floating Gift Card Button
   =========================== */
.giftcard-float {
    position: fixed;
    bottom: 30px;
    right: 570px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-teal) 0%, #5AB5A8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(110, 197, 184, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.giftcard-float:hover {
    background: linear-gradient(135deg, #5AB5A8 0%, #4A9E91 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 197, 184, 0.6);
}

.giftcard-float-icon {
    width: 22px;
    height: 22px;
}

.giftcard-float-text {
    white-space: nowrap;
}

.order-float {
    position: fixed;
    bottom: 30px;
    right: 302px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.order-float:hover {
    background: linear-gradient(135deg, #43A047 0%, #5CB85C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.order-icon {
    font-size: 20px;
    line-height: 1;
}

.order-text {
    white-space: nowrap;
}

.reservation-float {
    position: fixed;
    bottom: 30px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF9B42 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 155, 66, 0.5);
    }
}

.reservation-float:hover {
    background: linear-gradient(135deg, #FF5520 0%, #FF8B32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    animation: none;
}

.reservation-icon {
    font-size: 24px;
    line-height: 1;
}

.reservation-text {
    white-space: nowrap;
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .language-selector {
        top: 70px;
        right: 10px;
        padding: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 18px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-content {
        padding-right: 20px;
    }

    .logo {
        font-size: 24px;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .hero-logo {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reservation-options {
        grid-template-columns: 1fr;
    }

    .reservation-card.featured {
        transform: scale(1);
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .show-content {
        padding: 24px;
    }

    .show-actions {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

    .giftcard-float {
        right: 465px;
        bottom: 20px;
        padding: 10px 18px;
        font-size: 14px;
        gap: 8px;
    }

    .giftcard-float-icon {
        width: 18px;
        height: 18px;
    }

    .order-float {
        right: 245px;
        bottom: 20px;
        padding: 10px 18px;
        font-size: 14px;
        gap: 8px;
    }

    .order-icon {
        font-size: 18px;
    }

    .reservation-float {
        right: 78px;
        bottom: 20px;
        padding: 10px 18px;
        font-size: 14px;
        gap: 8px;
    }

    .reservation-icon {
        font-size: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }

    .birthdays-actions .btn-primary,
    .birthdays-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .giftcard-float {
        display: none;
    }

    .order-float {
        right: 15px;
        bottom: 70px;
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .order-icon {
        font-size: 16px;
    }

    .reservation-float {
        right: 75px;
        bottom: 15px;
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .reservation-icon {
        font-size: 18px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .btn-secondary,
    .btn-outline {
        width: 100%;
    }

    .show-actions .btn-secondary,
    .show-actions .btn-outline {
        width: auto;
    }
}

/* ===========================
   Pricing Button
   =========================== */
.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid var(--secondary-teal);
    background: transparent;
    color: var(--secondary-teal);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.btn-pricing:hover {
    background: var(--secondary-teal);
    color: white;
    box-shadow: 0 10px 20px rgba(110, 197, 184, 0.25);
}

/* ===========================
   Modals
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h3 {
    font-size: 28px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-info {
    text-align: center;
}

.pricing-main {
    font-size: 48px;
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    max-width: 350px;
}

.pricing-list li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.pricing-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.pricing-extras {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.pricing-extra-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
}

.pricing-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.pricing-extra-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pricing-extra-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.pricing-subtitle-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 8px;
}

.pricing-main-spacing {
    margin-top: 20px;
}

.pricing-card-compact {
    margin: 16px 0;
}

.pricing-card-list {
    text-align: left;
    margin: 16px 0;
    font-size: 14px;
}

.kosher-notice {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 2px solid #E8E8E8;
}

.kosher-notice p {
    color: #636E72;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.kosher-notice strong {
    color: #2D3436;
}

.kosher-notice a {
    color: var(--primary-orange);
}

.online-order-notice {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8533 100%);
    border-radius: 15px;
    text-align: center;
}

.online-order-notice p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.online-order-notice strong {
    color: white;
}

.online-order-notice .btn-small {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 16px;
    background: white;
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.online-order-notice .btn-small:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .online-order-notice .btn-small {
        display: block;
        margin: 15px auto 0;
        width: fit-content;
    }
}

/* ===========================
   Image Lightbox
   =========================== */
.clickable-image {
    cursor: zoom-in;
    position: relative;
}

.clickable-image:hover {
    opacity: 0.95;
}

.modal.lightbox {
    background-color: rgba(0, 0, 0, 0.95);
}

.modal.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal.lightbox .modal-close {
    color: white;
    font-size: 40px;
    top: 20px;
    right: 30px;
}

.modal.lightbox .modal-close:hover {
    color: var(--accent-yellow);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 25px 18px;
        max-height: 85vh;
    }

    .pricing-main {
        font-size: 32px;
    }

    .pricing-subtitle-text {
        font-size: 14px;
        margin-top: 5px;
    }

    .modal-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .pricing-subtitle {
        font-size: 16px;
        margin: 15px 0 8px;
    }

    .pricing-list {
        margin: 0 auto 20px;
        font-size: 14px;
    }

    .pricing-list li {
        padding: 6px 0;
        font-size: 14px;
    }

    .pricing-extras {
        margin-top: 20px;
        gap: 12px;
    }

    .pricing-extra-item {
        flex-direction: row;
        padding: 12px;
    }

    .pricing-icon {
        font-size: 22px;
    }

    .pricing-extra-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    .pricing-extra-item strong {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .kosher-notice {
        padding: 15px;
        margin-top: 20px;
    }

    .kosher-notice p {
        font-size: 14px;
    }
}

/* ===========================
   Gift Card Landing Page
   =========================== */
.giftcard-hero-page {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 120px 0 40px;
    text-align: center;
}

.giftcard-hero-page h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.giftcard-hero-page .subtitle {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.giftcard-hero-page .intro {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.giftcard-hero-cta {
    display: inline-block;
    margin: 20px 0;
}

.giftcard-section {
    padding: 40px 0;
}

.giftcard-section:first-of-type {
    padding-top: 10px;
}

.giftcard-section:nth-child(even) {
    background: var(--bg-white);
}

.giftcard-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.giftcard-section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.giftcard-uses {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.giftcard-use-item {
    background: var(--bg-light);
    padding: 12px 10px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-light);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.giftcard-use-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.giftcard-steps {
    max-width: 600px;
    margin: 0 auto;
    counter-reset: step;
}

.giftcard-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.giftcard-step::before {
    counter-increment: step;
    content: counter(step);
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.giftcard-step p {
    font-size: 18px;
    color: var(--text-dark);
    padding-top: 8px;
    margin: 0;
}

.giftcard-ideal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.giftcard-ideal-item {
    background: white;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.giftcard-ideal-item::before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    font-size: 18px;
}

.giftcard-validity {
    background: var(--bg-light);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.giftcard-validity p {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.giftcard-validity strong {
    color: var(--primary-orange);
}

.giftcard-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8329 100%);
}

.giftcard-cta h2 {
    color: white;
    margin-bottom: 30px;
}

.giftcard-cta .btn-primary {
    background: white;
    color: var(--primary-orange);
    font-size: 20px;
    padding: 20px 50px;
}

.giftcard-cta .btn-primary:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .giftcard-hero-page {
        padding: 100px 0 30px;
    }

    .giftcard-hero-page h1 {
        font-size: 36px;
    }

    .giftcard-hero-page .subtitle {
        font-size: 20px;
    }

    .giftcard-section h2 {
        font-size: 26px;
    }

    .giftcard-uses {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   Kosher Food Page Styles
   =========================== */
.kosher-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.kosher-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.kosher-hero .subtitle {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.kosher-hero .intro {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.kosher-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.kosher-section {
    padding: 50px 0;
}

.kosher-section:nth-child(even) {
    background: var(--bg-white);
}

.kosher-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.kosher-section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.kosher-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.kosher-menu-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.kosher-menu-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.kosher-menu-item h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.kosher-menu-item p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.kosher-menu-item ul {
    list-style: none;
    margin: 10px 0;
}

.kosher-menu-item ul li {
    color: var(--text-gray);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.kosher-menu-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: bold;
}

.kosher-menu-item small {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 10px;
}

.kosher-drinks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.kosher-drink {
    background: var(--bg-light);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.kosher-source {
    text-align: center;
}

.kosher-source p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.kosher-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8533 100%);
    padding: 60px 0;
    text-align: center;
}

.kosher-cta h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

.kosher-cta > .container > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

.kosher-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.kosher-cta .btn-primary {
    background: white;
    color: var(--primary-orange);
}

.kosher-cta .btn-primary:hover {
    background: var(--bg-cream);
}

.kosher-cta .btn-outline {
    border-color: white;
    color: white;
}

.kosher-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .kosher-hero {
        padding: 100px 0 40px;
    }

    .kosher-hero h1 {
        font-size: 36px;
    }

    .kosher-hero .subtitle {
        font-size: 20px;
    }

    .kosher-section h2 {
        font-size: 26px;
    }

    .kosher-menu-grid {
        grid-template-columns: 1fr;
    }

    .kosher-cta h2 {
        font-size: 28px;
    }

    .menu-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .menu-category-card {
        padding: 20px 15px;
    }

    .menu-category-icon {
        font-size: 32px;
    }

    .menu-category-card h3 {
        font-size: 14px;
    }

    .menu-category-card p {
        font-size: 12px;
    }
}

/* ===========================
   Menu Categories Grid
   =========================== */
.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.menu-category-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
}

.menu-category-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.menu-category-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.menu-category-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 480px) {
    .menu-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .menu-category-card {
        padding: 15px 10px;
    }

    .menu-category-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .menu-category-card h3 {
        font-size: 13px;
    }

    .menu-category-card p {
        display: none;
    }
}
