.wc-wacp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    color: #fff !important;
    text-decoration: none !important;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
}

.wc-wacp-btn:hover {
    opacity: 0.9;
    color: #fff !important;
}

.wc-wacp-btn:active {
    transform: scale(0.98);
}

.wc-wacp-btn svg {
    flex-shrink: 0;
}

.wc-wacp-btn-product {
    margin-left: 10px;
    width: auto;
}

.wc-wacp-btn-cart {
    margin-top: 15px;
}

.wc-wacp-btn-checkout {
    margin-top: 20px;
}

.wc-wacp-btn:disabled,
.wc-wacp-btn.wc-wacp-processing {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-wacp-btn-product {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }
}