/* =====================================================
   TISKA LAGUNA - PREMIUM RESTAURANT WEBSITE
   Teal-Black Theme with 3D Effects
   ===================================================== */

/* CSS Variables */
:root {
    --primary-teal: #00a896;
    --primary-teal-light: #02c39a;
    --primary-teal-dark: #028090;
    --accent-teal: #05668d;
    --black: #0a0a0a;
    --black-light: #1a1a2e;
    --black-medium: #16213e;
    --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --teal-gradient: linear-gradient(135deg, #00a896 0%, #02c39a 50%, #05668d 100%);
    --card-gradient: linear-gradient(145deg, rgba(0, 168, 150, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
    --glass-bg: rgba(0, 168, 150, 0.05);
    --glass-border: rgba(0, 168, 150, 0.2);
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --shadow-teal: 0 10px 40px rgba(0, 168, 150, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-gradient);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Bubble Animation Container */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 168, 150, 0.4) 0%, 
        rgba(0, 168, 150, 0.1) 50%, 
        transparent 70%);
    border-radius: 50%;
    animation: float-up linear forwards;
    pointer-events: none;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-120vh) scale(0.3);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.logo i {
    color: var(--primary-teal);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-gradient);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--teal-gradient) !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    color: var(--text-light) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-teal);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 168, 150, 0.4);
}

.btn-nav::after {
    display: none !important;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--glass-border);
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn .flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.lang-btn.active {
    background: var(--teal-gradient);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 30px 80px;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 168, 150, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(5, 102, 141, 0.15) 0%, transparent 50%),
        var(--dark-gradient);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,168,150,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-text {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 60px 80px;
    backdrop-filter: blur(20px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-teal-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--teal-gradient);
    color: var(--text-light);
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 168, 150, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--text-light);
    transform: translateY(-5px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    position: relative;
    z-index: 10;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--teal-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* About Section */
.about {
    background: 
        radial-gradient(ellipse at 10% 50%, rgba(0, 168, 150, 0.1) 0%, transparent 40%),
        transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-teal);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: var(--shadow-teal);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Menu Preview Section */
.menu-preview {
    background: 
        radial-gradient(ellipse at 90% 50%, rgba(5, 102, 141, 0.1) 0%, transparent 40%),
        transparent;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-item {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.menu-item:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-teal);
}

.menu-item-image {
    height: 150px;
    background: linear-gradient(135deg, var(--primary-teal-dark) 0%, var(--accent-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    opacity: 0.9;
}

.menu-item-content {
    padding: 25px;
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-cta {
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--primary-teal);
    transform: translateY(-10px);
    box-shadow: var(--shadow-teal);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-muted);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: 
        radial-gradient(ellipse at 50% 80%, rgba(0, 168, 150, 0.1) 0%, transparent 40%),
        transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--teal-gradient);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-teal);
}

.map-container {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 400px;
}

/* Footer */
.footer {
    position: relative;
    background: var(--black);
    padding-top: 80px;
    z-index: 10;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    color: var(--black);
}

.footer-wave svg {
    width: 100%;
    height: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-logo i {
    color: var(--primary-teal);
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--primary-teal);
}

.footer-section .hours li {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-section .hours li span {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--teal-gradient);
    color: var(--text-light);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-teal);
    text-decoration: none;
}

/* 3D Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) scale3d(1.02, 1.02, 1.02);
}

/* Menu Page Styles */
.menu-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 30px 80px;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 168, 150, 0.2) 0%, transparent 50%),
        var(--dark-gradient);
    text-align: center;
}

.menu-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.menu-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.menu-page {
    padding: 60px 0 100px;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--teal-gradient);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: var(--shadow-teal);
}

/* Menu Category */
.menu-category {
    margin-bottom: 80px;
}

.category-header {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.category-header i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.category-header p {
    color: var(--text-muted);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Menu Card - Image Based */
.menu-card {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-teal);
    transform: translateY(-5px);
}

.menu-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.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-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.menu-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    order: 3;
}

.menu-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

.menu-card .tags {
    margin-top: 16px;
    margin-bottom: 18px;
    order: 2;
    min-height: 44px;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: var(--primary-teal);
}

.loading-spinner p {
    margin-top: 20px;
    color: var(--text-muted);
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.error-message i {
    color: #f56565;
    margin-bottom: 20px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag.vegetarian {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.tag.vegan {
    background: rgba(56, 161, 105, 0.2);
    color: #38a169;
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.tag.spicy {
    background: rgba(245, 101, 101, 0.2);
    color: #f56565;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.tag.popular {
    background: rgba(237, 137, 54, 0.2);
    color: #ed8936;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.tag.premium {
    background: rgba(214, 158, 46, 0.2);
    color: #d69e2e;
    border: 1px solid rgba(214, 158, 46, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .lang-switcher {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        margin-left: 0;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 10px;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        padding: 40px 30px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .menu-hero h1 {
        font-size: 2.5rem;
    }
    
    .category-header h2 {
        font-size: 1.8rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card-image {
        height: 180px;
    }
    
    .menu-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* =====================================================
   CART SYSTEM STYLES - DYNAMIC ISLAND
   ===================================================== */

/* Floating Dynamic Island */
.floating-island {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 168, 150, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-island.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.island-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.island-btn.cart-btn {
    background: var(--teal-gradient);
    color: var(--black);
}

.island-btn.cart-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-teal);
}

.island-btn.history-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.island-btn.history-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-teal);
}

.island-btn i {
    font-size: 1.1rem;
}

.island-badge {
    background: #ef4444;
    color: white;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 5px;
}

.island-divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
    margin: 0 4px;
}

/* Hide old cart icon */
.cart-icon {
    display: none;
}

/* Add to Cart Button */
.add-to-cart-btn {
    padding: 12px 24px;
    background: var(--teal-gradient);
    border: none;
    border-radius: 30px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.add-to-cart-btn i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.add-to-cart-btn span {
    position: relative;
    z-index: 1;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   CART - PREMIUM SIDE PANEL
   ===================================================== */

/* Cart Modal - Right Side Panel */
.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 50%;
    max-width: 100vw;
    min-width: 420px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0c0e12;
    overflow: hidden;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-modal-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: #0c0e12;
    border-left: 1px solid rgba(0, 168, 150, 0.15);
    opacity: 1;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.cart-modal.open .cart-modal-content {
    transform: translateX(0);
}

/* Block background interactions */
body.cart-open {
    overflow: hidden;
}

body.cart-open > *:not(.cart-modal):not(.floating-island) {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

body.cart-open .floating-island {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #0a0c10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

.cart-header h2 i {
    color: var(--primary-teal);
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Cart Body - Scrollable */
.cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 24px;
    min-height: 0;
    background: #0c0e12;
}

.cart-body::-webkit-scrollbar {
    width: 4px;
}

.cart-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-body::-webkit-scrollbar-thumb {
    background: rgba(0, 168, 150, 0.4);
    border-radius: 2px;
}

/* Section Titles */
.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.checkout-section-title i {
    color: var(--primary-teal);
}

/* Empty Cart */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.cart-empty i {
    font-size: 3.5rem;
    color: rgba(0, 168, 150, 0.2);
    margin-bottom: 16px;
}

.cart-empty p {
    color: #666;
    font-size: 1rem;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.cart-item:hover {
    background: rgba(0, 168, 150, 0.04);
    border-color: rgba(0, 168, 150, 0.15);
}

.cart-item-image {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 20px;
}

.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.cart-item-quantity button:hover {
    background: var(--primary-teal);
    color: #000;
}

.cart-item-quantity span {
    font-weight: 600;
    color: #fff;
    min-width: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: rgba(239, 68, 68, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Order Type Buttons */
.order-type-section {
    margin-bottom: 0;
}

.order-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.order-type-btn {
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: #777;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 92px;
    text-align: center;
    position: relative;
    font-family: inherit;
}

.order-type-btn i {
    font-size: 1.3rem;
}

.order-type-btn span {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-type-btn:hover {
    background: rgba(0, 168, 150, 0.06);
    border-color: rgba(0, 168, 150, 0.2);
    color: var(--primary-teal);
}

.order-type-btn.selected {
    background: rgba(0, 168, 150, 0.1);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.order-type-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: var(--primary-teal);
    color: #000;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Delivery Form */
.delivery-form {
    display: none;
    margin-top: 20px;
    padding: 18px;
    background: rgba(0, 168, 150, 0.04);
    gap: 10px;
    margin-bottom: 14px;
    margin-top: 14px;
    min-height: 36px;
}

.delivery-form.show {
    display: block;
}

.form-group {
    margin-bottom: 14px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-teal);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(0, 0, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group textarea {
    resize: none;
    min-height: 70px;
}

/* Cart Footer */
.cart-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding: 12px 16px;
    background: #0c0e12;
}

.cart-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #0f1419, #0a0e12);
    border: 1px solid rgba(0, 168, 150, 0.12);
    border-radius: 18px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.cart-total-display {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-total-display span {
    color: #777;
    font-size: 0.8rem;
}

.cart-total-display strong {
    color: var(--primary-teal);
    font-size: 1.35rem;
    font-weight: 700;
}

.checkout-btn {
    padding: 14px 28px;
    background: var(--teal-gradient);
    border: none;
    border-radius: 14px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 150, 0.35);
}

.checkout-btn:active {
    transform: translateY(0);
}

/* Mobile Cart Adjustments */
@media (max-width: 480px) {
    .cart-modal {
        width: 100%;
        min-width: 100%;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .cart-modal-content {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .cart-header {
        padding: 16px 18px;
    }
    
    .cart-body {
        padding: 16px 18px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cart-footer {
        padding: 12px;
        position: sticky;
        bottom: 0;
        background: #0c0e12;
    }
    
    .cart-footer-inner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .cart-total-display {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .checkout-btn {
        width: 100%;
        justify-content: center;
    }
    
    .order-type-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .order-type-btn {
        padding: 12px 6px;
    }
    
    .order-type-btn i {
        font-size: 1.1rem;
    }
    
    .order-type-btn span {
        font-size: 0.7rem;
    }
}

/* Back to Cart Button */
.back-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.back-to-cart-btn:hover {
    background: rgba(0, 168, 150, 0.1);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.back-to-cart-btn i {
    font-size: 0.85rem;
}

/* View Orders Button */
.view-orders-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 168, 150, 0.1);
    border: 1px solid rgba(0, 168, 150, 0.3);
    border-radius: 12px;
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 10px;
}

.view-orders-btn:hover {
    background: rgba(0, 168, 150, 0.2);
    border-color: var(--primary-teal);
}

.view-orders-btn i {
    font-size: 0.9rem;
}

/* Order History Styles */
.order-history {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 15px;
    transition: var(--transition);
}

.order-card:hover {
    border-color: rgba(0, 168, 150, 0.3);
    background: rgba(0, 168, 150, 0.03);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-card-header h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-card-header h4 i {
    color: var(--primary-teal);
}

.order-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.order-status.confirmed {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.order-status.preparing {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.order-status.ready {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.order-status.delivering {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.order-status.completed {
    background: rgba(0, 168, 150, 0.15);
    color: var(--primary-teal);
}

.order-card-body {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-card-body p {
    margin-bottom: 5px;
}

.order-card-body strong {
    color: var(--text-light);
}

.order-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.order-items-list span {
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
}

/* Loading Orders */
.loading-orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 15px;
    color: var(--text-muted);
}

.loading-orders i {
    color: var(--primary-teal);
}

/* Order Error */
.order-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 12px;
    text-align: center;
}

.order-error i {
    font-size: 2rem;
    color: #ef4444;
    opacity: 0.7;
}

.order-error p {
    color: var(--text-muted);
}

/* Order History Modal */
.order-history-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.order-history-modal.open {
    opacity: 1;
    visibility: visible;
}

.order-history-content {
    background: var(--black-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.order-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

.order-history-header h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.order-history-header h2 i {
    color: var(--primary-teal);
}

.order-history-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.order-history-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.order-history-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}

/* Order Card */
.order-card {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.order-card:hover {
    border-color: var(--primary-teal);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.3);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-number {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
}

.order-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.order-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.order-status.confirmed {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.order-status.preparing {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.order-status.ready {
    background: rgba(192, 132, 252, 0.2);
    color: #c084fc;
}

.order-status.delivering {
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
}

.order-status.completed {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.order-card-body {
    padding: 20px 25px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-name {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.order-item-name span:first-child {
    background: var(--primary-teal);
    color: var(--black);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.order-item-price {
    color: var(--text-muted);
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.order-type {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.order-type i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.order-total {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1.3rem;
}

/* Order Success */
.order-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 40px;
}

.order-success .success-icon {
    width: 120px;
    height: 120px;
    background: rgba(0, 168, 150, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.4);
    }
    50% {
        box-shadow: 0 0 0 30px rgba(0, 168, 150, 0);
    }
}

.order-success .success-icon i {
    font-size: 4rem;
    color: var(--primary-teal);
}

.order-success h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.order-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.order-success strong {
    color: var(--primary-teal);
    font-size: 1.3rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--glass-border);
    padding: 18px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20000;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--primary-teal);
}

.toast.success i {
    color: var(--primary-teal);
}

.toast.error {
    border-color: #ef4444;
}

.toast.error i {
    color: #ef4444;
}

.toast i {
    font-size: 1.4rem;
}

.toast span {
    color: var(--text-light);
    font-weight: 500;
}

/* Cart Responsive */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 100vw;
        border-left: none;
    }
    
    .cart-header {
        padding: 18px 20px;
    }
    
    .cart-header h2 {
        font-size: 1.2rem;
    }
    
    .cart-body {
        padding: 20px;
    }
    
    .cart-footer {
        padding: 18px 20px;
    }
    
    .floating-island {
        bottom: 20px;
        padding: 6px;
        gap: 6px;
    }
    
    .island-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .island-btn span {
        display: none;
    }
    
    .order-type-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .order-type-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 14px 18px;
        gap: 15px;
    }
    
    .order-type-btn i {
        font-size: 1.3rem;
    }
    
    .cart-footer-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-total-display {
        width: 100%;
        justify-content: space-between;
    }
    
    .checkout-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .floating-island {
        left: 15px;
        right: 15px;
        transform: translateX(0) translateY(150px);
        justify-content: center;
    }
    
    .floating-island.visible {
        transform: translateX(0) translateY(0);
    }
    
    .island-btn {
        flex: 1;
        justify-content: center;
    }
    
    .cart-header h2 {
        font-size: 1.1rem;
    }
    
    .cart-body {
        padding: 15px;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-quantity {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* =====================================================
   LEGAL PAGES STYLES
   ===================================================== */

.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.legal-header h1 i {
    color: var(--primary-teal);
}

.legal-header .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 168, 150, 0.2);
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 20px 0 12px;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    color: var(--text-muted);
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.legal-table th, .legal-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-table th {
    background: rgba(0, 168, 150, 0.1);
    color: var(--primary-teal);
    font-weight: 600;
}

.legal-table td {
    color: var(--text-muted);
}

.legal-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.legal-footer {
    text-align: center;
    margin-top: 40px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-teal);
}

.footer-minimal {
    padding: 30px 0;
}

/* Impresszum specific styles */
.impressum-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.impressum-card h2 i {
    font-size: 1.2rem;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.impressum-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.impressum-item strong {
    color: var(--text-light);
    font-size: 0.9rem;
}

.impressum-item span {
    color: var(--text-muted);
}

.impressum-item.full-width {
    grid-column: 1 / -1;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.98), rgba(10, 10, 10, 0.99));
    border-top: 1px solid rgba(0, 168, 150, 0.2);
    padding: 20px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text h4 i {
    color: var(--primary-teal);
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-teal);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--teal-gradient);
    border: none;
    color: #000;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 168, 150, 0.4);
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.cookie-btn-settings:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}