* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #D97636;
    --foreground: #ffffff;
    --card: rgba(255, 255, 255, 0.1);
    --card-foreground: #ffffff;
    --primary: #ffffff;
    --primary-foreground: #D97636;
    --muted: rgba(255, 255, 255, 0.7);
    --muted-foreground: rgba(255, 255, 255, 0.8);
    --border: rgba(255, 255, 255, 0.2);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sohne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark {
    --background: #D97636;
    --foreground: #ffffff;
    --muted-foreground: rgba(255, 255, 255, 0.8);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text utilities */
.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    padding: 16px 32px;
    background-color: #ffffff;
    color: #D97636;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .container {
    height: auto;
    padding: 16px 20px;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    display: none;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.logo-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

/* Desktop Menu */
.nav-menu-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-menu-desktop {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.nav-menu-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(217, 118, 54, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px 20px;
}

.nav-menu-mobile.active {
    display: flex;
}

.nav-link-mobile {
    padding: 12px 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-link-mobile:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--background);
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 9999px;
    filter: blur(128px);
    opacity: 0.2;
}

.bg-element-1 {
    top: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse-element 6s ease-in-out infinite;
}

.bg-element-2 {
    bottom: 80px;
    left: 40px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse-element 8s ease-in-out infinite 1s;
}

@keyframes pulse-element {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.3; }
}

.hero .container {
    position: relative;
    z-index: 10;
    padding: 48px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-headline h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-headline h1 {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-headline h1 {
        font-size: 64px;
    }
}

.hero-headline p {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-value {
    color: var(--primary);
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 384px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image {
        height: 100%;
        min-height: 384px;
    }
}

.smoke-effect {
    position: absolute;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(32px);
    animation: floatSmoke 6s ease-in-out infinite;
}

.smoke-1 {
    top: 40px;
    right: 80px;
    width: 64px;
    height: 64px;
    animation-duration: 5s;
}

.smoke-2 {
    top: 80px;
    right: 160px;
    width: 48px;
    height: 48px;
    animation-duration: 6s;
    animation-delay: 0.5s;
}

.smoke-3 {
    top: 128px;
    right: 128px;
    width: 80px;
    height: 80px;
    animation-duration: 7s;
    animation-delay: 1s;
}

@keyframes floatSmoke {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.5; }
}

.glow-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 9999px;
    filter: blur(48px);
}

.burger-container {
    position: relative;
    width: 340px;
    height: 340px;
    z-index: 5;
}

@media (min-width: 1024px) {
    .burger-container {
        width: 500px;
        height: 500px;
    }
}

.burger-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Menu Section */
.menu {
    position: relative;
    padding: 80px 20px;
    background: var(--background);
    overflow: hidden;
}

.menu-bg-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(128px);
    pointer-events: none;
}

.section-header {
    margin-bottom: 48px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 48px;
    }
}

.section-header p {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 600px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center h2,
.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #D97636;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.menu-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
}

.menu-card-image {
    position: relative;
    height: 224px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
}

@media (min-width: 768px) {
    .menu-card-image {
        height: 256px;
    }
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #D97636;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

.menu-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 768px) {
    .menu-card-content {
        padding: 32px;
    }
}

.menu-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

@media (min-width: 768px) {
    .menu-card-title {
        font-size: 22px;
    }
}

.menu-card-description {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .menu-card-description {
        font-size: 16px;
    }
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-card-price {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.menu-card-btn {
    padding: 8px 16px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.menu-card-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #D97636;
}

/* Showcase Section */
.showcase {
    position: relative;
    padding: 80px 20px;
    background: var(--background);
    overflow: hidden;
}

.showcase-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.showcase-bg-elements .bg-element {
    position: absolute;
}

.showcase-bg-elements .bg-element-1 {
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse-element 6s ease-in-out infinite;
}

.showcase-bg-elements .bg-element-2 {
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse-element 8s ease-in-out infinite 1s;
}

.showcase-items {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    animation: slideUp 0.8s ease-out backwards;
}

@media (min-width: 1024px) {
    .showcase-item {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.showcase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .showcase-content h3 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .showcase-content h3 {
        font-size: 40px;
    }
}

.showcase-content p {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.8;
}

.showcase-image {
    position: relative;
    height: 384px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .showcase-image {
        height: 500px;
    }
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 9999px;
    filter: blur(48px);
}

.showcase-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image-inner img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    transition: transform 0.5s ease;
}

.showcase-image-inner:hover img {
    transform: scale(1.1);
}

.showcase-image-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    animation: pulse-element 3s ease-in-out infinite;
}

/* Combos Section */
.combos {
    position: relative;
    padding: 80px 20px;
    background: var(--background);
    overflow: hidden;
}

.combos-bg-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(128px);
    pointer-events: none;
}

.combos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .combos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.combo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.combo-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
}

.combo-card-image {
    position: relative;
    height: 224px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
}

@media (min-width: 768px) {
    .combo-card-image {
        height: 256px;
    }
}

.combo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.combo-card:hover .combo-card-image img {
    transform: scale(1.1);
}

.combo-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #D97636;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9999px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.combo-type-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.combo-card-content {
    padding: 24px;
}

@media (min-width: 768px) {
    .combo-card-content {
        padding: 32px;
    }
}

.combo-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

@media (min-width: 768px) {
    .combo-card-title {
        font-size: 22px;
    }
}

.combo-card-description {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .combo-card-description {
        font-size: 16px;
    }
}

.combo-items {
    list-style: none;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.combo-items li {
    padding: 4px 0;
}

.combo-items li:before {
    content: "✓ ";
    color: white;
    font-weight: 700;
    margin-right: 8px;
}

.combo-card-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.combo-original-price {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.combo-discounted-price {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.combo-card-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #D97636;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.combo-card-btn:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

/* About Section */
.about {
    position: relative;
    padding: 80px 20px;
    background: var(--background);
    overflow: hidden;
}

.about-bg-element {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(128px);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: slideInLeft 0.8s ease-out;
}

.about-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .about-story h2 {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .about-story h2 {
        font-size: 48px;
    }
}

.about-story p {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

@media (min-width: 768px) {
    .value-card {
        padding: 32px;
    }
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.value-card p {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 80px 20px;
    background: var(--background);
    overflow: hidden;
}

.testimonials-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(128px);
    pointer-events: none;
}

.testimonials-carousel {
    position: relative;
    z-index: 10;
    margin-top: 48px;
}

.carousel-slides {
    position: relative;
    height: 384px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .carousel-slides {
        height: 320px;
    }
}

.carousel-slide {
    position: absolute;
    inset: 0;
    transition: all 0.5s ease-out;
    opacity: 0;
    transform: translateX(100%);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.carousel-slide-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .carousel-slide-content {
        padding: 48px;
    }
}

.carousel-stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 20px;
    color: #FFD700;
}

.carousel-slide-quote {
    font-size: 18px;
    font-style: italic;
    color: white;
    margin: 24px 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .carousel-slide-quote {
        font-size: 20px;
    }
}

.carousel-slide-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-slide-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.carousel-slide-author-info h4 {
    font-weight: 700;
    color: white;
    margin: 0;
}

.carousel-slide-author-info p {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-btn {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.carousel-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.3);
}

.carousel-dots {
    position: absolute;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    margin-left: 80px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
    background: white;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Footer Section */
.footer {
    position: relative;
    background: var(--background);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.footer-bg-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(128px);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 10;
    padding: 64px 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    gap: 8px;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-brand .logo-text {
    display: block;
}

.footer-description {
    font-size: 14px;
    color: var(--muted-foreground);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-link {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Stagger animation for grid items */
.menu-card:nth-child(1) { animation-delay: 0s; }
.menu-card:nth-child(2) { animation-delay: 0.1s; }
.menu-card:nth-child(3) { animation-delay: 0.2s; }
.menu-card:nth-child(4) { animation-delay: 0.3s; }
.menu-card:nth-child(5) { animation-delay: 0.4s; }
.menu-card:nth-child(6) { animation-delay: 0.5s; }

.combo-card:nth-child(1) { animation-delay: 0s; }
.combo-card:nth-child(2) { animation-delay: 0.1s; }
.combo-card:nth-child(3) { animation-delay: 0.2s; }

.value-card:nth-child(1) { animation-delay: 0s; }
.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }

.showcase-item:nth-child(1) { animation-delay: 0s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.4s; }

/* ========== Order Popup Styles ========== */
.order-popup {
    position: fixed !important;
    right: -400px !important;
    bottom: 20px !important;
    z-index: 2000 !important;
    width: fit-content !important;
    height: auto !important;
    transition: right 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: flex !important;
}

.order-popup.show {
    right: 20px !important;
}

.order-popup-overlay {
    display: none;
}

.order-popup-content {
    background: linear-gradient(135deg, #D97636 0%, #EA580C 100%);
    border-radius: 25px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    max-width: 280px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.order-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    color: #D97636;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    left: auto;
    right: -10px;
}

.order-popup-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #fff;
}

.burger-character {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
    animation: bouncePopup 0.8s ease-in-out;
}

.burger-cartoon {
    width: 70px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes bouncePopup {
    0% {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.order-popup-text {
    text-align: center;
}

.order-popup-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 6px 0;
    font-family: 'Fredoka', sans-serif;
}

.order-popup-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.order-popup-btn {
    width: 100%;
    padding: 11px 20px;
    background: white;
    color: #D97636;
    border: none;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: #fffbf0;
}

.order-popup-btn:active {
    transform: translateY(-1px);
}

/* Mobile responsive for order popup */
@media (max-width: 600px) {
    .order-popup {
        right: -400px !important;
        bottom: 20px !important;
    }

    .order-popup.show {
        right: 10px !important;
    }

    .order-popup-content {
        max-width: 100%;
        padding: 20px;
    }

    .burger-cartoon {
        width: 120px;
        height: 140px;
    }

    .order-popup-title {
        font-size: 20px;
    }

    .order-popup-subtitle {
        font-size: 13px;
    }

    .order-popup-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Full Order Menu - Hidden by default */
#order-popup {
    display: none !important;
    visibility: hidden !important;
    position: fixed !important;
    bottom: 1rem !important;
    right: 1rem !important;
    width: 24rem !important;
    max-height: 24rem !important;
    z-index: 50 !important;
    border: 2px solid rgb(249, 115, 22) !important;
    background: rgba(0, 0, 0, 0.9) !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 1) !important;
    flex-direction: column !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Keep hidden when it has hidden class */
#order-popup.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Show order menu when hidden class is removed */
#order-popup:not(.hidden) {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#order-system-overlay {
    display: none !important;
    visibility: hidden !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 40 !important;
}

/* Show overlay when hidden class is removed */
#order-system-overlay:not(.hidden) {
    display: block !important;
    visibility: visible !important;
}

/* Hide burger toggle button */
#order-toggle-btn {
    display: none !important;
    visibility: hidden !important;
}
