/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #7A4DB8;
    --primary-dark: #181818;
    --secondary-dark: #1F1F1F;
    --menu-bg: #181818;
    --menu-secondary: #1F1F1F;
    --menu-accent: #D4AF37;
    --neon-green: #7A4DB8;
    --neon-purple: #D4AF37;
    --menu-text: #EAEAEA;
    --menu-text-secondary: #B8B8B8;
    --text-light: #EAEAEA;
    --text-gray: #B8B8B8;
    --glass-bg: rgba(212, 175, 55, 0.1);
    --glass-border: rgba(212, 175, 55, 0.2);
    --font-primary: 'Sora', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: var(--primary-green);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--text-light);
    transition: 0.3s;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(31, 31, 31, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--neon-purple);
    background: rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.breadcrumb-icon {
    font-size: 1rem;
}

.breadcrumb-separator {
    color: var(--text-gray);
    margin: 0 0.5rem;
    opacity: 0.6;
}

.breadcrumb-current {
    color: var(--text-light);
    font-weight: 500;
}

.breadcrumb-current span {
    padding: 0.25rem 0.5rem;
}

/* Blog Styles */
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.blog-article {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1.1rem;
}

.blog-article h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.blog-article h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.blog-article p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-article ul, .blog-article ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.blog-article strong {
    color: var(--accent-color);
    font-weight: 600;
}

.blog-article blockquote {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
}

.blog-article cite {
    display: block;
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--accent-color);
}

.cta-list {
    list-style: none;
    padding: 0;
}

.cta-list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.cta-list a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.cta-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 1rem;
    }
    
    .blog-article {
        padding: 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .blog-article h2 {
        font-size: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    min-height: 80vh;
    padding: 2rem 0;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--accent-color);
}

.legal-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
}

.legal-section p {
    margin-bottom: 1rem;
    text-align: justify;
    color: var(--text-color);
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
    text-align: center;
}

.legal-footer p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.flavors-hero {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(31, 31, 31, 0.95) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.15; /* Reduced opacity from 0.2 to 0.15 */
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #D4AF37 0%, transparent 2%),
                radial-gradient(circle at 80% 70%, #7A4DB8 0%, transparent 1%),
                radial-gradient(circle at 60% 20%, #D4AF37 0%, transparent 1.5%);
    animation: particleFloat 15s infinite ease-in-out;
    z-index: 2;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #7A4DB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s infinite alternate;
    filter: drop-shadow(0 0 20px rgba(122, 77, 184, 0.4));
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(122, 77, 184, 0.4)); }
    100% { filter: drop-shadow(0 0 40px rgba(122, 77, 184, 0.7)); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #7A4DB8 0%, #6B3FA8 100%);
    color: #EAEAEA;
    box-shadow: 0 8px 25px rgba(122, 77, 184, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(122, 77, 184, 0.5);
    background: linear-gradient(135deg, #8B5FBF 0%, #7A4DB8 100%);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #7A4DB8;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@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 fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
    background: var(--primary-dark);
}

.section-dark {
    background: linear-gradient(135deg, #1A1A1A 0%, #1F1F1F 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #7A4DB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7A4DB8, #6B3FA8);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(122, 77, 184, 0.4);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--menu-text);
}

.feature-card p {
    color: var(--menu-text-secondary);
}

/* Events Section */
.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.events-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.events-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.events-image:hover img {
    transform: scale(1.05);
}

.events-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.events-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.events-features {
    list-style: none;
    padding: 0;
}

.events-features li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.events-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7A4DB8;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cocktails Section */
.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cocktail-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.cocktail-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.cocktail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cocktail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem;
    color: var(--menu-text);
}

.cocktail-card p {
    margin: 0 1rem 1rem;
    color: var(--menu-text-secondary);
}

/* Cocktails Menu */
.cocktails-menu {
    max-width: 800px;
    margin: 0 auto;
}

.cocktail-category {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.cocktail-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #D4AF37;
    text-shadow: none;
}

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

.cocktail-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cocktail-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.cocktail-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--menu-text);
    margin-bottom: 0.3rem;
}

.cocktail-info p {
    color: var(--menu-text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cocktail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
}

/* Menu Page Styles */
.menu-main {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: var(--primary-dark);
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
}

.menu-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.menu-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--menu-text);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.menu-header p {
    font-size: 1.2rem;
    color: var(--menu-text-secondary);
    margin-bottom: 2rem;
    text-shadow: none;
}

.menu-nav {
    position: sticky;
    top: 80px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(31, 31, 31, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 2rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    z-index: 100;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-nav-container {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.menu-nav-item {
    padding: 0.8rem 1.4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--menu-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.menu-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.menu-nav-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(164, 132, 233, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    color: var(--neon-green);
}

.menu-nav-item.active {
    background: linear-gradient(135deg, var(--neon-green) 0%, #7A52A8 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(139, 95, 191, 0.3);
}

.menu-section {
    scroll-margin-top: 150px;
    margin-bottom: 2.5rem;
}

.menu-section:last-child {
    margin-bottom: 1.5rem;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-category {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.menu-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: none;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--neon-green);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 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(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.menu-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
    border-left-color: var(--neon-purple);
}

.item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--menu-text);
    margin-bottom: 0.2rem;
}

.item-info p {
    color: var(--menu-text-secondary);
    font-size: 0.8rem;
    line-height: 1.3;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-green);
    min-width: 60px;
    text-align: right;
    flex-shrink: 0;
}

.flavors-section {
    margin-top: 2rem;
    padding: 2rem 0;
}

.flavors-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
    text-align: center;
    text-shadow: none;
}

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

.flavor-brand {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.flavor-brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.flavor-brand h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.flavor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flavor-list .flavor-tag {
    background: linear-gradient(135deg, rgba(164, 132, 233, 0.2), rgba(139, 111, 212, 0.2));
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(164, 132, 233, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flavor-list .flavor-tag:hover {
    background: linear-gradient(135deg, var(--primary-green), #7A52A8);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 95, 191, 0.4);
}

/* New Flavor Brands Container */
.flavor-brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.flavor-brand-item {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.flavor-brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-header:hover::before {
    left: 100%;
}

.brand-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
}

.brand-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-purple);
    transition: all 0.3s ease;
}

.flavor-brand-item.expanded .brand-toggle {
    transform: rotate(45deg);
    color: var(--neon-green);
}

.brand-flavors {
    padding: 1.2rem;
    display: none;
    flex-direction: column; /* Change to column to stack items */
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.flavor-brand-item.expanded .brand-flavors {
    display: flex;
}

.brand-flavors .flavor-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    color: var(--menu-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left; /* Align text to the left */
    line-height: 1.4; /* Improve readability */
    display: block;
    margin-bottom: 0.5rem;
}

.brand-flavors .flavor-tag .flavor-name {
    font-weight: 700;
    color: var(--menu-text);
    display: block; /* Make it a block element */
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.brand-flavors .flavor-tag .flavor-desc {
    font-weight: 400;
    color: var(--menu-text-secondary);
    font-style: italic; /* Italicize the description */
    font-size: 0.8rem;
    display: block;
}

.brand-flavors .flavor-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-flavors .flavor-tag:hover::before {
    left: 100%;
}

.brand-flavors .flavor-tag:hover {
    background: linear-gradient(135deg, var(--neon-green) 0%, #7A52A8 100%);
    color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(139, 95, 191, 0.3);
    cursor: pointer;
}

/* Brand Description Styles */
.brand-description {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(164, 132, 233, 0.03) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-purple), var(--neon-green));
    opacity: 0.6;
}

.brand-description p {
    color: var(--menu-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding: 0.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.brand-description p::first-letter {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--neon-green);
    float: left;
    line-height: 1;
    margin-right: 0.1em;
    margin-top: 0.1em;
}

.flavor-brand-item.expanded .brand-description {
    display: block;
    animation: fadeInDescription 0.5s ease-in-out;
}

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

/* Shisha Flavors Section */
.flavors-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.flavor-category {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.flavor-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.flavor-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    text-align: center;
}

.flavor-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flavor-item {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.flavor-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.flavor-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.flavor-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.flavor-cta {
    text-align: center;
    padding: 3rem 0;
    background: var(--glass-bg);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.flavor-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(164, 132, 233, 0.15) 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.stars {
    font-size: 1.5rem;
    color: #7A4DB8;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--menu-text);
    line-height: 1.7;
}

.testimonial-author strong {
    color: var(--menu-text);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--menu-text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--menu-text);
}

.contact-item p {
    color: var(--menu-text-secondary);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #7A4DB8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--menu-text);
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.schedule strong {
    color: var(--menu-text);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #7A4DB8 0%, #6B3FA8 100%);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Visit Info */
.visit-info {
    display: flex;
    align-items: center;
}

.visit-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.visit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--menu-text);
}

.visit-card p {
    color: var(--menu-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.transport-list {
    list-style: none;
    padding: 0;
}

.transport-list li {
    color: var(--menu-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.transport-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #7A4DB8;
    border-radius: 50%;
}

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.2) hue-rotate(200deg);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.map-link {
    background: linear-gradient(135deg, #7A4DB8 0%, #6B3FA8 100%);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(122, 77, 184, 0.4);
    transition: all 0.3s ease;
}

.map-link:hover {
    background: linear-gradient(135deg, #8B5FBF 0%, #7A4DB8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 77, 184, 0.5);
}

/* Content Links Styling */
.section p a,
.hero-content p a,
.ambiente-text p a,
.cocktails-preview p a,
.flavors-preview p a,
.menu-category p a,
.footer-content p a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section p a::after,
.hero-content p a::after,
.ambiente-text p a::after,
.cocktails-preview p a::after,
.flavors-preview p a::after,
.menu-category p a::after,
.footer-content p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-purple) 100%);
    transition: width 0.3s ease;
}

.section p a:hover::after,
.hero-content p a:hover::after,
.ambiente-text p a:hover::after,
.cocktails-preview p a:hover::after,
.flavors-preview p a:hover::after,
.menu-category p a:hover::after,
.footer-content p a:hover::after {
    width: 100%;
}

.section p a:hover,
.hero-content p a:hover,
.ambiente-text p a:hover,
.cocktails-preview p a:hover,
.flavors-preview p a:hover,
.menu-category p a:hover,
.footer-content p a:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(122, 77, 184, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #1F1F1F 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--menu-text-secondary);
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
    color: var(--menu-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--menu-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #7A4DB8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--menu-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #7A4DB8;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    color: var(--menu-text);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #7A4DB8 0%, #6B3FA8 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(122, 77, 184, 0.4);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #8B5FBF 0%, var(--neon-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(122, 77, 184, 0.5);
}

.footer-map {
    margin: 2rem 0;
    text-align: center;
}

.footer-map h4 {
    color: var(--menu-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-map iframe {
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    padding: 2rem 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--menu-text-secondary);
    margin: 0;
    text-align: center;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #7A4DB8;
}

/* Carta page main content */
.carta-main {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carta-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.carta-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.carta-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--menu-text);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.carta-header p {
    font-size: 1.2rem;
    color: var(--menu-text-secondary);
    margin-bottom: 2rem;
    text-shadow: none;
}

.carta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.carta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carta-btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, #8B6FD4 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(164, 132, 233, 0.3);
}

.carta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(164, 132, 233, 0.4);
}

.carta-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.carta-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.carta-btn-games {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941A 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.carta-btn-games:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.carta-btn-review {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.carta-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.club-benefits {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.club-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--menu-text);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    color: var(--menu-text);
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--neon-green);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    transform: translateX(5px);
}

.carta-languages {
    margin-bottom: 2rem;
}

.carta-languages h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.carta-btn-language {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    color: var(--menu-text);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.carta-btn-language:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

/* Flag icons sizing */
.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.review-modal-content {
    background: var(--primary-dark);
    margin: 10% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.review-header h3 {
    color: var(--neon-green);
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--menu-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--neon-green);
}

.review-body {
    padding: 2rem;
}

.review-body p {
    color: var(--menu-text);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.star {
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.star:hover,
.star.selected {
    opacity: 1;
    transform: scale(1.1);
}

.star:hover {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.rating-result {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    min-height: 30px;
}

.rating-result.positive {
    color: var(--primary-green);
}

.rating-result.negative {
    color: #ff6b6b;
}

.feedback-form {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.feedback-form h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feedback-form p {
    color: var(--menu-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feedback-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    color: var(--menu-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1rem;
}

.feedback-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    color: var(--menu-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feedback-form textarea:focus,
.feedback-form input[type="email"]:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2px rgba(139, 95, 191, 0.2);
}

.feedback-form textarea::placeholder,
.feedback-form input[type="email"]::placeholder {
    color: var(--menu-text-secondary);
}

.feedback-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--neon-green) 0%, #7A52A8 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 95, 191, 0.3);
}

.feedback-form button:hover {
    background: linear-gradient(135deg, #9C6FCB 0%, var(--neon-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 95, 191, 0.4);
}

/* Game Styles */
.juegos-main {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: var(--primary-dark);
}

.juegos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.juegos-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.juegos-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.juegos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.juego-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.juego-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.juego-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.juego-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.juego-area {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.roulette-wheel {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#FF0000 0deg 180deg, #000000 180deg 360deg);
    border: 4px solid var(--primary-green);
    position: relative;
    transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.roulette-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid var(--primary-green);
}

.dice-container {
    display: flex;
    gap: 1rem;
}

.dice {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
    transition: transform 0.5s ease;
}

.dice.rolling {
    animation: diceRoll 1s infinite;
}

@keyframes diceRoll {
    0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
    25% { transform: rotateX(90deg) rotateY(0deg); }
    50% { transform: rotateX(180deg) rotateY(90deg); }
    75% { transform: rotateX(270deg) rotateY(180deg); }
}

.card-flip {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.6s;
    position: relative;
    transform-style: preserve-3d;
}

.card-flip.flipped {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.card-back {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    transform: rotateY(180deg);
}

.game-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.game-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.game-btn-primary {
    background: var(--primary-green);
    color: white;
}

.game-btn-primary:hover {
    background: #7A52A8;
    transform: translateY(-2px);
}

.game-btn-red {
    background: #C85A5A;
    color: white;
}

.game-btn-red:hover {
    background: #B04747;
    transform: translateY(-2px);
}

.game-btn-black {
    background: #5A5A5A;
    color: white;
}

.game-btn-black:hover {
    background: #4A4A4A;
    transform: translateY(-2px);
}

.game-result {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-win {
    background: rgba(139, 95, 191, 0.2);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.result-lose {
    background: rgba(200, 90, 90, 0.2);
    color: #C85A5A;
    border: 1px solid #C85A5A;
}

.warning-box {
    background: rgba(164, 132, 233, 0.1);
    border: 1px solid rgba(164, 132, 233, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.warning-box h3 {
    color: #8B5FBF;
    margin-bottom: 0.5rem;
}

/* Botellas Grid */
.botellas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.botella-category {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.botella-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.botella-category h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: none;
}

/* New style for the flavor extra text */
.botella-category .flavor-extra {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: -0.5rem; /* Adjust to bring it closer to the h3 */
    margin-bottom: 1rem; /* Space before the price */
    text-align: center;
}

.botella-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--menu-text);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.botella-brands {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.botella-brands span {
    color: var(--menu-text-secondary);
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    opacity: 0.9;
}

/* Recommended Mixes */
.recommended-mixes-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-purple); /* Or another accent color */
    margin-top: -0.5rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.mix-descriptions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mix-descriptions p {
    color: var(--menu-text-secondary);
    font-size: 0.9rem;
    line-height: 1.4; /* Ensure good readability */
    text-align: left; /* Align text to left, more like a menu */
}

/* Remove hover effects for mix-descriptions p as they are not buttons */
.mix-descriptions p:hover {
    background: none;
    transform: none;
    box-shadow: none;
    cursor: default; /* Change cursor back to default */
}

/* Ambiente Section */
.ambiente-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.ambiente-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.ambiente-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ambiente-image:hover img {
    transform: scale(1.05);
}

.ambiente-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--menu-text);
}

.ambiente-text p {
    font-size: 1.1rem;
    color: var(--menu-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ambiente-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ambiente-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ambiente-feature .feature-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.ambiente-feature h4 {
    color: var(--menu-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.ambiente-feature p {
    color: var(--menu-text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Dice Selector */
.dice-selector {
    margin-bottom: 1.5rem;
    text-align: center;
}

.dice-selector label {
    display: block;
    color: var(--menu-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dice-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    color: var(--menu-text);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.dice-selector select option {
    background: var(--primary-dark);
    color: var(--menu-text);
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Improvements */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(24, 24, 24, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero Section Adjustments */
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-section {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Sections Spacing */
    .section {
        padding: 4rem 0;
    }

    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Events Section */
    .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .events-image img {
        height: 250px;
    }

    /* Cocktails Section */
    .cocktails-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    /* Menu Navigation */
    .menu-nav {
        margin: 0 1rem 1.5rem;
        padding: 0.8rem;
    }

    .menu-nav-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .menu-nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Menu Categories */
    .menu-category {
        margin: 0 1rem 1.5rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .map-container {
        margin: 0 1rem;
        height: 300px;
    }

    /* Ambiente Section Mobile */
    .ambiente-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .ambiente-image {
        order: -1;
    }

    .ambiente-image img {
        height: 250px;
    }

    .ambiente-text {
        text-align: center;
    }

    .ambiente-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ambiente-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .ambiente-features {
        gap: 1.2rem;
    }

    .ambiente-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .ambiente-feature .feature-emoji {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .ambiente-feature h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .ambiente-feature p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
        padding: 2rem 1rem 1rem;
    }
}

/* Additional Small Screen Optimizations */
@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1.2rem;
    }

    .nav-logo img {
        width: 35px;
        height: 35px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon img {
        width: 30px;
        height: 30px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .item-price {
        margin-top: 0.5rem;
    }

    .flavor-brand-item {
        margin: 0 1rem;
    }

    .brand-flavors {
        padding: 1rem;
    }

    .brand-flavors .flavor-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Ambiente Section - Extra Small Screens */
    .ambiente-text h3 {
        font-size: 1.3rem;
    }

    .ambiente-text p {
        font-size: 0.9rem;
    }

    .ambiente-feature {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }

    .ambiente-feature .feature-emoji {
        font-size: 2rem;
    }

    .ambiente-feature h4 {
        font-size: 0.9rem;
    }

    .ambiente-feature p {
        font-size: 0.8rem;
    }

    /* Better Touch Targets */
    .nav-menu a,
    .btn,
    .menu-nav-item,
    .brand-header,
    .flavor-tag {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Form Elements */
    input[type="email"],
    input[type="text"],
    textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* Card Grid Improvements */
    .botellas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .botella-category {
        padding: 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-content {
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Review Modal Adjustments */
    .review-modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .star {
        font-size: 2.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .btn:active,
    .menu-nav-item:active,
    .feature-card:active,
    .flavor-tag:active {
        transform: scale(0.98);
    }

    .nav-menu a:active::after {
        width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.9) 0%, rgba(31, 31, 31, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #7A4DB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Cocktails and Flavors Preview Sections */
.cocktails-preview,
.flavors-preview {
    margin-top: 2rem;
}

.cocktails-highlights,
.flavors-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cocktail-highlight,
.flavor-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.cocktail-highlight:hover,
.flavor-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.cocktail-icon,
.flavor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.cocktail-highlight h3,
.flavor-highlight h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.cocktail-highlight p,
.flavor-highlight p {
    color: var(--menu-text-secondary);
    line-height: 1.6;
}

.cocktails-cta,
.flavors-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-top: 2rem;
}

.cocktails-cta p,
.flavors-cta p {
    font-size: 1.1rem;
    color: var(--menu-text);
    margin-bottom: 1.5rem;
}

.popular-flavors {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(164, 132, 233, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.popular-flavors h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-align: center;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.flavor-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(164, 132, 233, 0.1) 100%);
    color: var(--menu-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.flavor-tag:hover {
    background: linear-gradient(135deg, var(--neon-green) 0%, #7A52A8 100%);
    color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(139, 95, 191, 0.3);
}

/* Responsive Design for Preview Sections */
@media (max-width: 768px) {
    .cocktails-highlights,
    .flavors-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cocktail-highlight,
    .flavor-highlight {
        padding: 1.5rem;
    }
    
    .cocktails-cta,
    .flavors-cta {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .popular-tags {
        gap: 0.5rem;
    }
    
    .flavor-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Responsive styles for brand descriptions */
    .flavor-brands-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .flavor-brand-item {
        margin: 0 0.5rem;
    }
    
    .brand-header {
        padding: 1rem;
    }
    
    .brand-header h3 {
        font-size: 1.1rem;
    }
    
    .brand-flavors {
        padding: 1rem;
    }
    
    .brand-description {
        padding: 1rem;
    }
    
    .brand-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .brand-description p::first-letter {
        font-size: 1.2em;
    }
}

/* Ensure Smooth Scrolling on iOS */
@supports (-webkit-touch-callout: none) {
    .menu-nav-container {
        -webkit-overflow-scrolling: touch;
    }
}