/* Personnalisation de la Carte Produit Microtiq */
.product-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,86,179,0.15);
}

.product-img-container {
    padding: 20px;
    background: #fdfdfd;
    text-align: center;
}

.product-img-container img {
    max-height: 180px;
    object-fit: contain;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.product-ref {
    font-size: 0.8rem;
    color: #999;
}

.price-wrapper {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
}

.price-ht {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-ttc {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Bouton Bootstrap personnalisé */
.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}