:root {
	--hhbc-ink: #151914;
	--hhbc-green: #183e2a;
	--hhbc-green-dark: #0d291a;
	--hhbc-gold: #c99a36;
	--hhbc-cream: #f6f2e8;
	--hhbc-paper: #fffefb;
	--hhbc-line: #dcd8cb;
	--hhbc-muted: #686d66;
	--hhbc-danger: #982f2f;
	--hhbc-success: #1c6841;
	--hhbc-radius: 14px;
	--hhbc-shadow: 0 18px 44px rgba(21, 25, 20, 0.09);
}

.hhbc-corner,
.hhbc-dashboard,
.hhbc-login-card,
.hhbc-single {
	box-sizing: border-box;
	color: var(--hhbc-ink);
	font-size: 16px;
	line-height: 1.65;
}

.hhbc-corner *,
.hhbc-dashboard *,
.hhbc-login-card *,
.hhbc-single * {
	box-sizing: border-box;
}

.hhbc-corner,
.hhbc-dashboard {
	width: min(1180px, calc(100% - 32px));
	margin: 42px auto 72px;
}

.hhbc-eyebrow {
	margin: 0 0 7px;
	color: var(--hhbc-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hhbc-corner h1,
.hhbc-dashboard h1,
.hhbc-login-card h1,
.hhbc-review h1,
.hhbc-corner h2,
.hhbc-dashboard h2,
.hhbc-review h2,
.hhbc-review h3 {
	color: var(--hhbc-ink);
	font-family: inherit;
	font-weight: 750;
	letter-spacing: -0.025em;
	text-transform: none;
}

.hhbc-corner__header,
.hhbc-dashboard__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 28px;
	padding: clamp(26px, 5vw, 54px);
	border-radius: calc(var(--hhbc-radius) + 6px);
	background:
		radial-gradient(circle at 92% 18%, rgba(201, 154, 54, 0.2), transparent 24%),
		linear-gradient(135deg, var(--hhbc-green-dark), var(--hhbc-green));
	box-shadow: var(--hhbc-shadow);
	color: #fff;
}

.hhbc-corner__header > div,
.hhbc-dashboard__header > div:first-child {
	max-width: 720px;
}

.hhbc-corner__header h1,
.hhbc-dashboard__header h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(2.2rem, 6vw, 4.6rem);
	line-height: 0.98;
}

.hhbc-dashboard__header h1 {
	font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.hhbc-corner__intro,
.hhbc-dashboard__header p:last-child {
	max-width: 660px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.06rem;
}

.hhbc-button,
.hhbc-corner .hhbc-button,
.hhbc-dashboard .hhbc-button,
.hhbc-single .hhbc-button,
.hhbc-login-card input[type="submit"] {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 11px 19px;
	border: 2px solid var(--hhbc-green);
	border-radius: 999px;
	background: var(--hhbc-green);
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 0.94rem;
	font-weight: 750;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hhbc-button:hover,
.hhbc-login-card input[type="submit"]:hover {
	border-color: var(--hhbc-green-dark);
	background: var(--hhbc-green-dark);
	color: #fff;
	transform: translateY(-1px);
}

.hhbc-button--light,
.hhbc-corner .hhbc-button--light {
	flex: 0 0 auto;
	border-color: #fff;
	background: #fff;
	color: var(--hhbc-green-dark);
}

.hhbc-button--light:hover,
.hhbc-corner .hhbc-button--light:hover {
	border-color: var(--hhbc-gold);
	background: var(--hhbc-gold);
	color: var(--hhbc-green-dark);
}

.hhbc-button--secondary,
.hhbc-dashboard .hhbc-button--secondary {
	border-color: var(--hhbc-line);
	background: transparent;
	color: var(--hhbc-ink);
}

.hhbc-dashboard__header .hhbc-button--secondary {
	border-color: rgba(255, 255, 255, 0.66);
	color: #fff;
}

.hhbc-button--secondary:hover,
.hhbc-dashboard .hhbc-button--secondary:hover {
	border-color: var(--hhbc-green);
	background: var(--hhbc-cream);
	color: var(--hhbc-green-dark);
}

.hhbc-button:focus-visible,
.hhbc-text-link:focus-visible,
.hhbc-card a:focus-visible,
.hhbc-breadcrumb a:focus-visible,
.hhbc-review a:focus-visible,
.hhbc-dashboard a:focus-visible,
.hhbc-login-card a:focus-visible,
.hhbc-field input:focus-visible,
.hhbc-field select:focus-visible,
.hhbc-field textarea:focus-visible,
.hhbc-comment-form input:focus-visible,
.hhbc-comment-form textarea:focus-visible,
.hhbc-text-button:focus-visible {
	outline: 3px solid var(--hhbc-gold);
	outline-offset: 3px;
}

.hhbc-filters {
	display: flex;
	align-items: end;
	gap: 14px;
	margin-bottom: 30px;
	padding: 18px;
	border: 1px solid var(--hhbc-line);
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-paper);
}

.hhbc-field {
	display: flex;
	min-width: 210px;
	flex: 1 1 240px;
	flex-direction: column;
	gap: 7px;
	margin: 0;
}

.hhbc-field--grow {
	flex-grow: 1.5;
}

.hhbc-field label,
.hhbc-comment-form label,
.hhbc-login-card label {
	color: var(--hhbc-ink);
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1.35;
}

.hhbc-field input[type="text"],
.hhbc-field input[type="search"],
.hhbc-field input[type="url"],
.hhbc-field input[type="file"],
.hhbc-field select,
.hhbc-field textarea,
.hhbc-comment-form input[type="text"],
.hhbc-comment-form input[type="email"],
.hhbc-comment-form input[type="url"],
.hhbc-comment-form textarea,
.hhbc-login-card input[type="text"],
.hhbc-login-card input[type="password"] {
	box-sizing: border-box;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid #b9beb7;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	color: var(--hhbc-ink);
	font: inherit;
	font-size: 1rem;
	line-height: 1.45;
}

.hhbc-field textarea,
.hhbc-comment-form textarea {
	min-height: 110px;
	resize: vertical;
}

.hhbc-field input:focus,
.hhbc-field select:focus,
.hhbc-field textarea:focus,
.hhbc-comment-form input:focus,
.hhbc-comment-form textarea:focus,
.hhbc-login-card input:focus {
	border-color: var(--hhbc-green);
}

.hhbc-field__hint,
.hhbc-muted,
.comment-notes,
.comment-policy {
	margin: 0;
	color: var(--hhbc-muted);
	font-size: 0.86rem;
}

.hhbc-filters .hhbc-button {
	flex: 0 0 auto;
}

.hhbc-text-link,
.hhbc-card__read,
.hhbc-section-heading a,
.hhbc-review-list a,
.hhbc-breadcrumb a,
.hhbc-review__edit a,
.hhbc-login-card__help a {
	color: var(--hhbc-green);
	font-weight: 750;
	text-decoration: underline;
	text-decoration-color: rgba(24, 62, 42, 0.35);
	text-underline-offset: 3px;
}

.hhbc-text-link:hover,
.hhbc-card__read:hover,
.hhbc-section-heading a:hover,
.hhbc-review-list a:hover,
.hhbc-breadcrumb a:hover,
.hhbc-review__edit a:hover,
.hhbc-login-card__help a:hover {
	color: var(--hhbc-gold);
}

.hhbc-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hhbc-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--hhbc-line);
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-paper);
	box-shadow: 0 10px 30px rgba(21, 25, 20, 0.06);
}

.hhbc-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, var(--hhbc-green-dark), var(--hhbc-green));
}

.hhbc-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform 220ms ease;
}

.hhbc-card:hover .hhbc-card__image img {
	transform: scale(1.025);
}

.hhbc-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--hhbc-gold);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 850;
	letter-spacing: -0.08em;
}

.hhbc-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.hhbc-card__topline,
.hhbc-review__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.hhbc-pill {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--hhbc-cream);
	color: var(--hhbc-green-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
}

.hhbc-staff-pick {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 4px 10px;
	border: 1px solid #b98316;
	border-radius: 999px;
	background: var(--hhbc-gold);
	color: var(--hhbc-green-dark);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
}

.hhbc-staff-pick--card {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	box-shadow: 0 5px 14px rgba(13, 41, 26, 0.18);
}

.hhbc-review__labels {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hhbc-rating {
	color: var(--hhbc-gold);
	font-size: 1.03rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.hhbc-card__brand,
.hhbc-review__brand {
	margin: 16px 0 3px;
	color: var(--hhbc-muted);
	font-size: 0.79rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	line-height: 1.3;
	text-transform: uppercase;
}

.hhbc-card__title {
	margin: 0;
	font-size: 1.42rem;
	line-height: 1.2;
}

.hhbc-card__title a {
	color: inherit;
	text-decoration: none;
}

.hhbc-card__title a:hover {
	color: var(--hhbc-green);
}

.hhbc-card__excerpt {
	margin: 12px 0 18px;
	color: #40463f;
}

.hhbc-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--hhbc-line);
	color: var(--hhbc-muted);
	font-size: 0.78rem;
}

.hhbc-card__read {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
}

.hhbc-empty {
	padding: clamp(36px, 8vw, 80px) 24px;
	border: 1px dashed #a9afa7;
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-cream);
	text-align: center;
}

.hhbc-empty h2 {
	margin: 0 0 7px;
}

.hhbc-empty p {
	margin: 0;
	color: var(--hhbc-muted);
}

.hhbc-pagination {
	margin: 30px 0;
}

.hhbc-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hhbc-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	color: var(--hhbc-green);
	font-weight: 750;
	text-decoration: none;
}

.hhbc-pagination .current {
	background: var(--hhbc-green);
	color: #fff;
}

.hhbc-disclaimer {
	margin-top: 30px;
	padding: 13px 16px;
	border-left: 4px solid var(--hhbc-gold);
	background: var(--hhbc-cream);
	color: #4d514c;
	font-size: 0.84rem;
}

/* Team dashboard */
.hhbc-dashboard__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
}

.hhbc-dashboard__header .hhbc-text-link {
	color: #fff;
	text-decoration-color: rgba(255, 255, 255, 0.45);
}

.hhbc-dashboard__layout {
	display: grid;
	grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.8fr);
	gap: 24px;
	align-items: start;
}

.hhbc-my-reviews,
.hhbc-editor,
.hhbc-login-card {
	border: 1px solid var(--hhbc-line);
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-paper);
	box-shadow: 0 10px 30px rgba(21, 25, 20, 0.05);
}

.hhbc-my-reviews {
	position: sticky;
	top: 24px;
	padding: 20px;
}

.hhbc-editor {
	padding: clamp(20px, 4vw, 34px);
}

.hhbc-section-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.hhbc-section-heading h2 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.2;
}

.hhbc-review-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hhbc-review-list li {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 15px 0;
	border-top: 1px solid var(--hhbc-line);
}

.hhbc-review-list li:first-child {
	padding-top: 0;
	border-top: 0;
}

.hhbc-review-list strong {
	line-height: 1.3;
}

.hhbc-review-list span {
	color: var(--hhbc-muted);
	font-size: 0.78rem;
}

.hhbc-review-list li div {
	display: flex;
	gap: 14px;
	font-size: 0.88rem;
}

.hhbc-review-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.hhbc-form-row {
	display: flex;
	gap: 18px;
}

.hhbc-current-image {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.hhbc-current-image img {
	width: 110px;
	height: 80px;
	border-radius: 8px;
	object-fit: cover;
}

.hhbc-current-image label,
.hhbc-confirmation,
.hhbc-staff-pick-control,
.comment-form-hhbc-age label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #3d433d;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.5;
}

.hhbc-current-image input,
.hhbc-confirmation input,
.hhbc-staff-pick-control input,
.comment-form-hhbc-age input {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--hhbc-green);
}

.hhbc-staff-pick-control {
	padding: 16px;
	border: 1px solid #dfc581;
	border-radius: 10px;
	background: #fff9e8;
}

.hhbc-staff-pick-control span {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hhbc-staff-pick-control strong {
	color: var(--hhbc-green-dark);
}

.hhbc-staff-pick-control small {
	color: var(--hhbc-muted);
	font-size: 0.82rem;
	font-weight: 500;
}

.hhbc-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
}

.hhbc-trash-form {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--hhbc-line);
}

.hhbc-text-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hhbc-danger);
	cursor: pointer;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hhbc-notice {
	margin: 0 0 22px;
	padding: 14px 18px;
	border: 1px solid #b9d8c6;
	border-left: 5px solid var(--hhbc-success);
	border-radius: 8px;
	background: #f0faf4;
	color: #164a30;
}

.hhbc-notice--error {
	border-color: #e2bcbc;
	border-left-color: var(--hhbc-danger);
	background: #fff4f4;
	color: #762626;
}

.hhbc-notice p {
	margin: 0;
}

.hhbc-login-card {
	width: min(480px, calc(100% - 32px));
	margin: 70px auto;
	padding: clamp(24px, 5vw, 42px);
}

.hhbc-login-card h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1;
}

.hhbc-login-card > p:not(.hhbc-eyebrow) {
	color: var(--hhbc-muted);
}

.hhbc-login-card form p {
	margin: 16px 0 0;
}

.hhbc-login-card .login-remember label {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hhbc-login-card__help {
	margin-bottom: 0;
	font-size: 0.9rem;
}

/* Single review */
.hhbc-single {
	grid-column: 1 / -1;
	width: 100%;
	min-width: 0;
	background: var(--hhbc-paper);
}

body.wd-header-overlap.single-hh_review .hhbc-single {
	padding-top: 100px;
}

/* WoodMart uses a transparent overlay header. Review pages have no image behind
 * that header, so give only these pages a solid surface for readable navigation. */
body.single-hh_review .whb-general-header {
	background: #0c2d1f !important;
}

body.single-hh_review .whb-general-header .woodmart-nav-link,
body.single-hh_review .whb-general-header .wd-tools-element > a {
	color: #fff !important;
}

.hhbc-review__shell {
	width: min(980px, calc(100% - 32px));
	margin: 38px auto 80px;
}

.hhbc-breadcrumb {
	margin-bottom: 22px;
}

.hhbc-breadcrumb a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 7px;
	padding: 8px 13px;
	border: 1px solid var(--hhbc-line);
	border-radius: 999px;
	background: var(--hhbc-cream);
	color: var(--hhbc-green-dark);
	line-height: 1.2;
	text-decoration: none;
}

.hhbc-breadcrumb a:hover {
	border-color: var(--hhbc-green);
	background: #fff;
	color: var(--hhbc-green);
}

.hhbc-review__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
	gap: clamp(28px, 6vw, 70px);
	align-items: center;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--hhbc-line);
}

.hhbc-review__heading h1 {
	margin: 8px 0 20px;
	font-size: clamp(2.5rem, 7vw, 5.2rem);
	line-height: 0.98;
}

.hhbc-review__brand {
	margin-top: 20px;
}

.hhbc-review__byline {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--hhbc-muted);
	font-size: 0.88rem;
	line-height: 1.4;
}

.hhbc-review__byline strong {
	color: var(--hhbc-ink);
}

.hhbc-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.hhbc-review__image {
	overflow: hidden;
	margin: 0;
	border-radius: calc(var(--hhbc-radius) + 4px);
	background: var(--hhbc-cream);
	box-shadow: var(--hhbc-shadow);
}

.hhbc-review__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 540px;
	margin: 0;
	object-fit: cover;
}

.hhbc-review__image--placeholder {
	display: grid;
	aspect-ratio: 4 / 3;
	place-items: center;
	background: linear-gradient(145deg, var(--hhbc-green-dark), var(--hhbc-green));
	color: var(--hhbc-gold);
	font-size: 5rem;
	font-weight: 850;
	letter-spacing: -0.08em;
}

.hhbc-quick-take {
	margin: 40px 0 32px;
	padding: clamp(22px, 4vw, 34px);
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-green-dark);
	color: #fff;
}

.hhbc-quick-take > p {
	margin: 0 0 10px;
	color: var(--hhbc-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.hhbc-quick-take blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	color: #fff;
	font-size: clamp(1.25rem, 3vw, 1.85rem);
	font-style: normal;
	font-weight: 650;
	line-height: 1.4;
}

.hhbc-review__content {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.08rem;
}

.hhbc-review__content > *:first-child {
	margin-top: 0;
}

.hhbc-notes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 38px 0;
}

.hhbc-notes-grid section {
	padding: 20px;
	border: 1px solid var(--hhbc-line);
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-cream);
}

.hhbc-notes-grid h2 {
	margin: 0 0 8px;
	font-size: 1rem;
	line-height: 1.25;
}

.hhbc-notes-grid p {
	margin: 0;
	color: #454a44;
	font-size: 0.94rem;
}

.hhbc-shop-action {
	margin: 38px 0;
	text-align: center;
}

.hhbc-review__edit {
	text-align: right;
}

.hhbc-comments {
	margin-top: 50px;
	padding-top: 36px;
	border-top: 1px solid var(--hhbc-line);
}

.hhbc-comments .hhbc-section-heading h2 span {
	display: inline-flex;
	min-width: 29px;
	min-height: 29px;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
	border-radius: 50%;
	background: var(--hhbc-cream);
	font-size: 0.78rem;
	vertical-align: 3px;
}

.hhbc-comment-list,
.hhbc-comment-list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hhbc-comment-list .children {
	margin-left: 36px;
}

.hhbc-comment-list .comment-body {
	position: relative;
	margin: 0 0 14px;
	padding: 20px;
	border: 1px solid var(--hhbc-line);
	border-radius: var(--hhbc-radius);
	background: #fff;
}

.hhbc-comment-list .comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.94rem;
}

.hhbc-comment-list .comment-author img {
	border-radius: 50%;
}

.hhbc-comment-list .comment-metadata {
	margin: 5px 0 12px 54px;
	font-size: 0.78rem;
}

.hhbc-comment-list .comment-metadata a,
.hhbc-comment-list .reply a {
	color: var(--hhbc-muted);
}

.hhbc-comment-list .comment-content p:last-child {
	margin-bottom: 0;
}

.hhbc-comment-list .reply {
	margin-top: 10px;
	font-size: 0.84rem;
	font-weight: 750;
}

.hhbc-comment-form {
	margin-top: 30px;
	padding: clamp(22px, 4vw, 32px);
	border-radius: var(--hhbc-radius);
	background: var(--hhbc-cream);
}

.hhbc-comment-form h3 {
	margin: 0 0 8px;
	font-size: 1.5rem;
}

.hhbc-comment-form form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px 18px;
}

.hhbc-comment-form .comment-notes,
.hhbc-comment-form .logged-in-as,
.hhbc-comment-form .comment-form-comment,
.hhbc-comment-form .comment-form-cookies-consent,
.hhbc-comment-form .comment-form-hhbc-age,
.hhbc-comment-form .comment-policy,
.hhbc-comment-form .form-submit {
	grid-column: 1 / -1;
}

.hhbc-comment-form p {
	margin: 0;
}

.hhbc-hp {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.hhbc-comment-form p > label:not(:has(input[type="checkbox"])) {
	display: block;
	margin-bottom: 7px;
}

.hhbc-comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.86rem;
}

.hhbc-comment-form .comment-form-cookies-consent input {
	margin-top: 6px;
}

@media (max-width: 900px) {
	body.wd-header-overlap.single-hh_review .hhbc-single {
		padding-top: 70px;
	}

	.hhbc-review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hhbc-dashboard__layout {
		grid-template-columns: 1fr;
	}

	.hhbc-my-reviews {
		position: static;
	}

	.hhbc-review__header {
		grid-template-columns: 1fr;
	}

	.hhbc-review__image {
		max-width: 620px;
	}

	.hhbc-notes-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.hhbc-corner,
	.hhbc-dashboard {
		width: min(100% - 20px, 1180px);
		margin-top: 18px;
	}

	.hhbc-corner__header,
	.hhbc-dashboard__header,
	.hhbc-filters,
	.hhbc-form-row,
	.hhbc-dashboard__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hhbc-corner__header h1,
	.hhbc-dashboard__header h1 {
		line-height: 1.02;
	}

	.hhbc-filters .hhbc-button,
	.hhbc-button--light,
	.hhbc-dashboard__actions .hhbc-button {
		width: 100%;
	}

	.hhbc-review-grid {
		grid-template-columns: 1fr;
	}

	.hhbc-field {
		min-width: 0;
	}

	.hhbc-review__shell {
		width: min(100% - 20px, 980px);
		margin-top: 24px;
	}

	.hhbc-review__heading h1 {
		font-size: clamp(2.35rem, 13vw, 4rem);
	}

	.hhbc-comment-form form {
		grid-template-columns: 1fr;
	}

	.hhbc-comment-form form > * {
		grid-column: 1;
	}

	.hhbc-comment-list .children {
		margin-left: 16px;
	}
}

/* Public journal refresh — intentionally distinct from the main storefront. */
body.hhbc-public-page .main-page-wrapper {
	background:
		radial-gradient(circle at 10% 12%, rgba(239, 132, 91, 0.12), transparent 26rem),
		radial-gradient(circle at 92% 42%, rgba(123, 154, 116, 0.13), transparent 30rem),
		#f8f3e9;
}

body.hhbc-public-page .wd-content-area {
	grid-column: 1 / -1;
	width: 100%;
}

body.hhbc-public-page .wd-sidebar {
	display: none;
}

body.hhbc-public-page .hhbc-corner {
	width: min(1180px, calc(100% - 32px));
	margin-top: 34px;
}

body.hhbc-public-page .hhbc-corner__header {
	position: relative;
	min-height: 285px;
	align-items: center;
	overflow: hidden;
	margin-bottom: 0;
	padding: clamp(30px, 4.5vw, 54px);
	border: 0;
	border-radius: 30px;
	background:
		radial-gradient(circle at 82% 22%, rgba(247, 195, 95, 0.92) 0 7%, transparent 7.2%),
		radial-gradient(circle at 86% 26%, transparent 0 13%, rgba(255, 255, 255, 0.18) 13.2% 13.8%, transparent 14%),
		linear-gradient(128deg, #0b2d20 0%, #164a35 55%, #d76d4f 122%);
	box-shadow: 0 28px 70px rgba(25, 52, 36, 0.2);
}

body.hhbc-public-page .hhbc-corner__header::before {
	position: absolute;
	top: -92px;
	right: -76px;
	width: 330px;
	height: 330px;
	border: 54px solid rgba(232, 113, 78, 0.35);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

body.hhbc-public-page .hhbc-corner__header::after {
	position: absolute;
	right: 4%;
	bottom: -112px;
	width: 260px;
	height: 185px;
	border-radius: 60% 40% 0 0;
	background: rgba(245, 190, 74, 0.17);
	content: "";
	transform: rotate(-8deg);
	pointer-events: none;
}

body.hhbc-public-page .hhbc-corner__copy,
body.hhbc-public-page .hhbc-corner__header > .hhbc-button {
	position: relative;
	z-index: 1;
}

body.hhbc-public-page .hhbc-corner__copy {
	max-width: 720px;
}

body.hhbc-public-page .hhbc-corner__header h1 {
	max-width: 700px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.55rem, 5vw, 4.65rem);
	font-weight: 700;
	letter-spacing: -0.052em;
	line-height: 0.92;
}

body.hhbc-public-page .hhbc-eyebrow {
	color: #f5c15e;
	font-size: 0.8rem;
}

body.hhbc-public-page .hhbc-corner__intro {
	max-width: 680px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 1.7vw, 1.17rem);
}

.hhbc-corner__signals {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 17px;
}

.hhbc-corner__signals span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.025em;
	backdrop-filter: blur(5px);
}

.hhbc-corner__signals span::before {
	color: #f5c15e;
	content: "✦";
}

body.hhbc-public-page .hhbc-button--light {
	min-width: 190px;
	border-color: #fff9ed;
	background: #fff9ed;
	box-shadow: 0 10px 28px rgba(5, 27, 18, 0.19);
}

body.hhbc-public-page .hhbc-filters {
	position: relative;
	z-index: 2;
	flex-wrap: wrap;
	gap: 15px;
	margin: -24px 28px 40px;
	padding: 20px 22px;
	border: 0;
	border-radius: 20px;
	background: rgba(255, 254, 250, 0.98);
	box-shadow: 0 20px 50px rgba(35, 47, 38, 0.13);
}

.hhbc-filters__heading {
	display: flex;
	flex: 1 0 100%;
	align-items: baseline;
	gap: 12px;
	padding-bottom: 4px;
}

.hhbc-filters__heading strong {
	color: #153b2a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.28rem;
}

.hhbc-filters__heading span {
	color: #72776f;
	font-size: 0.84rem;
}

body.hhbc-public-page .hhbc-filters .hhbc-field label {
	font-size: 0.76rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.hhbc-public-page .hhbc-filters input,
body.hhbc-public-page .hhbc-filters select {
	border: 1px solid #d3cec2;
	border-radius: 12px;
	background-color: #fbf8f1;
}

body.hhbc-public-page .hhbc-filters input:focus,
body.hhbc-public-page .hhbc-filters select:focus {
	border-color: #d76d4f;
	box-shadow: 0 0 0 4px rgba(215, 109, 79, 0.13);
}

body.hhbc-public-page .hhbc-filters .hhbc-button {
	border-color: #d76d4f;
	background: #d76d4f;
	box-shadow: 0 9px 20px rgba(180, 75, 48, 0.2);
}

body.hhbc-public-page .hhbc-filters .hhbc-button:hover {
	border-color: #b94f36;
	background: #b94f36;
}

body.hhbc-public-page .hhbc-review-grid {
	gap: 26px;
}

body.hhbc-public-page .hhbc-card {
	border: 0;
	border-radius: 22px;
	background: #fffefa;
	box-shadow: 0 14px 38px rgba(36, 49, 39, 0.1);
	transition: box-shadow 190ms ease, transform 190ms ease;
}

body.hhbc-public-page .hhbc-card:hover {
	box-shadow: 0 24px 52px rgba(36, 49, 39, 0.16);
	transform: translateY(-5px);
}

body.hhbc-public-page .hhbc-card__image {
	background:
		radial-gradient(circle at 72% 28%, rgba(245, 193, 94, 0.5), transparent 18%),
		linear-gradient(145deg, #0d3021, #1b553c);
}

body.hhbc-public-page .hhbc-card:nth-child(3n+2) .hhbc-card__image {
	background:
		radial-gradient(circle at 72% 25%, rgba(255, 218, 164, 0.48), transparent 19%),
		linear-gradient(145deg, #6f4b6c, #d27764);
}

body.hhbc-public-page .hhbc-card:nth-child(3n+3) .hhbc-card__image {
	background:
		radial-gradient(circle at 75% 24%, rgba(255, 245, 213, 0.52), transparent 18%),
		linear-gradient(145deg, #315c55, #789b72);
}

body.hhbc-public-page .hhbc-card__placeholder {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	color: #f6c45c;
	font-family: Georgia, "Times New Roman", serif;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}

body.hhbc-public-page .hhbc-card__placeholder strong {
	font-size: clamp(3.35rem, 7vw, 5.8rem);
	font-weight: 700;
	letter-spacing: -0.12em;
	line-height: 1;
}

body.hhbc-public-page .hhbc-card__placeholder small {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.8);
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

body.hhbc-public-page .hhbc-card__placeholder::before,
body.hhbc-public-page .hhbc-card__placeholder::after {
	position: absolute;
	width: 44%;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	content: "";
}

body.hhbc-public-page .hhbc-card__placeholder::before {
	top: 12%;
	left: 12%;
}

body.hhbc-public-page .hhbc-card__placeholder::after {
	right: 8%;
	bottom: -15%;
	width: 56%;
}

body.hhbc-public-page .hhbc-card__body {
	padding: 25px;
}

body.hhbc-public-page .hhbc-pill {
	background: #e2efdf;
	color: #17412e;
}

body.hhbc-public-page .hhbc-card:nth-child(3n+2) .hhbc-pill {
	background: #f7dfd7;
	color: #7d3528;
}

body.hhbc-public-page .hhbc-card:nth-child(3n+3) .hhbc-pill {
	background: #e1e4f0;
	color: #414d76;
}

body.hhbc-public-page .hhbc-staff-pick {
	border-color: #d09a28;
	background: #f5c15e;
	box-shadow: 0 6px 18px rgba(42, 33, 9, 0.18);
}

body.hhbc-public-page .hhbc-card__brand {
	color: #b9533c;
}

body.hhbc-public-page .hhbc-card__title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.65rem;
	letter-spacing: -0.025em;
}

body.hhbc-public-page .hhbc-card__excerpt {
	color: #4f554e;
}

body.hhbc-public-page .hhbc-card__read {
	color: #b9533c;
	text-decoration-color: rgba(185, 83, 60, 0.34);
}

body.hhbc-public-page .hhbc-card__read:hover {
	color: #153b2a;
}

body.hhbc-public-page .hhbc-disclaimer {
	margin-top: 42px;
	padding: 18px 20px;
	border: 0;
	border-radius: 14px;
	background: #173f2d;
	color: rgba(255, 255, 255, 0.83);
	text-align: center;
}

@media (max-width: 680px) {
	body.hhbc-public-page .hhbc-corner {
		width: min(100% - 20px, 1180px);
		margin-top: 22px;
	}

	body.hhbc-public-page .hhbc-corner__header {
		min-height: 330px;
		align-items: flex-start;
		padding: 30px 24px 60px;
		border-radius: 22px;
	}

	body.hhbc-public-page .hhbc-corner__header h1 {
		font-size: clamp(2.45rem, 13vw, 3.65rem);
	}

	body.hhbc-public-page .hhbc-corner__signals {
		gap: 7px;
	}

	body.hhbc-public-page .hhbc-corner__signals span {
		font-size: 0.7rem;
	}

	body.hhbc-public-page .hhbc-filters {
		margin: -38px 12px 34px;
		padding: 20px;
	}

	.hhbc-filters__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 1px;
	}

	body.hhbc-public-page .hhbc-card:hover {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hhbc-button,
	.hhbc-card__image img {
		transition: none;
	}
}
