/* Styles généraux */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #c0392b;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar personnalisée */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Cards et produits */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Boutons */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #c4a32a;
    border-color: #c4a32a;
    color: var(--secondary-color);
}

/* Sections */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-top: auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Interface caisse */
.product-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:active {
    transform: scale(0.98);
}

.cart-item {
    transition: all 0.3s ease;
}

/* Impression ticket */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        background: white;
        padding: 0;
        margin: 0;
    }
}