/* ===== PRODUCT VIEW ACTION BUTTONS COMPONENT ===== */
/* Base styles come from .btn, .btn-outline, .btn-dark in variables.css */

.pv-btn-wish:hover { border-color: var(--error-100); color: var(--error-100); }

/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 600px) {
    .pv-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .pv-btn-wish {
        justify-content: center;
    }
    .pv-btn-cart,
    .pv-btn-buy {
        justify-content: center;
    }
}
