/*
   FullDevSolutions - Demo
   Dragon Street Wok - Food Truck Cuisine Asiatique
*/

/* ================================
   VARIABLES & RESET
================================ */
:root {
    --primary: #E53935;
    --primary-dark: #B71C1C;
    --secondary: #FFD54F;
    --accent: #FF6F00;
    --dark: #1A1A2E;
    --darker: #0F0F1A;
    --light: #FAFAFA;
    --gray: #757575;
    --gray-light: #E0E0E0;
    --success: #4CAF50;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* ================================
   SKIP LINK
================================ */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}
.skip-to-content:focus { top: 0; }

/* ================================
   DEMO BANNER
================================ */
.demo-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10001;
    background: #000; color: rgba(255,255,255,0.7);
    padding: 0.7rem 1.5rem; font-family: var(--font-body); font-size: 0.8rem;
    display: flex; justify-content: center; align-items: center; gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.demo-banner a { text-decoration: none; }
.demo-banner-credit {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--primary); font-weight: 600; transition: opacity 0.3s;
}
.demo-banner-credit:hover { opacity: 0.8; }
.demo-banner-credit img { border-radius: 4px; }
.demo-banner-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem; background: var(--primary); color: #fff;
    border-radius: 50px; font-weight: 600; font-size: 0.78rem;
    transition: var(--transition); white-space: nowrap;
}
.demo-banner-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.demo-banner-btn svg { width: 14px; height: 14px; }

/* ================================
   NAVIGATION
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--darker);
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--secondary);
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

.nav-link.btn-order {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link.btn-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-link.btn-order::after {
    display: none;
}

.cart-count {
    background: var(--secondary); color: var(--dark);
    font-size: 0.7rem; font-weight: 700;
    width: 20px; height: 20px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: 0.3rem;
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.cart-icon-mobile { display: none; color: white; font-size: 1.2rem; position: relative; text-decoration: none; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* ================================
   HERO SECTION
================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--light));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--secondary);
    -webkit-text-stroke: 2px var(--secondary);
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons, .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

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

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn { font-family: var(--font-body); font-size: 0.95rem; }

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number, .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.7;
    font-size: 0.8rem;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(transparent, white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ================================
   SPECIALTIES
================================ */
.specialties {
    padding: 6rem 0 4rem;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.specialty-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.specialty-img {
    height: 180px;
    overflow: hidden;
}

.specialty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.specialty-card:hover .specialty-img img {
    transform: scale(1.1);
}

.specialty-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: var(--dark);
}

.specialty-card p {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 0 1.5rem 1.5rem;
}

/* ================================
   SECTION HEADERS
================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light { color: white; }
.section-header.light .section-title { color: white; }
.section-header.light .section-description { color: rgba(255, 255, 255, 0.8); }

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.8rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   PAGE OFFSET (navbar fixe)
================================ */
main > section:first-child:not(.hero) {
    padding-top: 10rem;
}

/* ================================
   MENU SECTION
================================ */
.menu-section {
    padding: 6rem 0;
    background: var(--light);
}

.menu-categories, .menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn, .filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-light);
    background: white;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active,
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

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

.menu-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-badge.bestseller, .menu-badge.best-seller { background: var(--primary); color: white; }
.menu-badge.popular, .menu-badge.populaire { background: var(--secondary); color: var(--dark); }
.menu-badge.new, .menu-badge.nouveau { background: var(--success); color: white; }

.menu-card-content {
    padding: 1.5rem;
}

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

.menu-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
}

.menu-price, .menu-card-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
}

.menu-card-content p, .menu-card-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-tags, .menu-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag, .menu-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: var(--gray-light);
    border-radius: 50px;
    color: var(--dark);
}

.tag.vegetarian, .menu-tag.vege {
    background: #E8F5E9;
    color: #2E7D32;
}

.btn-add-cart {
    width: 100%; padding: 0.7rem; background: var(--primary); color: white;
    border: none; border-radius: var(--radius-sm); font-weight: 600;
    font-family: var(--font-body); cursor: pointer; transition: var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark); }

.link-arrow { font-family: var(--font-body); font-size: 0.9rem; color: var(--primary); font-weight: 600; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* ================================
   LOCATIONS SECTION
================================ */
.locations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.location-card.weekend {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.location-day {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary);
    min-width: 80px;
}

.location-card.weekend .location-day { color: white; }

.location-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

.location-city {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
}

.location-card.weekend .location-city { color: white; }

.location-today {
    display: inline-block; background: var(--primary); color: white;
    font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 50px; margin-left: 0.5rem;
}

.locations-cta { text-align: center; color: white; }
.locations-cta p { margin-bottom: 1.5rem; font-size: 1.1rem; }

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn svg { width: 20px; height: 20px; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-btn.facebook { background: #1877F2; color: white; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }

/* ================================
   GALLERY SECTION
================================ */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox-img { max-width: 90%; max-height: 85vh; object-fit: contain; position: relative; z-index: 1; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; z-index: 2; background: rgba(255,255,255,0.1); color: white;
    border: none; font-size: 2rem; cursor: pointer; width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* ================================
   ORDER / CART SECTION
================================ */
.order-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.order-content, .order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.order-info .section-subtitle { text-align: left; }
.order-info .section-title { text-align: left; margin-bottom: 1.5rem; }

.order-text {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.order-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.method-icon {
    width: 60px; height: 60px; background: white;
    border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: var(--shadow);
}

.method-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.method-info p { font-size: 0.9rem; color: var(--gray); }

.order-form, .cart-card, .checkout-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.order-form h3, .cart-card h3, .checkout-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.order-form > p, .checkout-card > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block; font-size: 0.85rem; font-weight: 500;
    margin-bottom: 0.3rem; color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea { resize: vertical; }

.btn-submit, .btn-stripe {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit svg { width: 20px; height: 20px; }
.btn-submit:hover, .btn-stripe:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Cart items */
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--gray-light); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; }
.cart-item-price { color: var(--gray); font-size: 0.9rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gray-light); background: white; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.cart-total { display: flex; justify-content: space-between; padding-top: 1.5rem; font-family: var(--font-display); font-size: 1.5rem; }
.cart-empty { text-align: center; color: var(--gray); padding: 3rem 0; font-style: italic; }

/* Checkout result */
.checkout-result { max-width: 600px; margin: 0 auto; padding: 10rem 2rem 4rem; text-align: center; }
.success-card { background: white; border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow-lg); }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.order-number-card { background: var(--light); border: 2px dashed var(--gray-light); border-radius: var(--radius-sm); padding: 1.5rem; margin-top: 1.5rem; }
.test-notice { background: #FFF3CD; color: #856404; padding: 1rem; border-radius: var(--radius-sm); margin: 1.5rem 0; line-height: 1.8; font-size: 0.9rem; }
.test-notice code { background: rgba(0,0,0,0.08); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.95em; letter-spacing: 1px; }

/* Order status */
.order-status { max-width: 700px; margin: 0 auto; padding: 8rem 2rem 4rem; }

/* ================================
   REVIEWS SECTION
================================ */
.reviews-section {
    padding: 6rem 0;
    background: var(--light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars { margin-bottom: 1rem; font-size: 1.2rem; }

.review-text {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px; height: 50px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
}

.author-name { font-weight: 600; display: block; }
.author-date { font-size: 0.85rem; color: var(--gray); }

/* ================================
   CTA SECTION
================================ */
.cta-section { padding: 5rem 0; text-align: center; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }

/* ================================
   LEGAL / PAGES
================================ */
.page-content { max-width: 800px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.page-content h1 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 2rem; }
.page-content h2 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--primary); }
.page-content p { color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }
.page-content a { color: var(--primary); }

/* Error pages */
.error-page { text-align: center; padding: 10rem 2rem 4rem; }
.error-page h1 { font-family: var(--font-display); font-size: 6rem; color: var(--primary); }
.error-page p { color: var(--gray); margin-bottom: 2rem; }

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--darker);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-size: 1.5rem; transition: var(--transition); text-decoration: none; }
.footer-social a:hover { transform: scale(1.2); }

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul { list-style: none; }

.footer-links li,
.footer-contact li,
.footer-hours li { margin-bottom: 0.75rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover { color: white; }

.footer-contact li,
.footer-hours li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-credit a { color: var(--primary); text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* Toast */
.cart-toast {
    position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--success); color: white; padding: 0.8rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; z-index: 9999;
    opacity: 0; transition: var(--transition); pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Form message */
.form-message { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; }
.form-message.success { background: rgba(76,175,80,0.1); color: var(--success); border: 1px solid var(--success); }
.form-message.error { background: rgba(229,57,53,0.1); color: var(--primary); border: 1px solid var(--primary); }

/* ================================
   ANIMATIONS
================================ */
.fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; }
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item.large { grid-column: span 2; }
    .order-content, .order-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .demo-banner { flex-wrap: wrap; justify-content: center; gap: 0.4rem 0.75rem; padding: 0.5rem 1rem; font-size: 0.72rem; }
    .demo-banner > span { width: 100%; text-align: center; }
    .demo-banner-btn { font-size: 0.65rem; padding: 0.35rem 0.75rem; }

    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px;
        height: 100vh; background: var(--darker); flex-direction: column;
        justify-content: center; gap: 2rem; transition: var(--transition);
    }
    .nav-menu.active { right: 0; }
    .menu-toggle { display: flex; z-index: 1001; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .cart-icon-mobile { display: flex; }

    .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .specialties-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}
