/* New Salkhino Menu Design - Responsive & Modern */

:root {
    --primary-color: #d1a55b;
    --primary-dark: #b8954a;
    --secondary-color: #f8f5f0;
    --accent-color: #8b5a3c;
    --text-primary: #2c2c2c;
    --text-secondary: #666;
    --text-light: #999;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-dark: #1a1a1a;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-light);
    z-index: 1000;
}

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

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

/* Navbar Container - Don't override the navbar component styles */

/* Ensure navbar styles are not overridden */
.site-header {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(15,15,16,.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    transition: all 0.3s ease !important;
}

/* New Hero Section */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    margin-top: 0; /* Remove margin-top to not interfere with fixed navbar */
    padding-top: 80px; /* Add padding-top instead for navbar space */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 30%, #e9ecef 70%, #ffffff 100%);
}

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

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

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

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

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

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

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

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

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

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 100%;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

.badge-icon {
    font-size: 1.2rem;
    color: #ffd700;
    animation: iconBounce 2s ease-in-out infinite 1.5s;
}

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

.title-main {
    display: block;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-accent {
    display: block;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-highlight {
    display: block;
    color: #b8860b;
    text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    max-width: 500px;
    animation: descriptionFadeIn 1s ease-out 1.3s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    animation: statsSlideUp 1s ease-out 1.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b8860b;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: none;
}

    .hero-main-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        filter: brightness(0.8) contrast(1.1) saturate(1.1);
        transition: transform 0.5s ease;
        animation: none;
    }

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(184, 134, 11, 0.8);
    animation: scrollIndicatorPulse 2s ease-in-out infinite 3s;
    z-index: 3;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 215, 0, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelMove 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b8860b;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    }
}

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

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

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

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

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

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

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

@keyframes imageFloat {
    0%, 100% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
}


@keyframes scrollIndicatorPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
}

@keyframes scrollWheelMove {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(24px);
        opacity: 0;
    }
}


.veranda-hero-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 0;
    text-align: center;
    text-shadow: none;
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 600px;
    color: #5a6c7d;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards, textFade 6s ease-in-out infinite 3s;
}

@keyframes textFade {
    0%, 100% {
        opacity: 1;
        color: #5a6c7d;
    }
    50% {
        opacity: 0.8;
        color: #34495e;
    }
}


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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

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

.btn-ghost:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Menu Section */
.veranda-menu-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.back-to-venues:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

/* Menu Header */

/* Search Container */
.search-wrapper {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .search-wrapper {
        margin-bottom: 1.5rem;
    }

    .search-container {
        max-width: none;
        margin: 0;
    }

    .search-input {
        padding: 1rem 3rem 1rem 1.2rem;
        font-size: 1rem;
    }
}

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

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    transition: var(--transition);
}

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

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

/* Menu Type Toggle */
.menu-type-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.menu-type-toggle {
    display: flex;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.menu-type-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
    justify-content: center;
}

.menu-type-btn:hover {
    background: var(--primary-color);
    color: white;
}

.menu-type-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

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

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

/* Menu Item Card */
.menu-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

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

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

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

.price-option {
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    opacity: 1;
}

.price-option:hover {
    border-color: var(--primary-color);
    background: rgba(209, 165, 91, 0.05);
}

.price-option.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

/* Wine Serving Size */
.wine-serving-size {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-style: italic;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

/* Add to Cart Button */
.add-to-cart {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.add-to-cart:hover {
    background: var(--primary-dark);
}

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

/* No Results */
.no-results {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
    display: none;
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Calculator Section */
.veranda-calculator {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-xl);
    z-index: 103;
    transition: var(--transition);
    overflow-y: auto;
    padding-top: 80px;
}

.veranda-calculator.mobile-open {
    right: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    z-index: 10000;
}

/* Mobile Calculator Overlay */
.mobile-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.calc-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.calc-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.calc-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.veranda-calculator.mobile-open .mobile-calc-close {
    display: block;
}

/* Show close button on desktop when calculator is visible */
@media (min-width: 769px) {
    .veranda-calculator:not([style*="right: -100%"]) .mobile-calc-close {
        display: block;
    }
}

.mobile-calc-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.calc-wrapper {
    padding: 0;
}

.cart-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

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

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

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

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

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    background: white;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

.qty-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

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

.remove-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Cart Total */
.cart-total {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    padding: 1.5rem 2rem;
}

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

.subtotal-line,
.vat-line,
.final-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.subtotal-line,
.vat-line {
    color: var(--text-secondary);
}

.final-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Cart Actions */
.cart-actions {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.cart-actions .btn {
    flex: 1;
    justify-content: center;
}

.cart-actions .btn-ghost {
    border-color: var(--error-color);
    color: var(--error-color);
}

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

/* Mobile Cart Elements */
.mobile-cart-total {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 102;
    display: none;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-cart-total.visible {
    display: block;
}

.mobile-cart-total:hover {
    background: var(--bg-secondary);
}

.mobile-cart-sticky {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 101;
    cursor: pointer;
    transition: var(--transition);
    display: none;
}

.mobile-cart-sticky.visible {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-cart-sticky:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

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

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    max-width: 300px;
    font-weight: 500;
    animation: slideInRight 0.3s ease-out;
}

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

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

/* Footer */
#footer-container {
    margin-top: 4rem;
}

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

    .veranda-hero-content p {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        margin-bottom: 2.5rem;
    }
}

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

    .hero-section {
        height: 60vh;
        min-height: 350px;
        margin-top: 0;
        padding-top: 60px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        order: -1;
    }

    .menu-header {
        margin-bottom: 2rem;
    }

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

    .veranda-hero-content h1 {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
        margin-bottom: 1.2rem;
    }

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

    .veranda-hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    /* Adjust blur effect for tablets */
    .veranda-hero-content h1::before,
    .veranda-hero-content h1::after {
        filter: blur(0.8px);
        transform: translate(1.5px, 1.5px);
    }

    /* Reduce animations on tablets for better performance */
    .veranda-hero::before {
        animation-duration: 30s;
    }

    .veranda-hero-bg img {
        animation-duration: 20s;
    }

    .veranda-hero-content {
        animation-duration: 12s;
    }

    /* Disable image float animation on tablets */
    .hero-image-wrapper,
    .hero-main-image {
        animation: none !important;
    }


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

    .menu-item {
        padding: 1rem;
    }

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

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

    .price {
        font-size: 1.1rem;
    }

    .menu-type-toggle {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .menu-type-btn {
        flex: 1;
        min-width: 120px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .menu-type-btn span:not(.menu-type-icon) {
        display: inline;
        font-weight: 500;
    }

    .menu-type-btn .menu-type-icon {
        margin-right: 0.5rem;
    }

    .menu-type-btn .menu-type-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hide long text on very small screens */
    .menu-type-text {
        display: none;
    }

    .menu-type-btn .menu-type-icon svg {
        margin: 0;
    }

    /* Better mobile tabs layout */
    .menu-type-toggle {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .menu-type-btn {
        min-width: auto;
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        min-height: 80px;
    }

    .menu-type-btn .menu-type-icon {
        margin: 0;
    }

    .menu-type-btn .menu-type-text {
        display: block;
        text-align: center;
        font-size: 0.75rem;
        line-height: 1.2;
        max-width: 80px;
        word-break: break-word;
    }

    .veranda-calculator {
        max-width: 100%;
        padding-top: 60px;
    }

    .mobile-calc-close {
        display: block;
    }

    .cart-header {
        padding: 1rem;
    }

    .cart-total {
        padding: 1rem;
    }

    .cart-actions {
        padding: 0 1rem 1rem;
        flex-direction: column;
    }

    .cart-actions .btn {
        width: 100%;
    }

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

    .subtotal-line,
    .vat-line,
    .final-total {
        font-size: 0.9rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-cart-sticky {
        bottom: 120px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
        margin-top: 0;
        padding: 1rem 0;
        padding-top: 64px; /* Mobile navbar height */
    }

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

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .hero-stats {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 60px;
        padding: 0.5rem;
        border-radius: 8px;
    }

    /* Stack hero elements vertically on very small screens */
    .hero-content-wrapper {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .hero-left {
        gap: 1.5rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .floating-card {
        padding: 0.75rem;
        min-width: 70px;
    }

    .floating-icon {
        font-size: 1.2rem;
    }

    .floating-text {
        font-size: 0.7rem;
    }

    .veranda-hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .veranda-hero-content p {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 1.8rem;
    }

    .veranda-hero-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    /* Adjust blur effect for small screens */
    .veranda-hero-content h1::before,
    .veranda-hero-content h1::after {
        filter: blur(0.5px);
        transform: translate(1px, 1px);
    }

    /* Disable heavy animations on mobile for better performance */
    .veranda-hero::before {
        animation: none;
    }

    .veranda-hero-bg img {
        animation: none;
    }

    .veranda-hero-content {
        animation: none;
    }

    .veranda-hero-content h1 {
        animation: fadeInUpScale 1.2s ease-out 0.3s forwards;
    }

    .veranda-hero-content p {
        animation: fadeInUp 1s ease-out 0.6s forwards;
    }

    /* Disable image float animation on mobile */
    .hero-image-wrapper,
    .hero-main-image {
        animation: none !important;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none !important;
    }

    /* Disable hover effects on mobile */
    .hero-image-wrapper:hover .hero-main-image {
        transform: none;
    }

    .stat-item:hover {
        transform: none;
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
    }



    .menu-item {
        padding: 0.75rem;
    }

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

    .cart-item-name {
        font-size: 0.9rem;
    }

    .cart-item-price {
        font-size: 0.8rem;
    }

    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

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

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

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --text-light: #888;
        --border-color: #404040;
        --border-light: #333;
    }

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

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

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

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

/* Focus Styles for Accessibility */
.btn:focus,
.search-input:focus,
.menu-type-btn:focus,
.price-option:focus,
.qty-btn:focus,
.remove-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffd700;
        --text-primary: #ffffff;
        --bg-primary: #000000;
        --border-color: #ffffff;
    }
}

/* Menu Content Wrapper - hide all by default */
.menu-content-wrapper {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Ultra small screens - 320px and below */
@media (max-width: 320px) {
    .hero-section {
        height: 45vh;
        min-height: 280px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        line-height: 1.1;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .hero-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .stat-item {
        min-width: 50px;
        padding: 0.4rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .menu-type-toggle {
        max-width: 180px;
        padding: 0.25rem;
    }

    .menu-type-btn {
        min-height: 60px;
        padding: 0.5rem 0.25rem;
    }

    .menu-type-btn .menu-type-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

/* Extra small screens - single column tabs */
@media (max-width: 360px) {
    .menu-type-toggle {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.3rem;
        max-width: 200px;
    }

    .menu-type-btn {
        min-height: 70px;
        padding: 0.75rem 0.5rem;
    }

    .menu-type-btn .menu-type-text {
        font-size: 0.7rem;
        max-width: 100%;
    }
}
