.nova-articles-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.nova-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Carte produit */
.nova-article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nova-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image */
.nova-article-image-wrapper {
    width: 100%;
    padding-top: 75%; /* ratio 4:3 */
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.nova-article-image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Contenu */
.nova-article-content {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nova-article-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.3;
}

.nova-article-declinaison {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.nova-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 14px;
}

.nova-article-price {
    font-weight: 700;
    color: #e53935;
}

.nova-article-qty {
   display: none
}

/* Bouton "Charger plus" */
.nova-articles-load-more-wrapper {
    text-align: center;
    margin-top: 24px;
}

.nova-articles-load-more {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.nova-articles-load-more:hover {
    background: #1f2933;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.nova-articles-load-more:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    box-shadow: none;
    cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
    .nova-articles-wrapper {
        padding: 16px 10px;
    }

    .nova-article-title {
        font-size: 14px;
    }
}
