/**
 * Pruébalo YA Button Styles
 */

.amworks-vpt-button-wrapper {
    margin: 15px 0;
}

.amworks-vpt-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.amworks-vpt-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.amworks-vpt-trigger:active {
    transform: translateY(0);
}

.amworks-vpt-trigger svg {
    flex-shrink: 0;
}

/* Alternative minimal style */
.amworks-vpt-trigger.minimal {
    background: white;
    color: #667eea !important;
    border: 2px solid #667eea;
    box-shadow: none;
}

.amworks-vpt-trigger.minimal:hover {
    background: #667eea;
    color: white !important;
    border-color: #667eea;
}

/* ===========================================
   Archive/Shop Page Button (Full Width Centered)
   =========================================== */
.amworks-vpt-archive-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    margin-top: 10px;
    margin-left: 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    min-height: 40px;
}

.amworks-vpt-archive-btn .amworks-vpt-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.amworks-vpt-archive-btn span {
    white-space: nowrap;
}

/* WooCommerce specific overrides */
.woocommerce ul.products li.product .amworks-vpt-archive-btn {
    margin-top: 10px;
    width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    .amworks-vpt-trigger:not(.amworks-vpt-archive-btn) {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}
