/* H&H Spa Quote — customer lead form (black & yellow brand theme) */
.hhsq-wrap.hhsq-customer {
	--hhsq-yellow: #FEDD00;
	--hhsq-yellow-dk: #e6c700;
	--hhsq-black: #111111;
	--hhsq-ink: #1b1b1b;
	--hhsq-line: #e5e5e5;
	--hhsq-muted: #777;
	max-width: 920px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--hhsq-ink);
	-webkit-font-smoothing: antialiased;
}
.hhsq-hidden { display: none !important; }

/* Compare-models launcher */
.hhsq-compare-bar { display: flex; justify-content: flex-end; margin-bottom: 22px; }

/* Steps */
.hhsq-step { margin-bottom: 34px; }
.hhsq-step-head {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin: 0 0 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--hhsq-black);
}
.hhsq-step-head::after {
	content: "";
	flex: 1;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--hhsq-yellow), rgba(254,221,0,0));
}
.hhsq-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--hhsq-yellow);
	color: var(--hhsq-black);
	font-size: 16px;
	font-weight: 800;
	flex: none;
	box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

/* Card base */
.hhsq-brand-card,
.hhsq-model-card,
.hhsq-swatch {
	position: relative;
	border: 2px solid var(--hhsq-line);
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.hhsq-brand-card:hover,
.hhsq-model-card:hover,
.hhsq-swatch:hover {
	border-color: #cfcfcf;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.hhsq-brand-card.selected,
.hhsq-model-card.selected,
.hhsq-swatch.selected {
	border-color: var(--hhsq-black);
	box-shadow: 0 0 0 4px rgba(254,221,0,.55);
	transform: translateY(-2px);
}
/* Selected check badge */
.hhsq-model-card.selected::after,
.hhsq-swatch.selected::after {
	content: "\2713";
	position: absolute;
	top: 8px;
	right: 8px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--hhsq-black);
	color: var(--hhsq-yellow);
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

/* Brand */
.hhsq-brand-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hhsq-brand-card {
	padding: 30px 16px;
	font-size: 19px;
	font-weight: 700;
	color: var(--hhsq-ink);
	text-align: center;
}
.hhsq-brand-card.selected { color: var(--hhsq-black); }

/* Models */
.hhsq-model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hhsq-model-card { display: flex; flex-direction: column; overflow: hidden; text-align: center; }
.hhsq-model-img {
	display: block;
	width: 100%;
	height: 150px;
	background-size: cover;
	background-position: center;
	background-color: #f3f3f3;
}
.hhsq-model-img--blank { background: linear-gradient(135deg, #f5f5f5, #e9e9e9); }
.hhsq-model-name { padding: 14px 10px; font-weight: 700; font-size: 15px; color: var(--hhsq-black); }

/* Fields */
.hhsq-field { margin-bottom: 22px; }
.hhsq-field > label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--hhsq-black);
}
.hhsq-field input[type="text"],
.hhsq-field input[type="email"],
.hhsq-field input[type="tel"],
.hhsq-field select,
.hhsq-field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid #d2d2d2;
	border-radius: 10px;
	font-size: 15px;
	box-sizing: border-box;
	background: #fff;
	color: var(--hhsq-ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.hhsq-field input:focus,
.hhsq-field select:focus,
.hhsq-field textarea:focus {
	outline: none;
	border-color: var(--hhsq-black);
	box-shadow: 0 0 0 4px rgba(254,221,0,.35);
}
.hhsq-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hhsq-req { color: #c41230; }

.hhsq-radio-row { display: flex; flex-wrap: wrap; gap: 18px; }
.hhsq-radio { font-weight: 600 !important; display: inline-flex; align-items: center; gap: 7px; cursor: pointer; color: var(--hhsq-ink); }
.hhsq-radio input { accent-color: var(--hhsq-black); width: 17px; height: 17px; }

/* Swatch / shell color / add-on cards */
.hhsq-swatch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hhsq-addon-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 210px)); }
.hhsq-swatch { display: flex; flex-direction: column; overflow: hidden; text-align: center; padding: 0; }
.hhsq-swatch-img { display: block; width: 100%; height: 90px; background-size: cover; background-position: center; background-color: #f3f3f3; }
.hhsq-swatch-img--blank { background: linear-gradient(135deg, #f5f5f5, #e9e9e9); }
.hhsq-swatch-label { padding: 10px 8px; font-size: 12.5px; font-weight: 600; line-height: 1.3; color: var(--hhsq-black); }

/* Chemkit includes */
.hhsq-kit { margin-top: 10px; background: #fafafa; border: 1px solid var(--hhsq-line); border-left: 4px solid var(--hhsq-yellow); border-radius: 10px; padding: 12px 16px; }
.hhsq-kit-title { font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--hhsq-black); margin-bottom: 6px; }
.hhsq-kit ul { margin: 0; padding-left: 18px; font-size: 13px; color: #555; }
.hhsq-kit li { margin: 2px 0; }

/* Submit */
.hhsq-submit {
	background: var(--hhsq-yellow);
	color: var(--hhsq-black);
	border: 2px solid var(--hhsq-black);
	border-radius: 12px;
	padding: 15px 34px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, transform .1s ease;
	box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.hhsq-submit:hover { background: var(--hhsq-black); color: var(--hhsq-yellow); }
.hhsq-submit:active { transform: translateY(1px); }
.hhsq-submit:disabled { opacity: .55; cursor: default; }

.hhsq-err { color: #c41230; font-size: 13px; display: block; margin-top: 5px; font-weight: 600; }
.hhsq-input-error { border-color: #c41230 !important; }
.hhsq-form-error { color: #c41230; font-weight: 700; margin-top: 14px; }

/* Success */
.hhsq-success { text-align: center; padding: 50px 20px; }
.hhsq-success-icon {
	width: 72px; height: 72px; line-height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--hhsq-black);
	color: var(--hhsq-yellow);
	font-size: 38px;
	box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.hhsq-success h3 { margin: 0 0 10px; font-size: 24px; color: var(--hhsq-black); }

.hhsq-login-required {
	max-width: 520px; margin: 0 auto; padding: 26px;
	border: 1px solid var(--hhsq-line); border-top: 4px solid var(--hhsq-yellow);
	border-radius: 12px; background: #fafafa; text-align: center;
}
.hhsq-login-required a { color: var(--hhsq-black); font-weight: 700; }

/* Zoom magnifier + full-image lightbox */
.hhsq-zoom {
	position: absolute; top: 8px; left: 8px;
	width: 30px; height: 30px; border-radius: 50%;
	background: rgba(17,17,17,.72); color: #fff;
	display: flex; align-items: center; justify-content: center;
	cursor: zoom-in; z-index: 3; transition: background .15s ease, transform .1s ease;
}
.hhsq-zoom:hover { background: var(--hhsq-yellow); color: #111; transform: scale(1.08); }
.hhsq-lightbox {
	position: fixed; inset: 0; background: rgba(0,0,0,.85);
	display: none; align-items: center; justify-content: center; z-index: 100000; padding: 24px;
}
.hhsq-lightbox.open { display: flex; }
.hhsq-lightbox-inner { position: relative; max-width: 92vw; max-height: 90vh; }
.hhsq-lightbox-inner img { display: block; max-width: 92vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 12px 44px rgba(0,0,0,.55); background: #fff; }
.hhsq-lightbox-close {
	position: absolute; top: -16px; right: -16px; width: 40px; height: 40px; border-radius: 50%;
	border: 2px solid #fff; background: var(--hhsq-black); color: #fff; font-size: 24px; line-height: 1; cursor: pointer;
}
.hhsq-lightbox-close:hover { background: var(--hhsq-yellow); color: #111; }

@media (max-width: 680px) {
	.hhsq-brand-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
	.hhsq-model-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.hhsq-row-2 { grid-template-columns: 1fr; }
	.hhsq-swatch-grid { grid-template-columns: repeat(2, 1fr); }
	.hhsq-step-head { font-size: 18px; }
}
