/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

.footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #5865F2;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.footer-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

:root {
    --red: #DA291C;
    --red-dark: #a81f16;
    --red-light: #ff3d30;
    --red-glow: rgba(218,41,28,0.4);
    --yellow: #FFC72C;
    --yellow-dark: #e8a800;
    --yellow-light: #FFD75E;
    --yellow-glow: rgba(255,199,44,0.4);
    --green: #264F36;
    --green-light: #367A4F;
    --black: #121212;
    --black-soft: #1a1a1a;
    --black-light: #2a2a2a;
    --text: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --bg: #fafafa;
    --bg-alt: #f0f0f0;
    --bg-dark: #0a0a0a;
    --card: #ffffff;
    --card-hover: #ffffff;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --glass: rgba(255,255,255,0.7);
    --glass-border: rgba(255,255,255,0.3);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.18), 0 12px 24px rgba(0,0,0,0.10);
    --shadow-red: 0 8px 32px rgba(218,41,28,0.3);
    --shadow-yellow: 0 8px 32px rgba(255,199,44,0.35);
    --radius: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition: 0.35s var(--ease);
    --transition-fast: 0.2s var(--ease);
    --transition-slow: 0.6s var(--ease);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITY CLASSES ===== */
.red { color: var(--red); }
.yellow { color: var(--yellow); }
.green { color: var(--green); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

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

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.navbar.scrolled::before {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 1px 24px rgba(0,0,0,0.06);
    border-bottom-color: transparent;
}

.nav-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 56px;
}

/* Brand / Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.navbar-brand:hover { opacity: 0.85; }

.logo-arches {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

/* Center links */
.navbar-center {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1.1rem;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--text);
    background: rgba(0,0,0,0.04);
}
.nav-link.active {
    color: var(--red);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2.5px;
    background: var(--red);
    border-radius: 4px;
}

/* Right side */
.navbar-end {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* User badge (logged in) */
.nav-user {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.85rem 0.3rem 0.3rem;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    text-decoration: none;
}
.nav-user:hover {
    background: rgba(0,0,0,0.06);
    border-color: var(--border);
}
.nav-user img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}
.nav-user-emoji {
    font-size: 1.3rem;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-user span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Logout icon button */
.nav-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.nav-logout:hover {
    background: rgba(218,41,28,0.08);
    color: var(--red);
}

/* CTA button (not logged in) */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.2rem;
    background: var(--red);
    color: white;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(218,41,28,0.2);
}
.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(218,41,28,0.3);
    color: white;
}
.nav-cta svg { flex-shrink: 0; }

/* Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.mobile-toggle:hover { background: rgba(0,0,0,0.05); }

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.hamburger span:nth-child(2) { width: 70%; }

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 16px rgba(218,41,28,0.25);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(218,41,28,0.35);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(255,199,44,0.3);
}
.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,199,44,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--black-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1rem; border-radius: var(--radius-md); }

/* ===== PAGE CONTENT ===== */
.page-content {
    padding-top: 70px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0000;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://api.mcdonalds-recrute.fr/wp-content/uploads/2018/10/Restaurant-Mcdonalds_paysage-2.jpg') center/cover no-repeat;
    filter: brightness(0.35);
    z-index: 0;
    transition: transform 8s ease;
}
.hero:hover .hero-bg {
    transform: scale(1.03);
}

/* Dark red gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,0,0,0.5) 0%, rgba(80,0,5,0.35) 40%, rgba(140,0,10,0.2) 60%, rgba(10,0,0,0.7) 100%),
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(218,41,28,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,199,44,0.06) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 8s infinite ease-in-out;
}
.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { left: 80%; top: 30%; animation-delay: 1s; animation-duration: 9s; }
.hero-particle:nth-child(3) { left: 30%; top: 70%; animation-delay: 2s; animation-duration: 6s; }
.hero-particle:nth-child(4) { left: 60%; top: 80%; animation-delay: 3s; animation-duration: 8s; }
.hero-particle:nth-child(5) { left: 90%; top: 60%; animation-delay: 0.5s; animation-duration: 10s; }
.hero-particle:nth-child(6) { left: 50%; top: 10%; animation-delay: 2.5s; animation-duration: 7s; width: 4px; height: 4px; background: var(--red-light); }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.2; }
    25% { transform: translateY(-30px) translateX(15px) scale(1.5); opacity: 0.5; }
    50% { transform: translateY(-15px) translateX(-10px) scale(1); opacity: 0.3; }
    75% { transform: translateY(-40px) translateX(20px) scale(1.3); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: hero-fade-in 1s var(--ease) both;
}

@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,199,44,0.12);
    border: 1px solid rgba(255,199,44,0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 1.75rem;
    animation: hero-fade-in 1s 0.2s var(--ease) both;
    backdrop-filter: blur(8px);
}

.arches-big {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 40px rgba(255,199,44,0.3)) drop-shadow(0 0 80px rgba(255,199,44,0.15));
    animation: arches-glow 3s ease-in-out infinite alternate, hero-fade-in 1s 0.3s var(--ease) both;
}

@keyframes arches-glow {
    from { filter: drop-shadow(0 0 40px rgba(255,199,44,0.3)) drop-shadow(0 0 80px rgba(255,199,44,0.15)) brightness(1); }
    to { filter: drop-shadow(0 0 60px rgba(255,199,44,0.5)) drop-shadow(0 0 120px rgba(255,199,44,0.25)) brightness(1.1); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    animation: hero-fade-in 1s 0.4s var(--ease) both;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: hero-fade-in 1s 0.5s var(--ease) both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: hero-fade-in 1s 0.6s var(--ease) both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: hero-fade-in 1s 0.7s var(--ease) both;
}
.hero-stat {
    text-align: center;
}
.hero-stat .number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.1;
}
.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    font-weight: 500;
    animation: bounce-scroll 2s ease-in-out infinite;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

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

/* ===== SECTION TITLES ===== */
.section {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.section-full {
    padding: 5rem 2rem;
}
.section-alt {
    background: var(--bg-alt);
}
.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title .overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.section-title .overline::before,
.section-title .overline::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.4;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-dark .section-title h2 {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title h2 .red {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}
.section-dark .section-title p {
    color: rgba(255,255,255,0.5);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card .icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(218,41,28,0.08), rgba(255,199,44,0.08));
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.feature-card:hover .icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(218,41,28,0.15), rgba(255,199,44,0.15));
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== POPULAR PRODUCTS ===== */
.popular-section {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 5rem 0;
}
.popular-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.popular-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
}
.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.popular-card .card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff8e1 100%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.popular-card:hover .card-img {
    background: linear-gradient(135deg, #ffe8e8 0%, #fff0c4 100%);
}
.popular-card .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(218,41,28,0.05) 0%, transparent 60%);
}

.popular-card .card-body {
    padding: 1.5rem;
}
.popular-card .card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.popular-card .card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.1rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--red);
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green-light));
    border-radius: 2px;
    z-index: 0;
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}
.step-card:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black);
    box-shadow: var(--shadow-yellow);
}
.step-card:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
    box-shadow: 0 8px 32px rgba(38,79,54,0.3);
}
.step-card:hover .step-number {
    transform: scale(1.1);
}
.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem;
    background: linear-gradient(135deg, var(--red) 0%, #c00018 50%, var(--red-dark) 100%);
    border-radius: var(--radius);
    color: white;
    overflow: hidden;
    position: relative;
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,199,44,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.promo-text {
    position: relative;
    z-index: 1;
    max-width: 500px;
}
.promo-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.promo-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}
.promo-emoji {
    font-size: 8rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: promo-float 4s ease-in-out infinite;
}
@keyframes promo-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--red);
    opacity: 0.08;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}
.testimonial-author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== APP / NUTRITION SECTION ===== */
.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.info-split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #fff5f5, #fff8e1);
    border-radius: var(--radius);
    font-size: 8rem;
    position: relative;
    overflow: hidden;
}
.info-split-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(218,41,28,0.06) 0%, transparent 50%);
}
.info-split-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.info-split-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.info-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.info-list-item .check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218,41,28,0.08);
    color: var(--red);
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* ===== APP CTA ===== */
.app-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    border-radius: var(--radius);
    color: white;
    position: relative;
    overflow: hidden;
}
.app-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green-light));
}
.app-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(218,41,28,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,199,44,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.app-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.app-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 5rem 2rem;
    text-align: center;
}
.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.newsletter-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-fast);
    background: var(--card);
}
.newsletter-form input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(218,41,28,0.1);
}
.newsletter-form button {
    padding: 0.85rem 1.75rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* ===== COUNTER / STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: var(--transition);
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-light);
}
.stat-item:hover {
    background: rgba(218,41,28,0.02);
}
.stat-item .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.stat-item .stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== MENU PAGE ===== */
.menu-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    background: var(--card);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.menu-cat-btn {
    padding: 0.55rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}
.menu-cat-btn:hover {
    background: rgba(0,0,0,0.04);
    color: var(--text);
}
.menu-cat-btn.active {
    background: var(--red);
    color: white;
    box-shadow: 0 2px 12px rgba(218,41,28,0.3);
}

.menu-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.menu-item-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.menu-item-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #fef3f3, #fef9e7);
    transition: var(--transition);
}
.menu-item-card:hover .menu-item-img {
    background: linear-gradient(135deg, #fde8e8, #fdf0c8);
}

.menu-item-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.menu-item-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.menu-item-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 0.75rem;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}
.menu-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--red);
}

.btn-add-cart {
    padding: 0.5rem 1rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}
.btn-add-cart:hover {
    background: var(--red-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(218,41,28,0.3);
}

/* ===== ORDER PAGE ===== */
.order-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.order-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
}
.order-card:hover { box-shadow: var(--shadow-sm); }

.order-card-header {
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.order-card-body {
    padding: 1.5rem;
}

.city-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.city-option {
    padding: 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.city-option:hover:not(.disabled) {
    border-color: var(--red);
    background: rgba(218,41,28,0.02);
}
.city-option.selected {
    border-color: var(--red);
    background: rgba(218,41,28,0.04);
    box-shadow: 0 0 0 4px rgba(218,41,28,0.08);
}
.city-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.city-option h4 { font-size: 1rem; margin-bottom: 0.25rem; }

.coming-soon {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    background: rgba(218,41,28,0.08);
    color: var(--red);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}
.order-summary-item.total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    border-bottom: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 2px solid var(--text);
}

/* ===== CLIENT / ORDERS PAGE ===== */
.client-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.client-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
}
.client-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--yellow);
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(255,199,44,0.2);
}
.client-avatar-emoji {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #fff8e1, #fff3e0);
    box-shadow: 0 4px 16px rgba(255,199,44,0.2);
    flex-shrink: 0;
}
.client-info h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.client-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-ticket {
    background: #fffdf5;
    border-radius: 4px;
    border: none;
    overflow: visible;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
}
/* Zigzag top edge */
.order-ticket::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #fffdf5 33.33%, transparent 33.33%) 0 0,
                linear-gradient(225deg, #fffdf5 33.33%, transparent 33.33%) 0 0;
    background-size: 12px 8px;
    background-repeat: repeat-x;
}
/* Zigzag bottom edge */
.order-ticket::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(315deg, #fffdf5 33.33%, transparent 33.33%) 0 0,
                linear-gradient(45deg, #fffdf5 33.33%, transparent 33.33%) 0 0;
    background-size: 12px 8px;
    background-repeat: repeat-x;
}
.order-ticket:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.order-ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.order-ticket-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--red);
    letter-spacing: 0.5px;
}
.order-ticket-body {
    padding: 0 1.5rem 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.status-pending { background: #FFF3E0; color: #E65100; }
.status-preparing { background: #E3F2FD; color: #1565C0; }
.status-ready { background: #E8F5E9; color: #2E7D32; }
.status-delivered { background: #F3E5F5; color: #7B1FA2; }
.status-cancelled { background: #FFEBEE; color: #C62828; }

.ticket-receipt {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Courier New', Courier, monospace;
}
.ticket-receipt .receipt-separator {
    border: none;
    border-top: 1px dashed #c0b89a;
    margin: 0.6rem 0;
}
.receipt-header {
    text-align: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed #c0b89a;
}
.receipt-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.receipt-header div {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.receipt-line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
}
.receipt-line span:first-child {
    flex: 1;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}
.receipt-line span:first-child::after {
    content: ' ............................................................';
    color: #c0b89a;
    font-size: 0.7rem;
    letter-spacing: 1px;
}
.receipt-line span:last-child {
    flex-shrink: 0;
    text-align: right;
    padding-left: 0.5rem;
    font-weight: 600;
}
.receipt-total {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0 0;
    margin-top: 0.5rem;
    border-top: 2px double #333;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}
.receipt-total span:first-child::after {
    display: none;
}
.receipt-footer {
    text-align: center;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px dashed #c0b89a;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}
.receipt-footer::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* ===== CART SIDEBAR ===== */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--red);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(218,41,28,0.35);
    transition: all 0.3s var(--ease-spring);
}
.cart-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(218,41,28,0.45);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-family: 'Poppins', sans-serif;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    z-index: 1002;
    background: var(--card);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s var(--ease);
}
.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}
.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}
.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text);
}
.cart-close:hover { background: rgba(0,0,0,0.08); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}
.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
}
.cart-empty .icon { font-size: 3rem; margin-bottom: 0.75rem; }

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fafafa;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}
.cart-item:hover { background: #f5f5f5; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.cart-item-info .price { font-size: 0.85rem; color: var(--red); font-weight: 600; }

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cart-item-qty button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text);
}
.cart-item-qty button:hover {
    border-color: var(--red);
    color: var(--red);
}
.qty-display {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-light);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.total-amount { color: var(--red); }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 4rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green-light), var(--yellow), var(--red));
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    padding: 0.3rem 0;
    transition: var(--transition-fast);
}
.footer-col a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}
.footer-brand .logo-arches {
    width: 36px;
    height: 36px;
}
.footer-brand-text strong {
    display: block;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}
.footer-brand-text span {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}
.footer-social:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218,41,28,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: white;
    z-index: 9999;
    transition: all 0.4s var(--ease-spring);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}
.toast.success { background: linear-gradient(135deg, #2E7D32, #388E3C); }
.toast.error { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.toast.show { bottom: 2rem; }

/* ===== SCROLL ANIMATIONS ===== */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s var(--ease);
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s var(--ease);
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.7s var(--ease);
}
.fade-in.visible {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s var(--ease-spring);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }

/* ===== ADMIN STYLES ===== */
.admin-grid {
    display: grid;
    gap: 1.25rem;
}
.admin-order {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.admin-order:hover { box-shadow: var(--shadow-sm); }

.admin-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-select {
    padding: 0.45rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
    background: white;
}
.admin-select:focus { border-color: var(--red); }

/* ===== ADMIN TABS ===== */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0;
}
.admin-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition-fast);
}
.admin-tab:hover {
    color: var(--text);
    background: rgba(218,41,28,0.04);
}
.admin-tab.active {
    color: var(--red);
    border-bottom-color: var(--red);
}
.admin-tab svg {
    opacity: 0.6;
}
.admin-tab.active svg {
    opacity: 1;
}
.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.admin-tab.active .tab-badge {
    background: rgba(218,41,28,0.1);
    color: var(--red);
}

.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
}

.role-select {
    min-width: 120px;
}

/* ===== STORE STATUS BAR ===== */
.store-status-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.store-status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    flex: 1;
    min-width: 240px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-xs);
}
.store-status-card.open {
    border-color: #C8E6C9;
    background: linear-gradient(135deg, #ffffff, #f1f8e9);
}
.store-status-card.closed {
    border-color: #FFCDD2;
    background: linear-gradient(135deg, #ffffff, #fce4ec);
}
.store-status-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.store-status-info strong {
    display: block;
    font-size: 0.9rem;
}
.store-status-info small {
    font-size: 0.78rem;
    font-weight: 600;
}
.store-status-card.open .store-status-info small { color: #2E7D32; }
.store-status-card.closed .store-status-info small { color: #C62828; }

.store-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.store-status-dot.open {
    background: #4CAF50;
    box-shadow: 0 0 8px rgba(76,175,80,0.5);
    animation: pulse-green 2s infinite;
}
.store-status-dot.closed {
    background: #EF5350;
    box-shadow: 0 0 8px rgba(239,83,80,0.3);
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 4px rgba(76,175,80,0.4); }
    50% { box-shadow: 0 0 12px rgba(76,175,80,0.7); }
}

/* ===== TOGGLE SWITCH ===== */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.toggle-switch.mini {
    width: 36px;
    height: 20px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 24px;
    transition: var(--transition-fast);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-fast);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch.mini .toggle-slider::before {
    height: 14px;
    width: 14px;
}
.toggle-switch input:checked + .toggle-slider {
    background: #4CAF50;
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}
.toggle-switch.mini input:checked + .toggle-slider::before {
    transform: translateX(16px);
}

/* ===== PRODUCT FORM ===== */
.product-form-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}
.admin-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-fast);
    background: white;
}
.admin-input:focus {
    border-color: var(--red);
}
.admin-input.inline-edit {
    padding: 0.3rem 0.5rem;
    font-size: 0.82rem;
    text-align: center;
}
.cat-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .info-split { grid-template-columns: 1fr; gap: 2rem; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-inner { padding: 0 1.25rem; }

    .mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .navbar-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--card);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 0.15rem;
        transition: right 0.4s var(--ease);
        box-shadow: var(--shadow-xl);
        z-index: 1001;
        align-items: stretch;
        left: auto;
        transform: none;
    }
    .navbar-center.open { right: 0; }
    .nav-link { padding: 0.85rem 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
    .nav-link.active::after { bottom: 8px; }
    .nav-user span { display: none; }

    .hero { min-height: 90vh; padding: 5rem 1.25rem 3rem; }
    .hero h1 { font-size: 2.25rem; }
    .arches-big { width: 100px; height: 100px; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-stat .number { font-size: 1.5rem; }

    .section { padding: 3.5rem 1.25rem; }
    .section-full { padding: 3.5rem 1.25rem; }
    .section-title h2 { font-size: 2rem; }
    .section-title p { font-size: 0.95rem; }

    .features-grid { grid-template-columns: 1fr; }
    .popular-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }

    .promo-banner { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
    .promo-text h2 { font-size: 1.75rem; }
    .promo-emoji { font-size: 5rem; }

    .info-split-visual { min-height: 260px; font-size: 5rem; }
    .info-split-text h2 { font-size: 1.75rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }

    .client-header { flex-direction: column; text-align: center; }
    .client-header > div:last-child { margin-left: 0; }

    .city-selector { grid-template-columns: 1fr; }

    .app-cta { padding: 3rem 1.5rem; }
    .app-cta h2 { font-size: 1.75rem; }

    .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .arches-big { width: 80px; height: 80px; }
    .popular-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stat-item .stat-number { font-size: 2rem; }
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== LOGIN PAGE ===== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
    padding: 2rem;
}

.login-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.5s var(--ease);
}

.login-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

.login-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.login-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-steam-login {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #171a21, #1b2838);
    color: white;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}
.btn-steam-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #1b2838, #2a475e);
}
.btn-steam-login svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.quick-login-form {
    text-align: left;
}
.quick-login-row {
    display: flex;
    gap: 0.5rem;
}
.quick-login-input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-fast);
    background: var(--bg);
}
.quick-login-input:focus {
    border-color: var(--red);
    background: white;
}
.quick-login-input::placeholder {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.setup-form .form-group {
    margin-bottom: 0;
}
.setup-form .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}
.setup-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 480px) {
    .setup-fields { grid-template-columns: 1fr; }
}

/* ===== ADMIN PAGE ===== */
.admin-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.stat-card .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}
.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}
.admin-table thead {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
}
.admin-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-light);
}
.admin-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.admin-table tbody tr {
    transition: var(--transition-fast);
}
.admin-table tbody tr:hover {
    background: rgba(218,41,28,0.02);
}
.admin-table select {
    padding: 0.45rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
    background: white;
}
.admin-table select:focus {
    border-color: var(--red);
}
