/* ========================================
   SATURN EATS - Fine Dining
   Elegant Sunset Parallax Theme
   Complete E-commerce System
======================================== */

/* CSS Variables */
:root {
    /* Sunset Colors */
    --sunset-orange: #FF6B35;
    --sunset-coral: #FF8C69;
    --sunset-pink: #FF6B9D;
    --sunset-magenta: #C71585;
    --sunset-purple: #8B5A8C;
    --sunset-deep: #4A1942;
    
    /* Logo/Brand Colors */
    --golden: #D4A574;
    --golden-light: #E5C094;
    --golden-dark: #B8935A;
    
    /* Neutrals */
    --cream: #FFFEF7;
    --charcoal: #1A1A1A;
    --dark: #0D0D0D;
    --darker: #070710;
    --light: #FAFAFA;
    --white: #FFFFFF;
    
    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

::selection {
    background: var(--golden);
    color: var(--dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sunset-orange), var(--sunset-magenta));
}

/* Sunset Parallax Background */
.sunset-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        180deg,
        #4A1942 0%,
        #6B2D5B 10%,
        #8B5A8C 20%,
        #C71585 35%,
        #E91E8C 45%,
        #FF6B9D 55%,
        #FF8C69 65%,
        #FF6B35 75%,
        #1A1A1A 90%,
        #0D0D0D 100%
    );
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--sunset-orange), var(--golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-full {
    width: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--sunset-deep), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    width: 250px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.loader-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid transparent;
    border-top-color: var(--sunset-orange);
    border-right-color: var(--sunset-magenta);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo .logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--golden));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    border-color: transparent;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--sunset-orange);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-order {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.hamburger.active { background: transparent; }
.hamburger.active::before { top: 0; transform: rotate(45deg); }
.hamburger.active::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--sunset-deep), var(--dark));
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 3rem;
        transition: right 0.3s ease;
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        text-shadow: none;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.4));
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.delivery-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.partners-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.partner-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.partner-logo {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    border-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Menu Section */
.menu {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(13, 13, 13, 0.9) 0%,
        rgba(74, 25, 66, 0.3) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: -1;
}

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

.menu-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.menu-section {
    margin-bottom: 5rem;
}

.section-title-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-title-bar h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.section-title-bar h3 i {
    background: linear-gradient(135deg, var(--sunset-orange), var(--golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--sunset-orange), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.menu-item:hover {
    border-color: var(--sunset-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.item-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .item-image img {
    transform: scale(1.1);
}

.item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    color: var(--white);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(199, 21, 133, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.item-content {
    padding: 1.5rem;
}

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

.item-header h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
}

.price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Sides Grid */
.sides-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.side-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-item:hover {
    border-color: var(--sunset-orange);
}

.side-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.side-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.side-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.side-add-btn {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.side-add-btn:hover {
    transform: scale(1.1);
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(13, 13, 13, 0.9) 0%,
        rgba(74, 25, 66, 0.3) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.image-wrapper {
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-image {
    height: 500px;
}

.secondary-image {
    position: absolute;
    width: 250px;
    height: 300px;
    bottom: -2rem;
    right: 2rem;
    border: 4px solid var(--dark);
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .secondary-image {
        display: none;
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(74, 25, 66, 0.4) 50%,
        rgba(13, 13, 13, 0.85) 100%
    );
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-text .closed {
    color: var(--sunset-orange);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    border-color: transparent;
}

.contact-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        min-height: 300px;
    }
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(13, 13, 13, 0.95) 0%,
        rgba(74, 25, 66, 0.3) 50%,
        rgba(13, 13, 13, 1) 100%
    );
    z-index: -1;
}

.footer-top {
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1rem;
}

.footer-partners {
    margin-top: 1.5rem;
}

.footer-partners span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.partner-logos-footer {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.partner-badge {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-light);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-hours .closed {
    color: var(--sunset-orange);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-bottom a {
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.modal-container {
    position: relative;
    background: var(--charcoal);
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--sunset-orange);
}

.modal-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .modal-content-wrapper {
        grid-template-columns: 1fr;
    }
}

.modal-image-container {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 2rem;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header .item-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

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

.modal-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section h4 i {
    color: var(--golden);
}

.sides-grid-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.side-option {
    display: block;
    cursor: pointer;
}

.side-option input {
    display: none;
}

.side-option-content {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.side-option input:checked + .side-option-content {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--sunset-orange);
}

.side-option:hover .side-option-content {
    border-color: var(--golden);
}

.side-name {
    color: var(--white);
    font-size: 0.9rem;
}

.side-price-modal {
    color: var(--golden);
    font-size: 0.85rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-option {
    display: block;
    cursor: pointer;
    flex: 1;
}

.size-option input {
    display: none;
}

.size-option-content {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.size-option input:checked + .size-option-content {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--sunset-orange);
}

.size-option:hover .size-option-content {
    border-color: var(--golden);
}

.size-name {
    color: var(--white);
    display: block;
}

.size-price-modal {
    color: var(--golden);
    font-size: 0.85rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    border-color: transparent;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
}

.modal-section textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
}

.modal-section textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
}

.modal-total {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
}

.total-line span:last-child {
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--darker);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-header h3 i {
    color: var(--golden);
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-close-btn:hover {
    color: var(--sunset-orange);
}

.cart-delivery {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-delivery h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 1rem;
}

.delivery-toggle {
    display: flex;
    gap: 0.5rem;
}

.delivery-btn {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.delivery-btn i {
    font-size: 1.25rem;
}

.delivery-btn small {
    font-size: 0.7rem;
    color: var(--golden);
}

.delivery-btn.active {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--sunset-orange);
}

.delivery-btn:hover {
    border-color: var(--golden);
}

.delivery-address {
    margin-top: 1rem;
}

.delivery-address label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.5rem;
}

.delivery-address input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.delivery-address input:focus {
    outline: none;
    border-color: var(--sunset-orange);
}

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

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.cart-empty i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cart-empty span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

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

.cart-item-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
}

.cart-item-side {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-qty button:hover {
    background: var(--sunset-orange);
    border-color: transparent;
}

.cart-item-qty span {
    color: var(--white);
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 1rem;
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #E74C3C;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-partners {
    text-align: center;
    margin-bottom: 1rem;
}

.cart-partners span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partner-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-totals {
    margin-bottom: 1rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.cart-grand-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.cart-grand-total span:last-child {
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Checkout Modal */
.checkout-container {
    position: relative;
    background: var(--charcoal);
    max-width: 500px;
    width: 95%;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-container h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-form .form-group {
    margin-bottom: 1rem;
}

.checkout-form .form-group.full {
    grid-column: 1 / -1;
}

.checkout-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.5rem;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
}

.checkout-form textarea {
    min-height: 80px;
    resize: vertical;
}

.checkout-summary {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-summary h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 1rem;
}

.checkout-total-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.checkout-total-line span:last-child {
    background: linear-gradient(135deg, var(--golden), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 576px) {
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 4000;
    animation: slideUp 0.5s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.notification.error {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(100%); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
/* Contact Form Styles */
.contact-form-wrapper {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-form-wrapper .form-group {
    margin-bottom: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-wrapper .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.contact-form-wrapper .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer Newsletter Form */
.footer-newsletter form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-newsletter input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
}

.footer-newsletter input[type="email"]::placeholder {
    color: rgba(255,255,255,0.7);
}

.footer-newsletter input[type="email"]:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255,255,255,0.15);
}

.footer-newsletter .btn-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-newsletter .btn-primary:hover {
    transform: scale(1.05);
}
