/* GLOBAL GOOGLE STYLE */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Gris très clair Google */
    color: #202124; /* Gris foncé (jamais noir pur) */
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #202124;
    letter-spacing: -0.5px;
}

/* CARDS PRODUIT (Material Design) */
.product-card {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px; /* Arrondi moderne */
    transition: all 0.2s ease-in-out;
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); /* Ombre douce au survol */
    border-color: #e0e0e0;
}

.card-img-wrapper {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.card-img-top {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* TYPOGRAPHIE PRODUIT */
.brand-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5f6368; /* Gris moyen Google */
    font-weight: 600;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #202124;
}

.product-sku {
    font-size: 0.8rem;
    color: #9aa0a6;
    font-family: monospace;
}

/* PRIX & BOUTONS */
.price-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a73e8; /* Bleu Google */
}

.btn-google {
    background-color: #1a73e8;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    transition: background 0.2s;
}

.btn-google:hover {
    background-color: #1557b0;
    color: white;
}

/* STATUS BADGES */
.badge-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}
.bg-stock { background-color: #1e8e3e; } /* Vert Google */
.bg-drop { background-color: #e37400; }  /* Orange Google */
.bg-out { background-color: #d93025; }   /* Rouge Google */

/* INPUT QUANTITÉ ÉPURÉ */
.input-minimal {
    border: 1px solid #dadce0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}
