/* WooCommerce WhatsApp Share Button Styles */

.wcws-share-container {
    margin: 20px 0;
    display: inline-block;
}

.wcws-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.wcws-share-button:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.wcws-share-button:active {
    transform: translateY(0);
}

.wcws-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .wcws-share-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Integración con WooCommerce */
.woocommerce-product-details .wcws-share-container {
    margin-top: 15px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .wcws-share-button {
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    }
    
    .wcws-share-button:hover {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    }
}
