/* Product Redirect Buttons v3 Styles */
.prb-section { margin: 15px 0; }
.prb-title { font-size: 16px; margin-bottom: 8px; font-weight: 600; }
.prb-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.prb-btn {
    padding: 9px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    background: #fff;
    transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease;
    font-weight: 600;
    line-height: 1;
}
.prb-btn:hover { transform: translateY(-2px); }
.prb-btn.active { background: #d32f2f; color: #fff; border-color: #d32f2f; }
.prb-transitioning { pointer-events: none; opacity: 0.4; transition: opacity .25s ease; }

/* Ensure product container fades nicely */
.product { transition: opacity .25s ease; }
