/* TACOS CHARLES IN - MODERN-RETRO DESIGN SYSTEM (BOOTSTRAP 4 BASED) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --cherry-red: #C41E3A;
    --off-white: #F9F9F2;
    --navy-blue: #1B2E4B;
    --navy-light: #2A4268;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --shadow: 0 4px 15px rgba(27, 46, 75, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: var(--navy-blue);
    min-height: 100vh;
}

/* Mobile-First Container */
.app-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--off-white);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 80px; /* Space for bottom nav */
}

/* Components */
.bg-cherry { background-color: var(--cherry-red); color: white; }
.bg-navy { background-color: var(--navy-blue); color: white; }
.text-cherry { color: var(--cherry-red); }
.text-navy { color: var(--navy-blue); }

.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    background: white;
}

.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--cherry-red);
    border-color: var(--cherry-red);
}

.btn-primary:hover {
    background-color: #a0182f;
    border-color: #a0182f;
}

.btn-navy {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: white;
}

/* Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-link-custom {
    color: #a0aec0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none !important;
}

.nav-link-custom.active {
    color: var(--cherry-red);
}

.nav-link-custom i {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 2px;
}

/* Kitchen Styles */
.order-card {
    border-left: 8px solid #ddd;
}
.order-new { border-left-color: var(--success-green); }
.order-warning { border-left-color: var(--warning-yellow); animation: pulse 2s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Utilities */
.rounded-xl { border-radius: 16px !important; }
.points-pill {
    background: var(--navy-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 800;
    font-size: 1.5rem;
}

/* Logo Fix */
.logo-img {
    height: auto;
}

.small {
    color: #000;
}
