/* HNL Product Picker — functional styling only (final styling is out of scope for this slice). */

.hnl-pp-hidden { display: none !important; }

#hnl-pp-root { position: fixed; inset: 0; z-index: 99999; }

.hnl-pp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }

.hnl-pp-panel {
	position: absolute; top: 0; left: 0; height: 100%;
	width: min(680px, 100%); background: #fff;
	box-shadow: 2px 0 24px rgba(0,0,0,.2);
	padding: 28px 24px; overflow: auto;
	animation: hnl-pp-slide .25s ease-out;
}
@keyframes hnl-pp-slide { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.hnl-pp-close { position: absolute; top: 10px; right: 14px; font-size: 30px; line-height: 1; background: none; border: 0; cursor: pointer; }
.hnl-pp-back { background: none; border: 0; font-size: 22px; cursor: pointer; margin-bottom: 8px; }

.hnl-pp-qty-row { display: flex; gap: 12px; margin: 16px 0; }
.hnl-pp-qty { flex: 1; padding: 18px; border: 2px solid #ddd; border-radius: 10px; font-size: 20px; cursor: pointer; background: #fff; }
.hnl-pp-qty.is-active { border-color: #2f7d5b; background: #eef6f1; }

.hnl-pp-next, .hnl-pp-submit {
	display: block; width: 100%; padding: 16px; margin-top: 18px;
	border: 0; border-radius: 10px; background: #2f7d5b; color: #fff; font-size: 16px; cursor: pointer;
}
.hnl-pp-next[disabled], .hnl-pp-submit[disabled] { opacity: .5; cursor: not-allowed; }

.hnl-pp-msg { margin: 10px 0; font-weight: 600; }
.hnl-pp-msg.is-error { color: #b00020; }

.hnl-pp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 8px; }
.hnl-pp-card { border: 1px solid #e5e5e5; border-radius: 10px; padding: 12px; text-align: center; }
.hnl-pp-card img, .hnl-pp-noimg { width: 100%; height: 90px; object-fit: contain; background: #f5f5f5; border-radius: 6px; display: block; }
.hnl-pp-name { font-weight: 600; margin: 8px 0 2px; }
.hnl-pp-price { font-size: 13px; color: #555; margin-bottom: 8px; }

.hnl-pp-add { padding: 8px 14px; border: 0; border-radius: 8px; background: #2f7d5b; color: #fff; cursor: pointer; }
.hnl-pp-oos { font-size: 13px; color: #999; }
.hnl-pp-stepper { display: flex; align-items: center; justify-content: center; gap: 12px; }
.hnl-pp-stepper button { width: 32px; height: 32px; border: 1px solid #2f7d5b; background: #fff; border-radius: 6px; cursor: pointer; font-size: 18px; }

.hnl-pp-try-it-now { margin-top: 10px; }

@media (max-width: 600px) {
	.hnl-pp-panel { width: 100%; padding: 24px 16px; }
	.hnl-pp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* G3 — plan selection (functional only; final styling deferred) */
.hnl-pp-plan { margin: 16px 0; }
.hnl-pp-toggle { display: flex; gap: 8px; }
.hnl-pp-pt { flex: 1; padding: 12px; border: 2px solid #ddd; border-radius: 10px; background: #fff; cursor: pointer; font-size: 15px; }
.hnl-pp-pt.is-active { border-color: #2f7d5b; background: #eef6f1; }
.hnl-pp-intervals { margin-top: 12px; }
.hnl-pp-int-label { font-size: 13px; color: #555; margin-bottom: 6px; }
.hnl-pp-int { display: inline-block; margin: 0 6px 6px 0; padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; background: #fff; cursor: pointer; }
.hnl-pp-int.is-active { border-color: #2f7d5b; background: #eef6f1; }
