/* ══ QTY CONTROL ══ */
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--warm2); border-radius: var(--r-sm); overflow: hidden; background: var(--bg); }
.qty-control:focus-within { border-color: var(--brand); background: var(--white); }
.qty-btn { width: 38px; flex-shrink: 0; border: none; background: transparent; color: var(--brand); font-size: 1.2rem; font-weight: 700; cursor: pointer; height: 42px; display: flex; align-items: center; justify-content: center; transition: background .15s; -webkit-tap-highlight-color: transparent; }
.qty-btn:hover { background: var(--brand-l); }
.qty-control input[type=number] { flex: 1; border: none; background: transparent; text-align: center; font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; color: var(--text); padding: 10px 4px; outline: none; min-width: 0; -webkit-appearance: none; }
.qty-control input[type=number]::-webkit-inner-spin-button, .qty-control input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }
