:root {
    --smoke-dark: #1a1a2e;
    --smoke-gold: #e8a045;
}

body {
    background-color: #f8f5f0;
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d4a22 100%);
    color: white;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.product-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.product-card .card-img-placeholder {
    background: linear-gradient(135deg, #2d4a22, #4a7c59);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .prix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--smoke-gold);
}

.btn-add-cart {
    background-color: var(--smoke-gold);
    border-color: var(--smoke-gold);
    color: #fff;
    font-weight: 600;
}

.btn-add-cart:hover {
    background-color: #c8882a;
    border-color: #c8882a;
    color: #fff;
}

.panier-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: .75rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.order-summary {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    position: sticky;
    top: 80px;
}

.confirmation-box {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
    text-align: center;
}

.confirmation-box .check-circle {
    width: 80px;
    height: 80px;
    background: #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.badge-stock-low {
    background-color: #ffc107;
    color: #000;
}

.toast-container {
    z-index: 9999;
}
