/* ========================================
   CSS pour le branding des produits
   Respecte la charte graphique d'origine
   ======================================== */

/* Style pour le nom du produit dans le header */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dore);
    padding: 6px 14px;
    background: rgba(215, 174, 84, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-name:hover {
    background: rgba(215, 174, 84, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .product-name {
        font-size: 14px;
        padding: 4px 10px;
    }
}
