/* --- Base & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #ff1a1a;
    --red-dark: #cc0000;
    --red-glow: #ff3333;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    perspective: 1000px;
}

/* Neon Text Effect */
.neon-text {
    text-shadow: 
        0 0 5px var(--red),
        0 0 10px var(--red),
        0 0 20px var(--red),
        0 0 40px var(--red-dark),
        0 0 80px var(--red-dark);
}

.neon-text-subtle {
    text-shadow: 
        0 0 5px var(--red),
        0 0 10px var(--red);
}

/* Neon Border Effect */
.neon-border {
    box-shadow: 
        0 0 5px var(--red),
        0 0 10px var(--red),
        inset 0 0 5px var(--red);
}

.neon-glow {
    box-shadow: 
        0 0 10px var(--red),
        0 0 20px var(--red),
        0 0 40px var(--red-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

header.scrolled {
    background: var(--black);
    border-bottom: 1px solid var(--red);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--red);
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.cart-icon:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--red);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    text-decoration: none;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.logo:hover {
    transform: rotateY(10deg) scale(1.05);
    text-shadow: 0 0 20px var(--red);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--red);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
        url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    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="%23ff1a1a" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    transform-style: preserve-3d;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(2deg); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { 
        text-shadow: 
            0 0 5px var(--red),
            0 0 10px var(--red),
            0 0 20px var(--red),
            0 0 40px var(--red-dark);
    }
    50% { 
        text-shadow: 
            0 0 10px var(--red),
            0 0 20px var(--red),
            0 0 40px var(--red),
            0 0 80px var(--red-dark),
            0 0 120px var(--red-dark);
    }
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--gray);
    margin-bottom: 2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.btn-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 
        0 0 20px var(--red),
        0 0 40px var(--red),
        0 0 60px var(--red-dark);
    color: var(--white);
}

.btn:hover::before {
    left: 0;
}

.btn:active {
    transform: translateZ(10px) scale(0.98);
}

.btn-primary {
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
}

.btn-primary::before {
    background: var(--red-dark);
}

/* Section Styles */
section {
    padding: 100px 2rem;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--red);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Menu Section */
.menu-section {
    background: var(--black-light);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--red);
    box-shadow: 0 0 20px var(--red);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-card {
    background: var(--black);
    border: 1px solid var(--black-lighter);
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    pointer-events: none;
}

.menu-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    border-color: var(--red);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 26, 26, 0.3);
}

.menu-card:hover::before {
    border-color: var(--red);
    box-shadow: 
        inset 0 0 20px rgba(255, 26, 26, 0.2),
        0 0 20px var(--red);
}

.menu-card-image {
    height: 200px;
    background: var(--black-lighter);
    position: relative;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 26, 26, 0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-card-image::after {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.menu-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.add-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px var(--red);
    transform: rotate(90deg);
}

/* Reservation Section */
.reservation-section {
    background: var(--black);
    position: relative;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 26, 26, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.error-message {
    color: var(--red);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input {
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.form-group.error .error-message {
    display: block;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--black);
    border: 2px solid var(--red);
    padding: 3rem;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 0 50px var(--red);
    opacity: 0;
    transition: all 0.5s ease;
}

.success-message.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* About Section */
.about-section {
    background: var(--black-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--red);
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.chef-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.chef-card {
    background: var(--black);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--black-lighter);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.chef-card:hover {
    transform: translateZ(30px) rotateY(5deg);
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.3);
}

.chef-avatar {
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
}

.chef-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.chef-card span {
    color: var(--gray);
    font-size: 0.85rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.3);
    transform: translateY(-10px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
}

.stat-label {
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--black);
    text-align: center;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: var(--black-light);
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-btn:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 
        0 0 30px var(--red),
        0 0 60px var(--red),
        0 0 90px var(--red-dark);
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn span,
.contact-btn svg {
    position: relative;
    z-index: 1;
}

.contact-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-info {
    margin-top: 4rem;
    color: var(--gray);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--red);
}

/* Footer */
footer {
    background: var(--black-light);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--red);
    box-shadow: 0 -5px 30px rgba(255, 26, 26, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: var(--gray);
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--black-lighter);
    color: var(--gray);
}

.footer-bottom span {
    color: var(--red);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid var(--red);
    box-shadow: -10px 0 50px rgba(255, 26, 26, 0.3);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 6rem 2rem 2rem;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--black-lighter);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--red);
    padding-left: 1rem;
    text-shadow: 0 0 10px var(--red);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    section {
        padding: 60px 1rem;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .chef-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Card Effect */
.card-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
}

/* Add to Cart Notification */
.add-to-cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--white);
}

.add-to-cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    width: 24px;
    height: 24px;
    fill: var(--white);
    flex-shrink: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.notification-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0.25rem 0 0 0;
}

/* Add Button Active State */
.add-btn.active {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.6);
}

/* Responsive notification */
@media (max-width: 640px) {
    .add-to-cart-notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(150px);
    }
    
    .add-to-cart-notification.show {
        transform: translateY(0);
    }
}

/* Cart Panel */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    background: var(--black-light);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(255, 26, 26, 0.3);
    border-left: 2px solid var(--red);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--black-lighter);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: var(--red);
    transform: scale(1.2);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    padding: 2rem 1rem;
    font-style: italic;
}

.cart-item {
    background: var(--black-lighter);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--red);
}

.item-details {
    margin-bottom: 0.75rem;
}

.item-name {
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--white);
}

.item-price {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.qty-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--red-dark);
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: auto;
}

.remove-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--black-lighter);
    background: var(--black-lighter);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Responsive cart panel */
@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
    }

    .cart-icon {
        margin-right: 0.5rem;
    }
}