:root {
    --primary-color: #e74c3c;
    --secondary-color: #c0392b;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.pizza-navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.product-card {
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.category-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.badge-attribute {
    background-color: var(--warning-color);
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    margin: 2px;
    border-radius: 12px;
}

.order-card {
    border-left: 4px solid var(--primary-color);
}

.order-card.new-order {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        border-left-color: var(--primary-color);
    }
    50% {
        border-left-color: var(--warning-color);
    }
}

.kitchen-display {
    background-color: var(--dark-color);
    color: white;
    min-height: 100vh;
    padding: 20px;
}

.kitchen-order {
    background-color: white;
    color: var(--dark-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.table-badge {
    font-size: 2rem;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.cart-item {
    border-bottom: 1px solid #dee2e6;
    padding: 10px 0;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-card {
    max-width: 400px;
    width: 100%;
}

.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.stats-card h3 {
    margin: 0;
    font-size: 2.5rem;
}

.qr-code-container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin: 10px;
}

.customer-menu {
    background-color: #fff;
}

.fixed-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 1000;
}

@media print {
    .no-print {
        display: none;
    }
}

.loyalty-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.points-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px auto;
}
