.highlight-btns {
    margin-bottom: 24px;
    text-align: center;
}
.highlight-btn {
    display: inline-block;
    margin: 0 8px;
    padding: 8px 12px;
    font-family: 'The Season Bold', sans-serif;
    background: transparent;
    border: 1px solid #1d1d1b;
    color: #1d1d1b;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.highlight-btn:hover,
.highlight-btn[style*="font-weight:bold"] {
    background: #c3b1a2;
    border: 1px solid #c3b1a2;
    color: #1d1d1b;
    text-decoration: none;
}

.highlight-btn,
.highlight-btn:active,
.highlight-btn:focus,
.highlight-btn:hover {
    text-decoration: none !important;
}

.highlight-products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.highlight-product {
    width: calc(50% - 8px);
    height: auto;
    background: #f1ebe5;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 0;
}

.highlight-product-image img {
    width: auto;
    height: auto;
    margin-bottom: 12px;
}
.highlight-product-title h3 {
    font-size: 1em;
    margin: 8px 0;
    color: #1d1d1b;
}
.highlight-product-price .price {
    display: block;
    margin-top: 6px;
    font-weight: bold;
    color: #c3b1a2;
}
.highlight-add-to-cart {
    margin-top: 12px;
}
.highlight-add-to-cart .button {
    background: #c3b1a2;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 8px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.highlight-add-to-cart .button:hover {
    background: #1d1d1b;
    color: #fff;
}

/* Tablette : 4 colonnes */
@media (min-width: 600px) {
    .highlight-product {
    width: calc(25% - 16px);
}
}

/* Desktop : 4 colonnes */
@media (min-width: 1024px) {
    .highlight-products {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}