.wcps-categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    /* La marge supérieure est réduite dynamiquement via les styles inline */
}

.wcps-category-button {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    word-wrap: break-word;
    padding: 5px 10px;
}

.wcps-category-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.wcps-category-button span {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .wcps-category-button {
        width: calc(50% - 5px) !important;
    }
}

@media (max-width: 480px) {
    .wcps-category-button {
        width: 100% !important;
    }
}

/* Bouton Retour à la boutique */
.wcps-back-to-shop-container {
    margin-bottom: 20px;
    margin-top: 10px;
}

.wcps-back-to-shop-bottom {
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
}

.wcps-back-to-shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* Les couleurs sont définies dynamiquement via les styles inline */
}

.wcps-back-to-shop-button .wcps-back-arrow {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
}

.wcps-back-to-shop-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    /* Les couleurs au survol sont définies dynamiquement via les styles inline */
}

.wcps-back-to-shop-button:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .wcps-back-to-shop-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .wcps-back-to-shop-button .wcps-back-arrow {
        width: 14px;
        height: 14px;
    }
}

