/* --- New Product Card Buttons --- */
.product-actions-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.btn-card-add {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #facc15 0%, #ca8a04 100%);
    color: #1a1a1a;
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.2);
    text-decoration: none;
}

.btn-card-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 179, 8, 0.3);
    background: linear-gradient(135deg, #fde047 0%, #eab308 100%);
}

.btn-card-add:active {
    transform: translateY(0);
}

/* Success state for Add Button */
.btn-card-add.is-added {
    background: #22c55e !important;
    color: #fff !important;
    pointer-events: none;
}

.btn-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-card-wa:hover {
    background: #25D366;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-card-wa svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}