/**
 * B.EASE WooCommerce Styles
 * 
 * @package BEASE_Configurator
 * @since 1.0.0
 */

/* Bouton Personnaliser sur fiche produit */
.bease-customize-btn {
    display: inline-flex !important;
    align-items: center;
    margin-left: 10px !important;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%) !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.bease-customize-btn:hover {
    background: linear-gradient(135deg, #0052CC 0%, #00B3CC 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.bease-customize-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Design dans le panier */
.woocommerce-cart-form .bease-design-preview {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    margin-right: 10px;
}

.woocommerce-cart-form .bease-design-info {
    display: flex;
    align-items: center;
}

/* Résumé commande */
.order-bease-design {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-bease-design img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Badge configurateur dans liste produits admin */
.column-bease_configurator {
    width: 40px;
    text-align: center;
}

.column-bease_configurator .dashicons-yes-alt {
    color: #0066FF;
}

/* Responsive */
@media (max-width: 768px) {
    .bease-customize-btn {
        width: 100%;
        margin: 10px 0 !important;
        justify-content: center;
    }
}
