/* Veranda Menu Styles - Based on Salkhino Design */

/* Hero Section Styles from Salkhino */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-bg-layer-1 {
    background: radial-gradient(circle at 20% 80%, rgba(216, 163, 32, 0.08) 0%, transparent 50%);
    animation: layer1Float 25s ease-in-out infinite;
}

.hero-bg-layer-2 {
    background: radial-gradient(circle at 80% 20%, rgba(216, 163, 32, 0.06) 0%, transparent 50%);
    animation: layer2Float 30s ease-in-out infinite reverse;
}

.hero-bg-layer-3 {
    background: radial-gradient(circle at 40% 40%, rgba(216, 163, 32, 0.05) 0%, transparent 50%);
    animation: layer3Float 35s ease-in-out infinite;
}

@keyframes layer1Float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    33% { transform: translateY(-30px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(15px) rotate(240deg); opacity: 0.6; }
}

@keyframes layer2Float {
    0%, 100% { transform: translateX(0px) scale(1); opacity: 0.7; }
    50% { transform: translateX(20px) scale(1.1); opacity: 0.9; }
}

@keyframes layer3Float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    50% { transform: translateY(-20px) translateX(15px); opacity: 0.8; }
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    height: 100%;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Left Content */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    animation: slideInLeft 1.5s ease-out 0.5s both;
}

/* Right Content */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1.5s ease-out 0.5s both;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(216, 163, 32, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-image-container:hover .hero-image-overlay {
    opacity: 1;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(216, 163, 32, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 163, 32, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cccccc;
    align-self: flex-start;
    margin-bottom: 1rem;
    animation: badgeSlideIn 1s ease-out 0.8s both;
    box-shadow: 0 4px 12px rgba(216, 163, 32, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
    color: #d8a320;
    animation: iconBounce 2s ease-in-out infinite 1.5s;
    filter: drop-shadow(0 0 8px rgba(216, 163, 32, 0.6));
}

.hero-title {
    font-family: 'Noto Serif Georgian', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    animation: titleReveal 1.2s ease-out 1s both;
}

.title-main {
    display: block;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.2rem;
}

.title-accent {
    display: block;
    color: #d8a320;
    text-shadow: 0 0 15px rgba(216, 163, 32, 0.6);
    filter: drop-shadow(0 0 10px rgba(216, 163, 32, 0.4));
    margin-bottom: 0.3rem;
}

.title-highlight {
    display: block;
    color: #d8a320;
    text-shadow: 0 0 15px rgba(216, 163, 32, 0.8);
}

.hero-description {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.5;
    color: #cccccc;
    margin: 0.8rem 0 0 0;
    max-width: 400px;
    animation: descriptionFadeIn 1s ease-out 1.3s both;
}


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

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}




@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Actions Spacing */
.hero-actions {
    margin-top: 1.5rem;
    animation: descriptionFadeIn 1s ease-out 1.8s both;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
        max-width: 100%;
        align-items: center;
        justify-content: center;
        min-height: 50vh; /* More compact since no image */
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 15px;
        margin: 0.5rem;
    }

    .hero-left {
        gap: 1rem;
        order: 1; /* Text is now the main content */
        display: flex; /* Show text on mobile */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-right {
        order: 1; /* Image comes first on mobile */
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
        display: none; /* Hide image on mobile */
    }

    .hero-badge {
        display: none !important; /* Hide badge on mobile */
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        line-height: 1.1;
        margin-bottom: 0.6rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 800;
        color: #ffffff;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 95%;
        line-height: 1.4;
        margin-bottom: 0.7rem;
        opacity: 0.95;
        font-weight: 400;
        color: #cccccc;
    }

    .hero-actions {
        justify-content: center;
        gap: 0.8rem;
        margin-top: 0.8rem;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        flex: none;
        min-width: 160px;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #d8a320 0%, #b8860b 100%);
        color: #ffffff;
        border: 2px solid #d8a320;
    }

    .hero-actions .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(216, 163, 32, 0.4);
        background: linear-gradient(135deg, #b8860b 0%, #d8a320 100%);
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 45vh;
        min-height: 350px;
        padding: 0.5rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    }

    .hero-content-wrapper {
        padding: 1rem;
        gap: 1rem;
        min-height: 45vh;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 15px;
        margin: 0.5rem;
    }

    .hero-left {
        gap: 0.8rem;
        display: flex; /* Show text on small mobile */
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.5rem;
        display: none; /* Hide image on small mobile */
    }

    .hero-badge {
        display: none !important; /* Hide badge on small mobile */
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.1;
        margin-bottom: 0.6rem;
        font-weight: 800;
        color: #ffffff;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 95%;
        line-height: 1.4;
        margin-bottom: 0.7rem;
        font-weight: 400;
        color: #cccccc;
    }


}

/* Extra small mobile - show everything nicely */
@media (max-width: 576px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
        padding-top: 60px; /* Reduce navbar interference */
        padding: 0.5rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    }

    .hero-content-wrapper {
        padding: 1rem;
        gap: 1rem;
        align-items: center;
        min-height: 40vh;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 15px;
        margin: 0.5rem;
    }

    .hero-left {
        display: flex !important; /* Show text on very small mobile */
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.5rem;
        display: none; /* Hide image on very small mobile */
    }

    .hero-badge {
        display: none !important; /* Hide badge on very small mobile */
    }

    .hero-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0.6rem;
        font-weight: 800;
        color: #ffffff;
    }

    .hero-description {
        font-size: 0.9rem;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 0.7rem;
        font-weight: 400;
        color: #cccccc;
    }

    .hero-actions {
        gap: 0.6rem;
        margin-top: 0.8rem;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        min-width: 120px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        font-weight: 600;
        background: linear-gradient(135deg, #d8a320 0%, #b8860b 100%);
        color: #ffffff;
        border: 2px solid #d8a320;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .hero-actions .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(216, 163, 32, 0.4);
    }
}

:root {
  --primary-color: #d8a320; /* ოქროსფერი */
  --secondary-color: #1a1a1a; /* მუქი ნაცრისფერი */
  --accent-color: #333333; /* შავი-ნაცრისფერი */
  --success-color: #d8a320; /* ოქროსფერი */
  --warning-color: #d8a320; /* ოქროსფერი */
  --error-color: #666666; /* ნაცრისფერი */
  --text-primary: #ffffff; /* თეთრი ტექსტი */
  --text-secondary: #cccccc; /* ნაცრისფერი ტექსტი */
  --text-light: #ffffff; /* თეთრი */
  --bg-primary: #000000; /* შავი background */
  --bg-secondary: #1a1a1a; /* მუქი ნაცრისფერი */
  --bg-dark: #000000; /* შავი */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.5);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.7);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.8);
  --border-radius: 8px;
  --border-radius-large: 12px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Noto Serif Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(209, 165, 91, 0.2);
  z-index: 1000;
  transition: opacity var(--transition-normal);
}

.scroll-progress .bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 0%;
  transition: width var(--transition-fast);
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(209, 165, 91, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transition: transform var(--transition-fast);
}

.navbar-container {
  position: relative;
  z-index: 100;
}

/* Hero Section Styles */
.veranda-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #000000 50%, var(--secondary-color) 100%);
}

.veranda-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.veranda-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: float 20s ease-in-out infinite;
}

.veranda-hero-bg-layer-1 {
  background: linear-gradient(135deg, rgba(216, 163, 32, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  animation-delay: 0s;
}

.veranda-hero-bg-layer-2 {
  background: linear-gradient(45deg, rgba(216, 163, 32, 0.06) 0%, rgba(0, 0, 0, 0.8) 100%);
  animation-delay: -5s;
}

.veranda-hero-bg-layer-3 {
  background: linear-gradient(90deg, rgba(216, 163, 32, 0.05) 0%, rgba(26, 26, 26, 0.85) 100%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(-5px) translateX(-5px);
  }
  75% {
    transform: translateY(-15px) translateX(3px);
  }
}

.veranda-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform var(--transition-slow);
}

.veranda-hero-bg:hover img {
  transform: scale(1.05);
}

.veranda-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(209, 165, 91, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%);
  z-index: 1;
}

.veranda-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(216, 163, 32, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 163, 32, 0.3);
  border-radius: var(--border-radius-large);
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  transition: all var(--transition-fast);
}

.hero-badge:hover {
  background: rgba(216, 163, 32, 0.2);
  border-color: rgba(216, 163, 32, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 163, 32, 0.3);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  filter: drop-shadow(0 0 8px rgba(216, 163, 32, 0.6));
}

.badge-text {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.title-main {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--text-secondary);
}

.title-accent {
  display: block;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(216, 163, 32, 0.6);
  filter: drop-shadow(0 0 15px rgba(216, 163, 32, 0.4));
}

.title-highlight {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(216, 163, 32, 0.8);
  filter: drop-shadow(0 0 20px rgba(216, 163, 32, 0.5));
}






.veranda-hero-content h1 {
  font-family: 'Noto Serif Georgian', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--text-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.veranda-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.veranda-hero-content .hero-actions {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.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 var(--transition-normal);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #b8954a);
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-ghost:hover {
  background: var(--primary-color);
  color: var(--text-primary);
}

/* Menu Section */
.veranda-menu-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-primary) 50%, var(--bg-dark) 100%);
}

.back-to-venues {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.back-to-venues:hover {
  color: var(--primary-color);
  background-color: var(--bg-secondary);
}

.back-to-venues svg {
  transition: transform var(--transition-fast);
}

.back-to-venues:hover svg {
  transform: translateX(-3px);
}

/* Menu Header */
.menu-header {
  margin-bottom: 2rem;
}

/* Search and Menu Type Toggle */
.search-wrapper {
  margin-bottom: 1.5rem;
}

.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 2rem 1rem 1rem;
  border: 2px solid var(--bg-secondary);
  border-radius: var(--border-radius-large);
  font-size: 1rem;
  background-color: var(--bg-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(209, 165, 91, 0.1);
}

.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.menu-type-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.menu-type-toggle {
  display: flex;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-large);
  padding: 0.25rem;
  box-shadow: var(--shadow-light);
}

.menu-type-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.menu-type-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(209, 165, 91, 0.2), transparent);
  transition: left var(--transition-normal);
}

.menu-type-btn:hover::before {
  left: 100%;
}

.menu-type-btn.active {
  background: linear-gradient(135deg, var(--primary-color), #b8954a);
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
}

.menu-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-type-icon svg {
  width: 20px;
  height: 20px;
}

/* Menu Content */
.menu-content-wrapper {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.menu-content-wrapper.active {
  display: block;
}

/* Menu Categories */
.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.menu-category h3 svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-large);
  padding: 1.25rem;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
  border: 2px solid rgba(0, 212, 170, 0.1);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216, 163, 32, 0.08), transparent);
  transition: left var(--transition-normal);
}

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

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(216, 163, 32, 0.3);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(216, 163, 32, 0.05) 100%);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.menu-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
  margin-right: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Price Options */
.price-options {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.price-option {
  padding: 0.25rem 0.75rem;
  border: 2px solid rgba(216, 163, 32, 0.3);
  border-radius: var(--border-radius);
  background: rgba(216, 163, 32, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.price-option:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(216, 163, 32, 0.1);
}

.price-option.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(216, 163, 32, 0.5);
}

.price-option[style*="opacity: 0.5"] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Wine Serving Size */
.wine-serving-size {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin: 0.25rem 0 0.5rem;
  font-style: italic;
  text-shadow: 0 0 5px rgba(216, 163, 32, 0.6);
}

/* Add to Cart Button */
.add-to-cart {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #b8954a);
  color: var(--text-primary);
  border: none;
  transition: all var(--transition-fast);
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.add-to-cart.added {
  background: var(--success-color);
  color: white;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  display: none;
}

.no-results p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Calculator Section */
.veranda-calculator {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  transition: right var(--transition-normal);
  overflow-y: auto;
  border-left: 1px solid rgba(216, 163, 32, 0.2);
}

.veranda-calculator.mobile-open {
  right: 0;
}

.mobile-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.calc-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(216, 163, 32, 0.2);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(216, 163, 32, 0.3);
}

.calc-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calc-header p {
  font-size: 1rem;
  opacity: 0.9;
}

.mobile-calc-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  z-index: 1001;
}

.mobile-calc-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.calc-wrapper {
  padding: 0;
}

/* Cart Section */
.cart-section {
  padding: 0;
}

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(216, 163, 32, 0.2);
  background: rgba(216, 163, 32, 0.05);
}

.cart-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-header svg {
  color: var(--primary-color);
  filter: drop-shadow(0 0 5px rgba(216, 163, 32, 0.6));
}

.cart-items {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  padding: 0;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-secondary);
}

.empty-cart svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.empty-cart span {
  font-size: 0.9rem;
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(216, 163, 32, 0.1);
  transition: background-color var(--transition-fast);
}

.cart-item:hover {
  background: rgba(216, 163, 32, 0.05);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--bg-secondary);
  background: var(--bg-primary);
  color: var(--text-secondary);
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.qty-display {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

.remove-btn {
  padding: 0.25rem 0.75rem;
  border: none;
  background: var(--error-color);
  color: white;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.remove-btn:hover {
  background: #c0392b;
  transform: scale(1.05);
}

/* Cart Total */
.cart-total {
  padding: 2rem;
  border-top: 2px solid var(--primary-color);
  background: rgba(216, 163, 32, 0.03);
  box-shadow: inset 0 2px 10px rgba(216, 163, 32, 0.1);
}

.total-breakdown {
  margin-bottom: 1rem;
}

.subtotal-line,
.vat-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.final-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(216, 163, 32, 0.3);
  text-shadow: 0 0 8px rgba(216, 163, 32, 0.6);
}

/* Cart Actions */
.cart-actions {
  padding: 1rem 2rem 2rem;
  border-top: 1px solid rgba(216, 163, 32, 0.2);
  display: flex;
  gap: 1rem;
}

.cart-actions .btn {
  flex: 1;
}

.cart-actions .btn-ghost {
  background: transparent;
  border: 2px solid var(--error-color);
  color: var(--error-color);
}

.cart-actions .btn-ghost:hover {
  background: var(--error-color);
  color: white;
}

/* Mobile Cart Elements */
.mobile-cart-total {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-primary);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 0 20px rgba(216, 163, 32, 0.5);
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--transition-normal);
}

.mobile-cart-total.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cart-total:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  box-shadow: 0 0 30px rgba(216, 163, 32, 0.7);
}

.mobile-cart-sticky {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: 0 8px 25px rgba(216, 163, 32, 0.4);
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateY(100px) scale(0.8);
}

.mobile-cart-sticky.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-cart-sticky:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(216, 163, 32, 0.6);
}

.mobile-cart-sticky svg {
  width: 24px;
  height: 24px;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--success-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  z-index: 1000;
  transform: translateX(400px);
  transition: transform var(--transition-normal);
  font-weight: 500;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  background: var(--error-color);
}

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

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

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

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  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 scrollWheelMove {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .veranda-hero-content h1 {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .veranda-hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .menu-items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .veranda-hero {
    min-height: 80vh;
  }

  .veranda-hero-content {
    padding: 1rem;
  }

  .veranda-hero-content h1 {
    font-size: clamp(1.8rem, 12vw, 3rem);
  }

  .veranda-hero-content p {
    font-size: clamp(0.8rem, 4vw, 1rem);
  }

  .veranda-menu-section {
    padding: 2rem 0;
  }

  .menu-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .menu-type-toggle {
    flex-wrap: wrap;
  }

  .menu-type-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }

  .veranda-calculator {
    width: 100%;
    right: -100%;
    background: #000000;
    border-left: none;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .veranda-calculator.mobile-open {
    right: 0 !important;
    animation: slideInFromRight 0.3s ease-out;
  }

  .mobile-calc-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    z-index: 1001;
  }

  .mobile-calc-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
  }

  .calc-header {
    background: linear-gradient(135deg, rgba(216,163,32,0.1) 0%, rgba(216,163,32,0.05) 100%);
    border-bottom: 1px solid rgba(216,163,32,0.2);
    padding: 2rem 1.5rem 1.5rem;
    margin-bottom: 0;
  }

  .calc-header h2 {
    color: #d8a320;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: center;
  }

  .calc-header p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    opacity: 0.8;
  }

  .cart-section {
    padding: 1.5rem;
  }

  .cart-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(216,163,32,0.2);
    margin-bottom: 1.5rem;
  }

  .cart-header h3 {
    color: #d8a320;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-header svg {
    width: 24px;
    height: 24px;
    color: #d8a320;
  }

  .cart-items {
    max-height: 40vh;
    overflow-y: auto;
    margin-bottom: 1.5rem;
  }

  .empty-cart {
    text-align: center;
    padding: 2rem 1rem;
    color: #888;
  }

  .empty-cart svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.5;
  }

  .empty-cart p {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: #aaa;
  }

  .empty-cart span {
    font-size: 0.9rem;
    color: #777;
  }

  .cart-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(216,163,32,0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
  }

  .cart-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(216,163,32,0.3);
    transform: translateY(-2px);
  }

  .cart-item-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .cart-item-price {
    color: #d8a320;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #d8a320 0%, #b8860b 100%);
    border: none;
    border-radius: 8px;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(216,163,32,0.3);
  }

  .qty-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(216,163,32,0.4);
  }

  .qty-btn:active {
    transform: scale(0.95);
  }

  .qty-display {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(216,163,32,0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    min-width: 50px;
    text-align: center;
    backdrop-filter: blur(5px);
  }

  .remove-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(220,53,69,0.3);
  }

  .remove-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220,53,69,0.4);
  }

  .cart-total {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(216,163,32,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .total-breakdown {
    margin-bottom: 1rem;
  }

  .subtotal-line,
  .vat-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #e0e0e0;
  }

  .subtotal-line span:first-child,
  .vat-line span:first-child {
    opacity: 0.8;
  }

  .subtotal-line span:last-child,
  .vat-line span:last-child {
    font-weight: 600;
  }

  .final-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #d8a320;
    border-top: 1px solid rgba(216,163,32,0.3);
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }

  .cart-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .cart-actions .btn-ghost {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(216,163,32,0.3);
    color: #d8a320;
  }

  .cart-actions .btn-ghost:hover {
    background: rgba(216,163,32,0.1);
    border-color: #d8a320;
  }

  .cart-actions .btn-primary {
    background: linear-gradient(135deg, #d8a320 0%, #b8860b 100%);
    border: none;
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(216,163,32,0.4);
  }

  .cart-actions .btn-primary:hover {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    box-shadow: 0 8px 24px rgba(216,163,32,0.5);
  }
}

@media (max-width: 480px) {
  .veranda-hero {
    min-height: 70vh;
  }

  .veranda-hero-content h1 {
    font-size: clamp(1.5rem, 15vw, 2.5rem);
  }

  .veranda-hero-content p {
    font-size: clamp(0.75rem, 5vw, 0.9rem);
  }

  .menu-category h3 {
    font-size: 1.5rem;
  }

  .menu-item h4 {
    font-size: 1rem;
  }

  .price {
    font-size: 1.1rem;
  }

  .mobile-cart-sticky {
    bottom: 80px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .mobile-cart-sticky svg {
    width: 20px;
    height: 20px;
  }
}

/* Print Styles */
@media print {
  .veranda-calculator,
  .mobile-cart-sticky,
  .mobile-cart-total,
  .mobile-cart-overlay,
  .scroll-progress,
  .cursor-glow {
    display: none !important;
  }

  .menu-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-dark: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #ffffff;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
  }

  .menu-item {
    background-color: var(--bg-secondary);
    border-color: var(--bg-dark);
  }

  .menu-item:hover {
    border-color: var(--primary-color);
  }

  .price-option {
    border-color: var(--bg-dark);
    color: var(--text-secondary);
  }

  .price-option:hover {
    border-color: var(--primary-color);
  }

  .cart-item:hover {
    background-color: var(--bg-dark);
  }

  .cart-total {
    background-color: var(--bg-dark);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .veranda-hero-bg img {
    transform: none !important;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #d8a320;
    --text-primary: #ffffff;
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
  }

  .btn {
    border: 2px solid currentColor;
  }

  .menu-item {
    border: 2px solid var(--text-secondary);
  }

  .menu-item:hover {
    border-color: var(--primary-color);
  }
}

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

/* Package Styles */
.menu-package {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(209, 165, 91, 0.3);
}

.package-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.package-items {
  margin-bottom: 2rem;
}

.package-section {
  margin-bottom: 1.5rem;
}

.package-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.package-item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.package-item {
  background: var(--bg-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-primary);
  position: relative;
  transition: var(--transition);
}

.package-item:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.select-package-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.select-package-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.select-package-btn:active {
  transform: translateY(0);
}

/* Mobile responsive for packages */
@media (max-width: 768px) {
  .menu-package {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .package-price {
    font-size: 2rem;
  }

  .package-item-list {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .package-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  .select-package-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .menu-package {
    padding: 1rem;
  }

  .package-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .package-price {
    font-size: 1.8rem;
  }

  .package-subtitle {
    font-size: 0.9rem;
  }

  .package-item {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
  }

  .select-package-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

