.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); display: grid; place-items: center; padding: 16px; z-index: 1000; }
.popup-card { width: min(100%, 460px); background: white; border-radius: 24px; padding: 18px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.popup-close { position: absolute; right: 12px; top: 12px; background: transparent; border: none; font-size: 1.2rem; }
.popup-body { display: grid; gap: 12px; }
.option-group { display: grid; gap: 8px; }
.option-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f2d0d0; }
.counter-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.counter-row button { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--accent); color: white; font-size: 1.3rem; }
.quantity-value { min-width: 36px; text-align: center; font-size: 1.25rem; font-weight: 700; }
.choice-btn { padding: 8px 10px; border: 1px solid var(--border); border-radius: 999px; background: #fff; }
.choice-btn.active { background: var(--accent); color: white; }
