@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #F9F7F5;
    --surface-color: #FFFFFF;
    --primary-color: #1A1A1A;
    --secondary-color: #8C705F;
    --accent-color: #D4A373;
    --text-main: #333333;
    --text-muted: #666666;
    --border-light: #E0E0E0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn-primary,
.btn-outline,
.btn-white,
.btn-outline-white,
.btn-add-cart,
.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--surface-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--surface-color);
}

.btn-white {
    background: var(--surface-color);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    border: 1px solid var(--surface-color);
    color: var(--surface-color);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--surface-color);
    color: var(--primary-color);
}

.btn-text {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
}

.btn-text:hover {
    gap: 15px;
    /* Arrow moves away */
}

/* --- Header --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 247, 245, 0.8);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav {
    display: none;
}

@media(min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 30px;
        margin-right: 20px;
    }

    .desktop-nav a {
        font-weight: 500;
        position: relative;
    }

    .desktop-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--primary-color);
        transition: var(--transition);
    }

    .desktop-nav a:hover::after {
        width: 100%;
    }
}

.cart-icon {
    position: relative;
    font-size: 1.4rem;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    /* Centering content vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, #FAF8F6 0%, #EBE5E0 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: -webkit-linear-gradient(#1A1A1A, #4A4A4A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.hero-scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator .mouse::after {
    content: '';
    width: 4px;
    height: 6px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* --- Stats Section --- */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Philosophy --- */
.philosophy-section {
    padding: 120px 0;
    text-align: center;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.divider-center {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 30px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Menu Sections --- */
.menu-section {
    padding: 80px 0 120px;
}

.menu-section.alt-bg {
    background: #F2EFE9;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header-center p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.menu-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.card-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.menu-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--surface-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.overlay-actions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.menu-card:hover .overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--surface-color);
}

.card-desc {
    padding: 24px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--secondary-color);
}

.desc-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 45px;
}

.btn-add-cart {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 12px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-add-cart:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--surface-color);
}

/* --- Live Music Section --- */
.live-music-section {
    padding: 100px 0;
    overflow: hidden;
}

.container.with-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag-dark {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.music-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.music-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.schedule-list {
    border-left: 2px solid var(--border-light);
    padding-left: 30px;
}

.schedule-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
    opacity: 0.5;
    transition: var(--transition);
    cursor: pointer;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    transition: var(--transition);
}

.schedule-item.active,
.schedule-item:hover {
    opacity: 1;
}

.schedule-item.active::before {
    background: var(--secondary-color);
    transform: scale(1.5);
}

.schedule-item .day {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.schedule-item h4 {
    font-size: 1.2rem;
}

.music-image {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.music-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Testimonials --- */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FAF8F6, #FFF);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 10px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 350px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
}

.testi-card p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.user-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Footer CTA --- */
.footer-cta {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.footer-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.cta-content h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Footer Bottom --- */
footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 5px;
}

.footer-socials a {
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    position: relative;
    animation: modalUp 0.4s ease;
}

@keyframes modalUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu nav a {
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.mobile-menu nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.mobile-menu nav a:hover::after {
    width: 100%;
}

.mobile-menu .social-links {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.mobile-menu .social-links a {
    font-size: 1.5rem;
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.mobile-menu .social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Hide reservation button on mobile */
    .btn-outline {
        display: none;
    }

    /* Header Optimizations */
    .site-header {
        padding: 16px 20px;
    }

    .site-header.scrolled {
        padding: 12px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .header-actions {
        gap: 16px;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 100;
    }

    .cart-icon {
        font-size: 1.2rem;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }

    /* Container Padding */
    .container {
        padding: 0 16px;
    }

    /* Layout Grids */
    .container.with-sidebar,
    .menu-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Section */
    .hero-section {
        min-height: 100svh;
        padding: 0 16px;
    }

    .hero-content {
        padding-top: 100px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 30px;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-text {
        width: 100%;
        max-width: 250px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .hero-scroll-indicator .mouse {
        width: 22px;
        height: 36px;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    /* Philosophy Section */
    .philosophy-section {
        padding: 60px 0;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .divider-center {
        width: 50px;
        margin: 0 auto 20px;
    }

    .section-desc {
        font-size: 0.95rem;
        padding: 0 10px;
        line-height: 1.6;
    }

    /* Menu Sections */
    .menu-section {
        padding: 50px 0 70px;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .section-header-center p {
        font-size: 0.95rem;
    }

    .menu-grid {
        gap: 20px;
    }

    .menu-card {
        border-radius: var(--radius-md);
    }

    .menu-card:hover {
        transform: none;
    }

    .card-img-wrapper {
        height: 200px;
    }

    .badge {
        top: 12px;
        left: 12px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .card-desc {
        padding: 18px;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 0.95rem;
    }

    .desc-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
        min-height: auto;
    }

    .btn-add-cart {
        padding: 10px;
        font-size: 0.85rem;
    }

    /* Live Music Section */
    .live-music-section {
        padding: 60px 0;
    }

    .container.with-sidebar {
        gap: 30px;
    }

    .section-tag-dark {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    .music-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .music-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .schedule-list {
        padding-left: 25px;
    }

    .schedule-item {
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .schedule-item::before {
        left: -30px;
        width: 8px;
        height: 8px;
    }

    .schedule-item .day {
        font-size: 0.75rem;
    }

    .schedule-item h4 {
        font-size: 1rem;
    }

    .schedule-item p {
        font-size: 0.85rem;
    }

    .music-image {
        height: 250px;
        margin-top: 30px;
        border-radius: var(--radius-md);
    }

    .play-btn-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .testimonial-slider {
        gap: 15px;
        padding: 30px 5px;
    }

    .testi-card {
        min-width: 280px;
        padding: 25px;
        gap: 15px;
    }

    .stars {
        font-size: 1rem;
    }

    .testi-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .user-profile img {
        width: 40px;
        height: 40px;
    }

    .user-profile span {
        font-size: 0.85rem;
    }

    /* Footer CTA */
    .footer-cta {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .footer-actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .footer-actions .btn-white,
    .footer-actions .btn-outline-white {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    footer {
        padding: 30px 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand h3 {
        font-size: 1.4rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-socials a {
        font-size: 1.3rem;
        margin: 0 10px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 20px;
    }

    /* Modal */
    .modal-content {
        margin: 5% auto;
        padding: 30px 20px;
        width: 95%;
        border-radius: var(--radius-md);
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Reduce animation on mobile for performance */
    [data-aos] {
        transition-duration: 0.5s !important;
    }

    /* Disable hover transforms on touch devices */
    @media (hover: none) {
        .menu-card:hover {
            transform: none;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover,
        .btn-outline:hover,
        .btn-white:hover {
            transform: none;
        }
    }

    /* Cart Page Mobile */
    .cart-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .cart-page .section-title {
        font-size: 1.6rem;
    }

    .cart-table-container {
        padding: 15px;
    }

    .cart-table {
        min-width: 500px;
        font-size: 0.85rem;
    }

    .cart-table th {
        padding: 10px;
        font-size: 0.9rem;
    }

    .cart-table td {
        padding: 12px 8px;
    }

    .cart-item-img {
        width: 45px;
        height: 45px;
    }

    .cart-item-info {
        gap: 10px;
    }

    .cart-item-info h4 {
        font-size: 0.9rem;
    }

    .cart-item-info small {
        font-size: 0.7rem;
    }

    .quantity-control {
        gap: 6px;
        padding: 3px 8px;
    }

    .qty-btn {
        font-size: 1rem;
        width: 20px;
        height: 20px;
    }

    .qty-input {
        width: 25px;
        font-size: 0.85rem;
    }

    .cart-summary {
        max-width: 100%;
        padding: 20px;
        margin-top: 20px;
    }

    .cart-summary h3 {
        font-size: 1.2rem;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .summary-row.total {
        font-size: 1.1rem;
    }
}

/* Small Mobile (< 380px) */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .music-content h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .testi-card {
        min-width: 250px;
        padding: 20px;
    }

    .card-img-wrapper {
        height: 180px;
    }

    .btn-add-cart {
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* --- Cart Page --- */
.cart-page {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.cart-table-container {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--border-light);
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-color);
    padding: 5px 10px;
    border-radius: 50px;
    width: fit-content;
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 30px;
    text-align: center;
    background: transparent;
    border: none;
    font-weight: 600;
}

.btn-remove {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-remove:hover {
    transform: scale(1.1);
}

.cart-summary {
    background: var(--surface-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 400px;
    margin-left: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.summary-row.total {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .cart-summary {
        max-width: 100%;
    }
}