.hb-button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--hb-color-primary);
	border-radius: var(--hb-radius-button);
	background: var(--hb-color-primary);
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hb-button:hover,
.hb-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--hb-color-primary-dark);
	border-color: var(--hb-color-primary-dark);
	color: #ffffff;
	transform: translateY(-1px);
}

.hb-button--secondary {
	background: var(--hb-color-primary-soft);
	border-color: var(--hb-color-border);
	color: var(--hb-color-heading);
}

.hb-button--secondary:hover,
.hb-button--secondary:focus {
	background: #d7efe7;
	border-color: var(--hb-color-primary);
	color: var(--hb-color-heading);
}

.hb-card {
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	box-shadow: var(--hb-shadow-sm);
}

.hb-grid {
	display: grid;
	gap: 1.25rem;
}

.hb-grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hb-section {
	padding: 2.5rem 0;
}

.hb-section__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--hb-color-primary-dark);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hb-section__title,
.hb-page-title,
.hb-entry__title,
.hb-empty-state__title {
	margin: 0;
	color: var(--hb-color-text);
	line-height: 1.18;
}

.hb-section__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.hb-section__lead {
	max-width: 680px;
	color: var(--hb-color-muted);
	font-size: 1.12rem;
}

.hb-home-placeholder {
	padding: clamp(1.5rem, 5vw, 4rem);
}

.hb-icon {
	flex: 0 0 auto;
}

/*
 * v2.3.3 redesign: input + submit read as one integrated control. The
 * container owns the border/radius/focus ring and clips the submit button
 * via overflow:hidden, so the button itself never needs to mirror the
 * container's radius on its own corners — one rounded shape, not two
 * separately-styled pieces glued together.
 */
.hb-header-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	width: 100%;
	min-height: 56px;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--hb-color-border);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hb-header-search:focus-within {
	border-color: var(--hb-color-primary);
	box-shadow: 0 0 0 3px rgba(14, 124, 102, 0.15);
}

.hb-header-search__field {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: var(--hb-color-text);
	outline: none;
	padding: 0 1.1rem;
	font-size: 0.95rem;
	-webkit-appearance: none;
	appearance: none;
}

.hb-header-search__field::-webkit-search-decoration,
.hb-header-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.hb-header-search__field::placeholder {
	color: var(--hb-color-muted);
}

.hb-header-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 76px;
	border: 0;
	border-radius: 0;
	background: var(--hb-color-primary);
	color: #ffffff;
	font-weight: 800;
	transition: background-color 0.2s ease;
}

.hb-header-search__submit:hover,
.hb-header-search__submit:focus-visible {
	background: var(--hb-color-primary-hover);
}

.hb-header-action,
.hb-mobile-drawer__action,
.hb-cart-link {
	display: inline-flex;
	align-items: center;
	min-height: 52px;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	color: var(--hb-color-text);
	box-shadow: 0 6px 16px rgba(6, 51, 43, 0.05);
}

.hb-header-action {
	gap: 0.65rem;
	padding: 0.48rem 0.75rem;
}

.hb-header-action:hover,
.hb-header-action:focus,
.hb-mobile-drawer__action:hover,
.hb-mobile-drawer__action:focus,
.hb-cart-link:hover,
.hb-cart-link:focus {
	border-color: rgba(14, 124, 102, 0.45);
	color: var(--hb-color-primary-dark);
	box-shadow: 0 8px 20px rgba(14, 124, 102, 0.1);
}

.hb-header-action__icon,
.hb-mobile-drawer__action .hb-icon {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 14px;
	background: #e4f4ef;
	color: var(--hb-color-primary-dark);
}

.hb-header-action__text {
	display: grid;
	gap: 0.05rem;
	min-width: 0;
}

.hb-header-action__title {
	max-width: 9rem;
	overflow: hidden;
	color: var(--hb-color-text);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-header-action__subtitle {
	color: var(--hb-color-muted);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.1;
}

.hb-cart-link {
	padding: 0;
}

.hb-cart-link__inner {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	min-height: 52px;
	padding: 0.48rem 0.75rem;
}

.hb-cart-count {
	font-weight: 800;
}

.hb-cart-total {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 0.55rem;
	border-radius: var(--hb-radius-pill);
	background: #e9f6f2;
	color: var(--hb-color-primary-dark);
	font-size: 0.82rem;
	font-weight: 800;
	white-space: nowrap;
}

.hb-mobile-toggle {
	display: none;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	color: var(--hb-color-text);
}

.hb-menu,
.hb-footer__menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hb-menu a,
.hb-menu__link,
.hb-footer__menu a {
	color: var(--hb-color-muted);
	font-weight: 800;
}

.hb-menu a:hover,
.hb-menu a:focus,
.hb-menu__link:hover,
.hb-menu__link:focus,
.hb-footer__menu a:hover,
.hb-footer__menu a:focus {
	color: var(--hb-color-primary-dark);
}

.hb-menu--primary {
	justify-content: center;
}

.hb-menu--categories {
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: thin;
}

.hb-menu--categories .hb-menu__link {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	max-width: 190px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-menu--categories .hb-menu__link.is-active {
	color: var(--hb-color-primary);
	box-shadow: inset 0 -2px 0 var(--hb-color-primary);
}

.hb-menu--mobile,
.hb-footer__menu {
	display: grid;
	align-items: stretch;
	gap: 0.5rem;
}

.hb-menu--mobile a {
	display: block;
	padding: 0.78rem 0;
	border-bottom: 1px solid var(--hb-color-border);
	color: var(--hb-color-text);
}

.hb-mobile-category-list {
	display: grid;
	gap: 0.35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hb-mobile-category-list__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.72rem 0.8rem;
	border-radius: var(--hb-radius-md);
	color: var(--hb-color-text);
}

.hb-mobile-category-list__link:hover,
.hb-mobile-category-list__link:focus {
	background: var(--hb-color-background);
	color: var(--hb-color-primary-dark);
}

.hb-mobile-category-list__link span:last-child {
	color: var(--hb-color-muted);
	font-size: 0.82rem;
	font-weight: 800;
	white-space: nowrap;
}

.hb-mobile-drawer__note {
	margin: 0;
	padding: 0.75rem;
	color: var(--hb-color-muted);
}

.hb-search-form {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.35rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-background);
}

.hb-search-form__field {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: var(--hb-color-text);
	outline: 0;
	padding: 0.55rem 0.65rem;
}

.hb-search-form__submit {
	flex: 0 0 auto;
	min-height: 38px;
	padding: 0.5rem 0.85rem;
	border: 0;
	border-radius: var(--hb-radius-button);
	background: var(--hb-color-primary);
	color: #ffffff;
	font-weight: 800;
}

.hb-mobile-drawer__action {
	gap: 0.6rem;
	justify-content: flex-start;
	padding: 0.7rem;
	font-weight: 800;
}

.hb-mobile-drawer__cart .hb-cart-link__inner {
	justify-content: flex-start;
}

.hb-mobile-drawer__quicklinks a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-background);
	color: var(--hb-color-text);
	font-weight: 800;
	text-align: center;
}

.hb-entry {
	padding: 1.25rem;
}

.hb-entry__header {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 1rem;
}

.hb-entry__title {
	font-size: 1.5rem;
}

.hb-entry__title a {
	color: inherit;
}

.hb-entry__media {
	margin: 0 0 1rem;
	overflow: hidden;
	border-radius: var(--hb-radius-md);
}

.hb-entry__content,
.hb-entry__summary {
	color: var(--hb-color-muted);
}

.hb-entry-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	color: var(--hb-color-muted);
	font-size: 0.9rem;
}

.hb-archive-header {
	margin-bottom: 1.5rem;
}

.hb-archive-description {
	max-width: 760px;
	color: var(--hb-color-muted);
}

.hb-empty-state {
	display: grid;
	gap: 1rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	text-align: left;
}

.hb-comments {
	margin-top: 2rem;
	padding: 1.5rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
}

.hb-comments__list {
	display: grid;
	gap: 1rem;
	padding-left: 1.25rem;
}

.hb-sidebar {
	display: grid;
	gap: 1rem;
}

.hb-sidebar__widget {
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
}

.hb-sidebar__title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
}

.hb-home-notice {
	margin: 0;
	padding: 0.9rem 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
	color: var(--hb-color-muted);
}

.hb-promo-banner__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--hb-color-primary);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hb-home-categories {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 0.5rem;
}

.hb-category-card {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
	padding: 0.5rem 0.55rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
	color: var(--hb-color-text);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hb-category-card:hover,
.hb-category-card:focus {
	border-color: var(--hb-color-primary);
	color: var(--hb-color-text);
	box-shadow: var(--hb-shadow-sm);
	transform: translateY(-2px);
}

.hb-category-card__media {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: var(--hb-radius-sm);
	background: var(--hb-color-background-soft);
	overflow: hidden;
}

.hb-category-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.25rem;
}

.hb-category-card__media .hb-icon {
	width: 15px;
	height: 15px;
	color: var(--hb-color-primary);
}

.hb-category-card__body {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.hb-category-card__title {
	overflow: hidden;
	color: var(--hb-color-heading);
	font-size: 0.76rem;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-category-card__count {
	color: var(--hb-color-muted);
	font-size: 0.66rem;
	font-weight: 500;
}

/*
 * Product grid + card — single authoritative definition (v2.2.0).
 * Column counts are finished off in woocommerce.css (sidebar-aware) and
 * responsive.css (breakpoints); this file only owns the card's own look.
 */
.hb-product-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.7rem;
	width: 100%;
	min-width: 0;
}

.hb-product-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hb-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hb-product-card:hover,
.hb-product-card:focus-within {
	border-color: rgba(14, 124, 102, 0.35);
	box-shadow: var(--hb-shadow-sm);
	transform: translateY(-2px);
}

/*
 * v2.2.5: product-card thumbnails use a 4:5 portrait frame with
 * object-fit: cover (not the old 1:1 square + contain) — cropping a
 * little for a clean, uniform catalog grid is fine here, unlike the
 * single-product main image which must never be cropped or squared.
 */
.hb-product-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #f9f6f2;
}

.hb-product-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.hb-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.hb-product-card__badges {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	display: grid;
	gap: 0.35rem;
	z-index: 2;
}

.hb-product-card__badge {
	display: inline-flex;
	width: fit-content;
	padding: 0.2rem 0.42rem;
	border-radius: var(--hb-radius-sm);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.1;
}

.hb-product-card__badge--sale {
	background: var(--hb-color-accent);
	color: var(--hb-color-ink);
}

.hb-product-card__badge--new {
	background: #e9f7ec;
	/* Darker than --hb-color-success: at 0.72rem/800 this needs 4.5:1 on the tint. */
	color: #1c7a34;
	border: 1px solid rgba(47, 158, 68, 0.28);
}

.hb-product-card__wishlist {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	z-index: 3;
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: rgba(255, 255, 255, 0.94);
	color: var(--hb-color-muted);
}

.hb-product-card__wishlist .hb-icon {
	width: 18px;
	height: 18px;
}

.hb-product-card__wishlist.is-active,
.hb-product-card__wishlist[aria-pressed="true"] {
	border-color: rgba(200, 30, 30, 0.35);
	background: #fdf1ef;
	color: var(--hb-color-danger);
}

.hb-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.42rem;
	padding: 0.75rem;
}

.hb-product-card__category {
	display: -webkit-box;
	overflow: hidden;
	color: var(--hb-color-muted);
	font-size: 0.72rem;
	font-weight: 700;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hb-product-card__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: 0.95rem;
	line-height: 1.35;
}

.hb-product-card__title a {
	display: -webkit-box;
	min-height: 2.5em;
	overflow: hidden;
	color: inherit;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hb-product-card__rating {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	min-height: 0.9rem;
	color: var(--hb-color-warning);
	font-size: 0.74rem;
	line-height: 1;
}

.hb-product-card__rating .star-rating {
	font-size: 0.74rem;
}

.hb-product-card__rating-count {
	color: var(--hb-color-muted);
	font-size: 0.72rem;
}

.hb-product-card__price {
	color: var(--hb-color-primary-dark);
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.2;
}

/*
 * v2.5.0: the "(~$17.97)" dealer-only USD equivalent is not theme markup —
 * it's appended by the sibling plugin bayi-fiyat-yonetimi
 * (includes/class-bfy-pricing.php, append_dealer_usd_price()) directly onto
 * WooCommerce's own price HTML via the woocommerce_get_price_html filter,
 * as `<span class="bfy-usd-note" style="color:#6b7280;...">`. That's an
 * inline style, not a class-based rule — normal specificity can't beat it,
 * so !important is required here specifically to override it, everywhere
 * price HTML is printed (home, shop, search, categories, collections,
 * related/recently-viewed, single product) since woocommerce_get_price_html
 * is one shared WooCommerce core filter, not a per-template one. The primary
 * ₺ price itself is untouched — only this secondary span's color changes.
 */
.bfy-usd-note {
	color: var(--hb-color-price-secondary) !important;
	font-size: 0.76em;
	font-weight: 700;
	white-space: nowrap;
}

.woocommerce div.product .hb-single-price .bfy-usd-note {
	font-size: 0.62em;
}

.hb-product-card__price del {
	margin-right: 0.35rem;
	color: var(--hb-color-muted);
	font-size: 0.78rem;
	font-weight: 600;
	opacity: 1;
}

.hb-product-card__price ins {
	color: var(--hb-color-primary-dark);
	text-decoration: none;
}

.hb-product-card__footer {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	margin-top: auto;
}

.hb-product-card__stock {
	display: inline-flex;
	align-items: center;
	gap: 0.32rem;
	color: var(--hb-color-success);
	font-size: 0.76rem;
	font-weight: 700;
}

.hb-product-card__stock::before {
	content: "\25CF";
	font-size: 0.6rem;
}

.hb-product-card__stock--out-of-stock {
	color: var(--hb-color-danger);
}

.hb-product-card__stock--backorder {
	color: var(--hb-color-warning);
}

.hb-product-card__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--hb-color-primary);
	border-radius: var(--hb-radius-button);
	background: var(--hb-color-primary);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 800;
	text-align: center;
}

.hb-product-card__cart:hover,
.hb-product-card__cart:focus {
	background: var(--hb-color-primary-hover);
	border-color: var(--hb-color-primary-hover);
	color: #ffffff;
}

.hb-product-card__cart.loading {
	position: relative;
	color: transparent;
	pointer-events: none;
}

.hb-product-card__cart.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: hb-spin 600ms linear infinite;
}

@keyframes hb-spin {
	to {
		transform: rotate(360deg);
	}
}

.hb-product-card__cart--secondary {
	background: var(--hb-color-background-soft);
	border-color: var(--hb-color-border);
	color: var(--hb-color-text);
}

.hb-product-card__cart--secondary:hover,
.hb-product-card__cart--secondary:focus {
	background: #e9f2ee;
	border-color: var(--hb-color-border);
	color: var(--hb-color-heading);
}

.hb-promo-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-primary);
	color: #ffffff;
}

.hb-promo-banner__eyebrow,
.hb-promo-banner__description {
	color: rgba(255, 255, 255, 0.86);
}

.hb-promo-banner__title {
	margin: 0;
	color: #ffffff;
	font-size: 1.45rem;
	line-height: 1.2;
}

.hb-promo-banner__description {
	margin: 0.35rem 0 0;
}

.hb-promo-banner__button {
	flex: 0 0 auto;
	background: #ffffff;
	border-color: #ffffff;
	color: var(--hb-color-primary-hover);
}

.hb-promo-banner__button:hover,
.hb-promo-banner__button:focus {
	background: #e7f7ec;
	border-color: #e7f7ec;
	color: var(--hb-color-primary-hover);
}

/*
 * v2.2.2: single authoritative .hb-benefits definition (previously split
 * across a base rule here and a second "dense" override further down in
 * this file, which is now removed). Desktop: one bordered strip, 4 columns,
 * divided by inner border-lefts. Mobile: see responsive.css for the 2x2
 * card-grid version (no shared outer border, each item is its own card).
 */
.hb-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
}

.hb-benefits__item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem;
}

.hb-benefits__item + .hb-benefits__item {
	border-left: 1px solid var(--hb-color-border);
}

.hb-benefits__icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: var(--hb-radius-sm);
	background: var(--hb-color-primary-soft);
	color: var(--hb-color-primary);
}

.hb-benefits__icon .hb-icon {
	width: 19px;
	height: 19px;
}

.hb-benefits__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: 0.9rem;
	line-height: 1.2;
}

.hb-benefits__description {
	margin: 0.2rem 0 0;
	color: var(--hb-color-muted);
	font-size: 0.78rem;
	line-height: 1.35;
}

/* Marketplace redesign components. */
.hb-header-topbar__message {
	font-weight: 600;
}

.hb-header-topbar__list {
	gap: 1.15rem;
}

.hb-header-topbar__link {
	font-weight: 500;
}

.hb-header-logo__link,
.hb-footer__brand-link {
	gap: 0.6rem;
	color: var(--hb-color-heading);
}

.hb-header-logo__mark,
.hb-footer__brand-mark {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: var(--hb-color-primary);
	font-size: 0.78rem;
	font-weight: 800;
}

.hb-header-logo__name,
.hb-footer__brand-name {
	font-size: 1.18rem;
	font-weight: 800;
}

.hb-footer__brand-link,
.hb-footer__brand-name {
	color: #ffffff;
}

.hb-header-branding__tagline {
	font-size: 0.72rem;
	font-weight: 500;
}

/* v2.3.3: kept in sync with the canonical .hb-header-search rule above — same
 * final values either way, so which of the two wins the cascade doesn't matter. */
.hb-header-search {
	grid-template-columns: minmax(0, 1fr) auto;
	min-height: 56px;
	padding: 0;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: none;
}

.hb-header-search__field {
	padding: 0 1.1rem;
	font-size: 0.95rem;
}

.hb-header-search__submit {
	width: 76px;
	border-radius: 0;
	font-size: 0.86rem;
	font-weight: 800;
}

.hb-header-search__submit .hb-icon {
	width: 18px;
	height: 18px;
}

.hb-header-actions {
	gap: 0;
}

.hb-header-action,
.hb-mobile-drawer__action,
.hb-cart-link {
	min-height: 44px;
	border: 0;
	border-radius: var(--hb-radius-md);
	background: transparent;
	box-shadow: none;
}

.hb-header-action {
	gap: 0.45rem;
	padding: 0.42rem 0.65rem;
	border-left: 1px solid var(--hb-color-border);
}

.hb-header-action:first-child {
	border-left: 0;
}

.hb-cart-link__inner {
	gap: 0.45rem;
	min-height: 44px;
	padding: 0.42rem 0.65rem;
	border-left: 1px solid var(--hb-color-border);
}

.hb-header-action:hover,
.hb-header-action:focus,
.hb-cart-link:hover,
.hb-cart-link:focus {
	background: var(--hb-color-primary-soft);
	color: var(--hb-color-primary-hover);
	box-shadow: none;
}

.hb-header-action__icon,
.hb-mobile-drawer__action .hb-icon {
	width: 28px;
	height: 28px;
	border-radius: 12px;
	background: transparent;
	color: var(--hb-color-heading);
}

.hb-header-action__icon .hb-icon,
.hb-cart-link .hb-icon {
	width: 20px;
	height: 20px;
}

.hb-header-action__title {
	max-width: 7rem;
	font-size: 0.82rem;
	font-weight: 700;
}

.hb-header-action__subtitle {
	font-size: 0.72rem;
	font-weight: 500;
}

.hb-cart-total {
	min-height: 24px;
	padding: 0 0.35rem;
	background: transparent;
	color: var(--hb-color-heading);
	font-size: 0.78rem;
	font-weight: 700;
}

.hb-menu,
.hb-footer__menu {
	gap: 0.25rem 1.4rem;
}

.hb-menu a,
.hb-menu__link,
.hb-footer__menu a {
	font-size: 0.88rem;
	font-weight: 600;
}

.hb-home {
	background: var(--hb-color-background);
	padding-top: 0.6rem;
}

.hb-hero-section {
	padding: 0.3rem 0 0.7rem;
}

.hb-hero {
	position: relative;
	display: block;
	min-height: 470px;
	max-height: 560px;
	border-radius: var(--hb-radius-lg);
	background-color: var(--hb-color-ink);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	box-shadow: var(--hb-shadow-md);
}

.hb-hero__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.65rem;
	padding: 2.4rem clamp(1.25rem, 5vw, 3.5rem);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.35) 62%, rgba(255, 255, 255, 0) 82%);
}

.hb-hero__brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.1rem;
}

.hb-hero__brand .custom-logo {
	max-height: 30px;
	width: auto;
}

.hb-hero__brand-image {
	display: block;
	max-width: 140px;
	max-height: 30px;
	width: auto;
	height: auto;
}

.hb-hero__brand-mark {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 12px;
	background: var(--hb-color-primary);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
}

.hb-hero__brand-name {
	color: var(--hb-color-heading);
	font-size: 0.95rem;
	font-weight: 800;
}

.hb-hero__eyebrow {
	display: inline-flex;
	width: fit-content;
	margin: 0;
	padding: 0.3rem 0.7rem;
	border-radius: var(--hb-radius-pill);
	background: var(--hb-color-accent);
	color: var(--hb-color-ink);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.hb-hero__title {
	max-width: 520px;
	margin: 0;
	color: var(--hb-color-heading);
	font-family: var(--hb-font-display);
	font-size: clamp(2.1rem, 3.6vw, 3.6rem);
	font-weight: 700;
	line-height: 1.12;
}

.hb-hero__description {
	max-width: 420px;
	margin: 0;
	color: var(--hb-color-text);
	font-size: 0.92rem;
}

.hb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-top: 0.35rem;
}

.hb-hero__button {
	min-height: 44px;
	padding: 0.65rem 1.15rem;
	font-size: 0.88rem;
	font-weight: 800;
}

.hb-hero__button--primary {
	background: var(--hb-color-primary);
	border-color: var(--hb-color-primary);
	color: #ffffff;
}

.hb-hero__button--primary:hover,
.hb-hero__button--primary:focus {
	background: var(--hb-color-primary-hover);
	border-color: var(--hb-color-primary-hover);
	color: #ffffff;
}

.hb-hero__button--secondary {
	background: #ffffff;
	border: 1px solid var(--hb-color-border);
	color: var(--hb-color-heading);
}

.hb-hero__button--secondary:hover,
.hb-hero__button--secondary:focus {
	border-color: var(--hb-color-primary);
	color: var(--hb-color-primary);
}

.hb-home-section {
	padding: 0.7rem 0;
}

.hb-home-section:nth-of-type(even) {
	background: transparent;
}

.hb-home-section__header {
	margin-bottom: 0.6rem;
}

.hb-home-section__title {
	font-size: clamp(1.3rem, 1.8vw, 1.65rem);
	font-weight: 750;
}

.hb-home-section__description {
	display: none;
}

.hb-home-section__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0.35rem 0.7rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-sm);
	background: #ffffff;
	color: var(--hb-color-heading);
	font-size: 0.84rem;
	font-weight: 700;
}

.hb-home-section__link:hover,
.hb-home-section__link:focus {
	border-color: var(--hb-color-primary);
	background: var(--hb-color-primary-soft);
	color: var(--hb-color-primary);
}

.hb-home-product-showcase {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: start;
}

.hb-home-product-panel {
	min-width: 0;
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
}

.hb-home-product-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.hb-home-product-panel__header .hb-home-section__title {
	margin: 0;
}

.hb-product-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.7rem;
}

.hb-home-cta-section {
	padding-bottom: 1rem;
}

.hb-home-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	padding: 2rem 2.2rem;
	border-radius: var(--hb-radius-lg);
	background: linear-gradient(120deg, var(--hb-color-ink) 0%, var(--hb-color-ink-soft) 100%);
	color: #ffffff;
}

.hb-home-cta__content {
	max-width: 520px;
}

.hb-home-cta__title {
	margin: 0 0 0.4rem;
	color: #ffffff;
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	font-weight: 800;
}

.hb-home-cta__description {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
}

.hb-home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hb-home-cta__button {
	min-height: 46px;
	padding: 0.7rem 1.3rem;
	font-size: 0.92rem;
	font-weight: 800;
}

.hb-home-cta__button--primary {
	background: var(--hb-color-accent);
	border-color: var(--hb-color-accent);
	color: var(--hb-color-ink);
}

.hb-home-cta__button--primary:hover,
.hb-home-cta__button--primary:focus {
	background: var(--hb-accent-hover);
	border-color: var(--hb-accent-hover);
	color: var(--hb-color-ink);
}

.hb-home-cta__button--secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.hb-home-cta__button--secondary:hover,
.hb-home-cta__button--secondary:focus {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.hb-toast-source {
	display: none;
}

.hb-cart-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 10000;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 0.75rem;
	width: min(380px, calc(100vw - 32px));
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: #ffffff;
	box-shadow: 0 20px 48px rgba(6, 51, 43, 0.18);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.hb-cart-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hb-cart-toast__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #d9f4e0;
	color: var(--hb-color-success);
	font-weight: 950;
}

.hb-cart-toast__body {
	display: grid;
	gap: 0.35rem;
	min-width: 0;
}

.hb-cart-toast__body strong {
	color: var(--hb-color-heading);
}

.hb-cart-toast__body span {
	overflow: hidden;
	color: var(--hb-color-muted);
	font-size: 0.88rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-cart-toast__actions {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 0.2rem;
}

.hb-cart-toast__actions a,
.hb-cart-toast__actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0.35rem 0.65rem;
	border-radius: var(--hb-radius-button);
	font-size: 0.82rem;
	font-weight: 850;
}

.hb-cart-toast__actions a {
	background: var(--hb-color-primary);
	color: #ffffff;
}

.hb-cart-toast__actions button {
	border: 1px solid var(--hb-color-border);
	background: #ffffff;
	color: var(--hb-color-text);
}


.hb-promo-banners {
	align-items: stretch;
}

.hb-promo-banner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(180px, 0.9fr);
	align-items: center;
	min-height: 220px;
	padding: 1.3rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	overflow: hidden;
}

.hb-promo-banner--dark {
	background: var(--hb-ink);
	color: #ffffff;
}

.hb-promo-banner--light {
	background: #ffffff;
	color: var(--hb-color-text);
}

.hb-promo-banner__title {
	font-size: 1.45rem;
	font-weight: 750;
}

.hb-promo-banner--light .hb-promo-banner__title {
	color: var(--hb-color-heading);
}

.hb-promo-banner__description {
	max-width: 300px;
	margin: 0.35rem 0 0;
	color: currentColor;
	font-size: 0.9rem;
	opacity: 0.72;
}

.hb-promo-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 36px;
	margin-top: 0.85rem;
	padding: 0.46rem 0.8rem;
	border-radius: var(--hb-radius-button);
	background: #ffffff;
	color: var(--hb-ink);
	font-size: 0.82rem;
	font-weight: 700;
}

.hb-promo-banner--light .hb-promo-banner__button {
	background: var(--hb-color-heading);
	color: #ffffff;
}

.hb-promo-banner__media {
	align-self: stretch;
	display: grid;
	place-items: center;
}

.hb-promo-banner__image {
	width: 100%;
	height: 100%;
	max-height: 220px;
	object-fit: contain;
}

.hb-footer__menu {
	display: grid;
	gap: 0.6rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hb-footer__menu a,
.hb-footer__legal a,
.hb-footer__payments p {
	color: #93aaa1;
	font-size: 0.84rem;
	font-weight: 500;
}

.hb-footer__menu a:hover,
.hb-footer__menu a:focus,
.hb-footer__legal a:hover,
.hb-footer__legal a:focus {
	color: #ffffff;
}

.hb-footer__payments p {
	margin: 0;
	line-height: 1.5;
}

.hb-footer__copyright {
	margin: 0;
}

.hb-shop-breadcrumbs {
	margin-bottom: 0.85rem;
	overflow-x: auto;
	color: var(--hb-color-muted);
	font-size: 0.86rem;
	white-space: nowrap;
}

.hb-shop-breadcrumbs__list {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-width: max-content;
}

.hb-shop-breadcrumbs__item,
.hb-shop-breadcrumbs__item a {
	color: var(--hb-color-muted);
}

.hb-shop-breadcrumbs__item a:hover,
.hb-shop-breadcrumbs__item a:focus {
	color: var(--hb-color-primary-dark);
}

.hb-shop-breadcrumbs__separator {
	color: #8ba49a;
}

.hb-shop-header {
	display: grid;
	gap: 0.65rem;
	padding-bottom: 1rem;
	margin-bottom: 0.9rem;
	border-bottom: 1px solid var(--hb-color-border);
}

.hb-shop-header__content {
	display: grid;
	gap: 0.65rem;
	max-width: 820px;
}

.hb-shop-header__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: clamp(1.55rem, 2.4vw, 2.2rem);
	line-height: 1.14;
}

.hb-shop-header__description {
	color: var(--hb-color-muted);
	font-size: 0.95rem;
}

.hb-shop-header__description > * {
	margin-top: 0;
	margin-bottom: 0.55rem;
}

.hb-shop-header__description > *:last-child {
	margin-bottom: 0;
}

.hb-shop-header__more {
	display: none;
	justify-self: start;
	min-height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hb-color-primary-dark);
	font-size: 0.9rem;
	font-weight: 800;
}

/*
 * v2.3.6: unified compact header for every product-listing page (shop
 * archive, product categories, Yeni Ürünler/Çok Satanlar/Kampanyalar, search
 * results) — replaces the old separate .hb-shop-breadcrumbs + .hb-shop-header
 * (+ a standalone result-count paragraph on the custom collection pages)
 * vertical stack with one bordered panel. Deliberately NOT nested inside a
 * gap-based .hb-page-shell anywhere it's used — this component owns its own
 * margin, so the space between it and the product grid comes from exactly
 * one property, not a shell gap plus this margin stacking on top of it.
 */
.hb-archive-header {
	margin: 18px 0 22px;
	padding: 18px 22px;
	border: 1px solid var(--hb-color-border);
	border-radius: 16px;
	background: var(--hb-color-surface);
	box-shadow: var(--hb-shadow-sm);
}

.hb-archive-header__breadcrumb {
	margin-bottom: 10px;
	overflow-x: auto;
	font-size: 13px;
	color: var(--hb-color-muted);
	white-space: nowrap;
}

.hb-archive-header__breadcrumb a {
	color: var(--hb-color-muted);
}

.hb-archive-header__breadcrumb a:hover,
.hb-archive-header__breadcrumb a:focus {
	color: var(--hb-color-primary-dark);
}

.hb-archive-header__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
}

.hb-archive-header__main {
	display: flex;
	align-items: baseline;
	gap: 16px;
	min-width: 0;
}

.hb-archive-header__title {
	margin: 0;
	font-size: clamp(30px, 2.3vw, 40px);
	line-height: 1.1;
	color: var(--hb-color-heading);
	white-space: nowrap;
}

.hb-archive-header__description {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	color: var(--hb-color-muted);
	font-size: 15px;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-archive-header__description > * {
	margin: 0;
	display: inline;
}

.hb-archive-header__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: var(--hb-radius-pill);
	background: var(--hb-color-primary-soft);
	color: var(--hb-color-primary-dark);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.hb-archive-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 14px;
}

/*
 * v2.3.8: toolbar markup rebuilt around .hb-shop-toolbar__actions (filter
 * button + sort dropdown) and .hb-shop-toolbar__results (result count) —
 * replaces the old __left/__right/__ordering/__count grouping, which put the
 * result count *between* the filter button and the sort dropdown in one row,
 * something that never had room to fit at 320–430px. Desktop: one row,
 * actions left, count right. Mobile/tablet: see responsive.css.
 */
.hb-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
}

.hb-shop-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.hb-shop-toolbar__results {
	min-width: 0;
	color: var(--hb-color-muted);
	font-size: 0.9rem;
	font-weight: 700;
	white-space: nowrap;
}

.hb-shop-toolbar__results .woocommerce-result-count {
	float: none;
	margin: 0;
}

.hb-shop-filter-toggle {
	display: none;
	align-items: center;
	gap: 0.45rem;
	min-height: 40px;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-background);
	color: var(--hb-color-text);
	font-weight: 800;
}

/*
 * v2.4.0 FIX: this used to also set `position: sticky; top: 1rem` here (plus
 * an `.admin-bar` variant at `calc(1rem + 32px)`) — a second, competing
 * sticky implementation alongside the real one in woocommerce.css
 * (`@media (min-width: 1024px)`, offset from a fixed 12px/44px, not
 * --hb-header-height). Two different positioning rules for the same sticky
 * behavior is exactly the kind of duplicate that's easy to lose track of —
 * base layout/sizing only lives here now; positioning is defined in exactly
 * one place.
 */
.hb-shop-sidebar {
	display: block;
	width: 100%;
	min-width: 0;
}

.hb-shop-filters {
	display: grid;
	gap: 0.85rem;
}

.hb-shop-filter-group,
.hb-shop-sidebar .hb-sidebar__widget,
.hb-filter-drawer .hb-sidebar__widget {
	min-width: 0;
	padding: 0.95rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
	box-shadow: none;
}

.hb-shop-filter-group fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

.hb-shop-filter-group legend,
.hb-shop-filter-group__title,
.hb-shop-sidebar .widget-title,
.hb-filter-drawer .widget-title {
	margin: 0 0 0.75rem;
	color: var(--hb-color-heading);
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.2;
}

.hb-shop-filter-list,
.hb-shop-choice-list {
	display: grid;
	gap: 0.35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

/* v2.4.0: belt-and-suspenders against a horizontal scrollbar in the category list. */
.hb-shop-categories-scroll,
.hb-shop-filter-list,
.hb-shop-filter-list__item {
	min-width: 0;
	max-width: 100%;
}

/*
 * v2.3.9: the category list's own scroll container. max-height: 320px used
 * to cap it directly here; that's replaced by the sticky sidebar's own grid
 * row sizing at >=1024px (see the sticky sidebar block further down) so the
 * list fills whatever space is actually left in the viewport instead of a
 * fixed guess. overflow-x: hidden stays unconditional (all widths) — a long
 * category name must wrap, never create a horizontal scrollbar.
 */
.hb-shop-categories-scroll {
	max-width: 100%;
	overflow-x: hidden;
}

.hb-shop-category-search {
	margin-bottom: 0.6rem;
}

.hb-shop-category-search__input {
	width: 100%;
	min-height: 40px;
	padding: 0 0.65rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-sm);
	background: var(--hb-color-background);
	color: var(--hb-color-text);
	font-size: 0.85rem;
}

.hb-shop-category-search__empty {
	margin: 0.4rem 0 0;
	color: var(--hb-color-muted);
	font-size: 0.82rem;
}

.hb-shop-price-error {
	margin: 0.5rem 0 0;
	color: var(--hb-color-danger);
	font-size: 0.8rem;
	font-weight: 700;
}

.hb-shop-filter-list__item {
	--hb-filter-depth: 0;
}

.hb-shop-filter-link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	min-width: 0;
	max-width: 100%;
	padding: 0.5rem 0.55rem 0.5rem calc(0.55rem + (var(--hb-filter-depth) * 0.75rem));
	border-radius: var(--hb-radius-sm);
	color: var(--hb-color-text);
	font-size: 0.9rem;
}

.hb-shop-filter-link:hover,
.hb-shop-filter-link:focus,
.hb-shop-filter-link.is-active {
	background: #e4f4ef;
	color: var(--hb-color-primary-dark);
}

.hb-shop-filter-link.is-active {
	font-weight: 800;
}

.hb-shop-filter-link--all {
	margin-bottom: 0.35rem;
	border: 1px solid rgba(14, 124, 102, 0.18);
}

/* v2.3.9: no nowrap/ellipsis truncation — a long category name wraps onto a second line instead of being cut off or causing a horizontal scrollbar. */
.hb-shop-filter-link__label {
	min-width: 0;
	white-space: normal;
	overflow-wrap: anywhere;
}

.hb-shop-filter-link__count {
	flex: 0 0 auto;
	color: var(--hb-color-muted);
	font-size: 0.78rem;
	font-weight: 800;
}

.hb-shop-filter-empty {
	margin: 0;
	color: var(--hb-color-muted);
	font-size: 0.9rem;
}

.hb-shop-price-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.55rem;
}

.hb-shop-price-inputs label,
.hb-shop-choice {
	display: grid;
	gap: 0.3rem;
	color: var(--hb-color-text);
	font-size: 0.88rem;
	font-weight: 800;
}

.hb-shop-price-inputs input {
	width: 100%;
	min-width: 0;
	min-height: 38px;
	padding: 0.52rem 0.6rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-sm);
	background: var(--hb-color-background);
	color: var(--hb-color-text);
}

.hb-shop-choice {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	min-height: 42px;
	font-weight: 800;
}

.hb-shop-choice input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--hb-color-primary);
}

/* v2.4.0: mobile drawer gets the same 2x2 Stok Durumu grid as desktop — the drawer scrolls as a whole, so no sticky-sidebar rules apply here. */
.hb-filter-drawer .hb-shop-choice-list--stock {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/*
 * v2.3.9: one shared actions row for the whole form (Temizle + Filtreleri
 * Uygula) — replaces the old .hb-shop-filter-actions/__submit/__reset trio
 * that used to repeat under every single filter group. Buttons themselves
 * use the theme's generic .hb-button / .hb-button--secondary component now.
 */
.hb-shop-filters__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hb-active-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.85rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--hb-color-border);
}

.hb-active-filters__title {
	color: var(--hb-color-muted);
	font-size: 0.86rem;
	font-weight: 800;
}

.hb-active-filters__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	min-width: 0;
}

.hb-active-filters__chip,
.hb-active-filters__clear {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 32px;
	padding: 0.38rem 0.58rem;
	border-radius: var(--hb-radius-sm);
	font-size: 0.84rem;
	font-weight: 800;
}

.hb-active-filters__chip {
	border: 1px solid rgba(14, 124, 102, 0.24);
	background: #e4f4ef;
	color: var(--hb-color-primary-dark);
}

.hb-active-filters__clear {
	border: 1px solid var(--hb-color-border);
	background: var(--hb-color-surface);
	color: var(--hb-color-muted);
}

.hb-active-filters__remove {
	font-size: 1rem;
	line-height: 1;
}

.hb-filter-drawer__header,
.hb-filter-drawer__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 0.9rem 1rem;
	border-bottom: 1px solid var(--hb-color-border);
}

.hb-filter-drawer__footer {
	border-top: 1px solid var(--hb-color-border);
	border-bottom: 0;
}

.hb-filter-drawer__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: 1rem;
	line-height: 1.2;
}

.hb-filter-drawer__close {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-background);
	color: var(--hb-color-text);
}

.hb-filter-drawer__content {
	overflow-y: auto;
	padding: 1rem;
	background: var(--hb-color-background-soft);
}

.hb-filter-drawer__footer .hb-button {
	flex: 1 1 0;
	min-width: 0;
}

.hb-shop-empty {
	display: grid;
	gap: 1rem;
	place-items: start;
	padding: clamp(1.25rem, 4vw, 2.25rem);
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
}

.hb-shop-empty__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: 1.25rem;
	line-height: 1.2;
}

.hb-shop-empty__description {
	margin: 0.4rem 0 0;
	color: var(--hb-color-muted);
}

.hb-shop-empty__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hb-single-product__top {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	align-items: start;
	gap: 1.5rem;
	margin-top: 0.85rem;
}

.hb-single-product__gallery,
.hb-single-product__summary {
	min-width: 0;
}

.hb-single-product__gallery {
	position: relative;
}

.hb-single-product__summary {
	display: grid;
	align-content: start;
	gap: 0.9rem;
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
}

.hb-single-badges {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 4;
	display: grid;
	gap: 0.4rem;
}

.hb-single-badge {
	display: inline-flex;
	width: fit-content;
	padding: 0.28rem 0.5rem;
	border-radius: var(--hb-radius-sm);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.1;
}

.hb-single-badge--sale {
	background: var(--hb-color-accent);
	color: var(--hb-color-ink);
}

.hb-single-badge--new {
	border: 1px solid rgba(47, 158, 68, 0.28);
	background: #e7f7ec;
	color: #1c7a34;
}

.hb-single-heading {
	display: grid;
	gap: 0.55rem;
}

.hb-single-heading__category {
	width: fit-content;
	color: var(--hb-color-primary-dark);
	font-size: 0.84rem;
	font-weight: 800;
}

.hb-single-heading__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: clamp(1.45rem, 2.5vw, 2.05rem);
	line-height: 1.18;
}

.hb-single-heading__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem 0.85rem;
	color: var(--hb-color-muted);
	font-size: 0.88rem;
}

.hb-single-rating-link {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
	color: var(--hb-color-muted);
	font-weight: 800;
}

.hb-single-rating-link__stars {
	color: var(--hb-color-warning);
}

.hb-single-heading__sku {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.hb-single-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hb-single-price__value {
	color: var(--hb-color-primary-dark);
	font-size: 1.8rem;
	font-weight: 950;
	line-height: 1.1;
}

.hb-single-price__value del {
	margin-right: 0.45rem;
	color: var(--hb-color-muted);
	font-size: 1rem;
	font-weight: 800;
}

.hb-single-price__value ins {
	color: var(--hb-color-primary-dark);
	text-decoration: none;
}

.hb-single-price__discount {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0.3rem 0.48rem;
	border-radius: var(--hb-radius-sm);
	background: #ffece3;
	color: #b03e12;
	font-size: 0.84rem;
	font-weight: 800;
}

.hb-single-b2b {
	display: grid;
	gap: 0.35rem;
	padding: 0.72rem 0.8rem;
	border: 1px solid rgba(14, 124, 102, 0.18);
	border-radius: var(--hb-radius-md);
	background: #e9f6f2;
	color: var(--hb-color-text);
	font-size: 0.88rem;
}

.hb-single-b2b p {
	margin: 0;
	font-weight: 800;
}

.hb-single-b2b__links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
	font-weight: 800;
}

.hb-single-b2b--approved {
	border-color: rgba(47, 158, 68, 0.28);
	background: #eaf8ee;
	color: var(--hb-color-success);
}

.hb-single-b2b--pending,
.hb-single-b2b--needs_documents {
	border-color: rgba(217, 164, 32, 0.4);
	background: #fff3e0;
	color: var(--hb-warning);
}

.hb-single-b2b--rejected,
.hb-single-b2b--suspended,
.hb-single-b2b--cancelled {
	border-color: rgba(200, 30, 30, 0.28);
	background: #fdf1ef;
}

.hb-single-stock {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 0.42rem;
	color: var(--hb-color-success);
	font-size: 0.9rem;
	font-weight: 800;
}

.hb-single-stock__dot {
	width: 0.52rem;
	height: 0.52rem;
	border-radius: var(--hb-radius-pill);
	background: currentColor;
}

.hb-single-stock--out-of-stock {
	color: var(--hb-color-danger);
}

.hb-single-stock--backorder,
.hb-single-stock--low-stock {
	color: var(--hb-color-warning);
}

.hb-single-wishlist {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 48px;
	padding: 0.62rem 0.85rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
	color: var(--hb-color-text);
	font-weight: 800;
}

.hb-single-wishlist.is-active,
.hb-single-wishlist[aria-pressed="true"] {
	border-color: rgba(200, 30, 30, 0.32);
	background: #fdf1ef;
	color: var(--hb-color-danger);
}

.hb-single-meta {
	display: grid;
	gap: 0;
	margin-top: 8px;
	border-top: 1px solid var(--hb-color-border);
	border-bottom: 1px solid var(--hb-color-border);
	font-size: 13px;
}

.hb-single-meta__row {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	align-items: center;
	gap: 0.75rem;
	min-height: 34px;
	padding-block: 6px;
	border-bottom: 1px solid var(--hb-color-border);
}

.hb-single-meta__row:last-child {
	border-bottom: 0;
}

.hb-single-meta__row > span {
	color: var(--hb-color-muted);
	font-weight: 800;
}

.hb-single-meta__row > strong {
	min-width: 0;
	color: var(--hb-color-text);
	font-weight: 850;
}

.hb-single-products-section {
	margin-top: 1.5rem;
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
}

.hb-single-products-section__title {
	margin: 0 0 0.75rem;
	color: var(--hb-color-heading);
	font-size: 1.12rem;
	line-height: 1.2;
}

.hb-product-delivery {
	margin-top: 1.5rem;
}

.hb-product-delivery__list {
	display: grid;
	gap: 0.45rem;
	padding-left: 1.1rem;
	margin: 0.4rem 0 0;
	color: var(--hb-color-muted);
	font-size: 0.92rem;
}

/*
 * Shared accordion look for single-product tabs (Ürün Açıklaması,
 * Özellikler), delivery info (Teslimat) and return policy (İade
 * Koşulları). Native <details>/<summary> — works with no JS.
 */
.hb-accordion-group {
	display: grid;
	gap: 0.6rem;
	margin-top: 1.5rem;
}

.hb-accordion {
	padding: 0 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-surface);
}

.hb-accordion + .hb-accordion {
	margin-top: 0.6rem;
}

.hb-accordion__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 52px;
	padding: 0.6rem 0;
	color: var(--hb-color-heading);
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.hb-accordion__summary::-webkit-details-marker {
	display: none;
}

.hb-accordion__summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--hb-color-primary);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
}

.hb-accordion[open] > .hb-accordion__summary::after {
	content: "\2212";
}

.hb-accordion__body {
	padding-bottom: 1rem;
}

.hb-mobile-product-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 85;
	display: none;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	padding: 0.72rem max(1rem, env(safe-area-inset-right)) calc(0.72rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
	border-top: 1px solid var(--hb-color-border);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -8px 24px rgba(6, 51, 43, 0.08);
}

.hb-mobile-product-bar__price {
	min-width: 0;
	overflow: hidden;
	color: var(--hb-color-heading);
	font-size: 1rem;
	font-weight: 950;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-mobile-product-bar__price del {
	display: none;
}

.hb-mobile-product-bar__price ins {
	text-decoration: none;
}

.hb-mobile-product-bar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.55rem 0.85rem;
	border: 1px solid var(--hb-color-primary);
	border-radius: var(--hb-radius-button);
	background: var(--hb-color-primary);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	white-space: nowrap;
}

.hb-mobile-product-bar__button:disabled {
	border-color: var(--hb-color-border);
	background: var(--hb-color-background-soft);
	color: var(--hb-color-muted);
	cursor: not-allowed;
}

.hb-mobile-product-bar__button.is-loading:disabled {
	position: relative;
	border-color: var(--hb-color-primary);
	background: var(--hb-color-primary);
	color: transparent;
	cursor: wait;
}

.hb-mobile-product-bar__button.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: hb-spin 600ms linear infinite;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(14, 124, 102, 0.32);
	outline-offset: 3px;
}

.hb-button--ghost {
	background: #ffffff;
	border-color: var(--hb-color-border);
	color: var(--hb-color-heading);
}

.hb-button--ghost:hover,
.hb-button--ghost:focus {
	background: var(--hb-color-background-soft);
	border-color: var(--hb-color-border);
	color: var(--hb-color-heading);
}

.hb-page-shell {
	display: grid;
	gap: 1.4rem;
	padding-top: 1.2rem;
	padding-bottom: 2.2rem;
}

.hb-page-hero {
	display: grid;
	gap: 0.75rem;
	padding: 1.1rem 0 0.25rem;
}

.hb-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.38rem;
	color: var(--hb-color-muted);
	font-size: 0.84rem;
}

.hb-breadcrumbs a {
	color: var(--hb-color-muted);
}

.hb-page-hero__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.hb-page-hero__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: clamp(1.65rem, 3vw, 2.45rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.hb-page-hero__description {
	max-width: 760px;
	margin: 0.55rem 0 0;
	color: var(--hb-color-muted);
	font-size: 1rem;
}

.hb-page-content,
.hb-single-post,
.hb-system-panel,
.hb-side-panel {
	padding: 1.2rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	box-shadow: var(--hb-shadow-sm);
}

.hb-system-panel h2,
.hb-side-panel h2 {
	margin: 0 0 0.6rem;
	color: var(--hb-color-heading);
	font-size: 1.15rem;
	line-height: 1.25;
}

.hb-system-panel > p,
.hb-side-panel > p {
	margin: 0 0 1rem;
	color: var(--hb-color-muted);
}

.hb-page-content__media,
.hb-entry__media {
	margin: 0 0 1rem;
	overflow: hidden;
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-background-soft);
}

.hb-page-content__media img,
.hb-entry__media img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.hb-prose {
	color: var(--hb-color-text);
	font-size: 1rem;
	line-height: 1.72;
}

.hb-prose > :first-child {
	margin-top: 0;
}

.hb-prose > :last-child {
	margin-bottom: 0;
}

.hb-prose h2,
.hb-prose h3,
.hb-prose h4 {
	color: var(--hb-color-heading);
	line-height: 1.25;
}

.hb-prose p,
.hb-prose ul,
.hb-prose ol,
.hb-prose blockquote,
.hb-prose table,
.hb-prose pre,
.hb-prose figure {
	margin: 0 0 1rem;
}

.hb-prose ul,
.hb-prose ol {
	padding-left: 1.35rem;
}

.hb-prose li + li {
	margin-top: 0.3rem;
}

.hb-prose blockquote {
	padding: 0.7rem 1rem;
	border-left: 3px solid var(--hb-color-primary);
	border-radius: var(--hb-radius-sm);
	background: var(--hb-color-background-soft);
	color: var(--hb-color-muted);
	font-style: italic;
}

.hb-prose blockquote > :last-child {
	margin-bottom: 0;
}

.hb-prose pre {
	overflow-x: auto;
	padding: 0.85rem 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-background-soft);
}

.hb-prose code {
	padding: 0.1rem 0.35rem;
	border-radius: var(--hb-radius-sm);
	background: var(--hb-color-background-soft);
	font-size: 0.9em;
}

.hb-prose pre code {
	padding: 0;
	background: none;
}

.hb-prose table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.hb-prose th,
.hb-prose td {
	padding: 0.5rem 0.7rem;
	border: 1px solid var(--hb-color-border);
	text-align: left;
}

.hb-prose iframe,
.hb-prose embed,
.hb-prose object,
.hb-prose video {
	max-width: 100%;
}

.hb-prose > .wp-block-embed iframe,
.hb-prose iframe[src*="youtube"],
.hb-prose iframe[src*="vimeo"] {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.hb-prose hr {
	margin: 1.4rem 0;
	border: 0;
	border-top: 1px solid var(--hb-color-border);
}

.hb-page-links,
.hb-post-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.2rem;
}

.hb-empty-state {
	display: grid;
	justify-items: center;
	gap: 0.75rem;
	padding: 2.2rem 1rem;
	border: 1px dashed var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	text-align: center;
}

.hb-empty-state__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--hb-color-primary-soft);
	color: var(--hb-color-primary);
}

.hb-empty-state__title {
	margin: 0;
	color: var(--hb-color-heading);
	font-size: 1.22rem;
}

.hb-empty-state__description {
	max-width: 520px;
	margin: 0;
	color: var(--hb-color-muted);
}

.hb-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hb-blog-card {
	overflow: hidden;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	box-shadow: var(--hb-shadow-sm);
}

.hb-blog-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 10;
	background: var(--hb-color-background-soft);
	color: var(--hb-color-primary);
}

.hb-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hb-blog-card__body {
	display: grid;
	gap: 0.55rem;
	padding: 1rem;
}

.hb-blog-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	color: var(--hb-color-muted);
	font-size: 0.8rem;
}

.hb-blog-card__title {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.28;
}

.hb-blog-card__title a {
	color: var(--hb-color-heading);
}

.hb-blog-card__excerpt {
	margin: 0;
	color: var(--hb-color-muted);
	font-size: 0.92rem;
}

.hb-error-page {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
}

.hb-error-page__code {
	margin: 0 0 0.4rem;
	color: var(--hb-color-primary);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hb-error-page h1 {
	margin: 0 0 0.45rem;
	color: var(--hb-color-heading);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.hb-error-page p {
	max-width: 620px;
	margin: 0;
	color: var(--hb-color-muted);
}

.hb-error-page__search {
	max-width: 620px;
	margin-top: 1rem;
}

.hb-error-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1rem;
}

.hb-error-page__mark {
	display: grid;
	place-items: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: var(--hb-color-primary-soft);
	color: var(--hb-color-primary);
}

.hb-form-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 1rem;
	align-items: start;
}

.hb-form {
	display: grid;
	gap: 1rem;
}

.hb-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.hb-form label:not(.hb-checkbox):not(.hb-auth-remember),
.hb-form .form-row {
	display: grid;
	gap: 0.38rem;
	margin: 0;
	color: var(--hb-color-heading);
	font-size: 0.9rem;
	font-weight: 800;
}

.hb-form input:not([type="checkbox"]),
.hb-form select,
.hb-form textarea,
.hb-help-search input,
.hb-system-panel .input-text,
.hb-system-panel textarea,
.hb-system-panel select {
	width: 100%;
	min-height: 42px;
	padding: 0.62rem 0.72rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: #ffffff;
	color: var(--hb-color-text);
	font-weight: 500;
}

.hb-form textarea {
	min-height: 132px;
	resize: vertical;
}

.hb-form__wide {
	grid-column: 1 / -1;
}

.hb-buyer-application {
	display: grid;
	width: 100%;
	min-width: 0;
}

.hb-buyer-application-form {
	gap: 1.15rem;
}

.hb-buyer-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	width: 100%;
	min-width: 0;
}

.hb-buyer-form-grid__wide {
	grid-column: 1 / -1;
}

.hb-buyer-form-grid input:not([type="checkbox"]):not([type="file"]) {
	min-height: 46px;
	border-radius: var(--hb-radius-lg);
	font-size: 0.9rem;
}

.hb-file-input {
	display: grid;
	gap: 0.38rem;
}

.hb-file-input__label {
	color: var(--hb-color-heading);
	font-size: 0.9rem;
	font-weight: 800;
}

.hb-file-input__control {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0.7rem;
	min-height: 46px;
	padding: 0.35rem 0.55rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: #ffffff;
	overflow: hidden;
}

.hb-file-input__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 0.78rem;
	border-radius: var(--hb-radius-button);
	background: var(--hb-color-primary);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 950;
}

.hb-file-input__name {
	min-width: 0;
	color: var(--hb-color-muted);
	font-size: 0.88rem;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-file-input input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	opacity: 0.01;
}

.hb-file-input__control:focus-within {
	border-color: var(--hb-color-primary);
	box-shadow: 0 0 0 3px var(--hb-color-primary-soft);
}

.hb-buyer-consent {
	max-width: 760px;
}

.hb-buyer-submit {
	width: 100%;
	min-height: 52px;
	justify-content: center;
	text-transform: uppercase;
}

.hb-buyer-submit.is-loading,
.hb-buyer-submit:disabled {
	opacity: 0.7;
	pointer-events: none;
}

.hb-checkbox {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--hb-color-muted);
	font-size: 0.9rem;
	font-weight: 650;
}

.hb-auth-remember {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hb-color-muted);
	font-size: 0.9rem;
	font-weight: 650;
	cursor: pointer;
}

.hb-auth-remember input[type="checkbox"],
.hb-form input[type="checkbox"],
.hb-system-panel input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin: 0;
	padding: 0;
	flex: 0 0 18px;
	vertical-align: middle;
	accent-color: var(--hb-color-primary);
	cursor: pointer;
}

/*
 * Plugin-injected checkbox rows (MailPoet / WooCommerce extensions) must
 * behave like normal inline checkbox labels instead of inheriting the
 * generic grid label layout used by text fields.
 */
.hb-form label:has(input[type="checkbox"]),
.hb-form .form-row:has(input[type="checkbox"]),
.hb-form .woocommerce-form__label-for-checkbox,
.hb-form .mailpoet_checkbox_label,
.hb-form .mailpoet_paragraph:has(input[type="checkbox"]) {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	color: var(--hb-color-muted);
	font-size: 0.9rem;
	font-weight: 650;
	line-height: 1.35;
	cursor: pointer;
}

.hb-form label:has(input[type="checkbox"]) input[type="checkbox"],
.hb-form .form-row:has(input[type="checkbox"]) input[type="checkbox"],
.hb-form .woocommerce-form__label-for-checkbox input[type="checkbox"],
.hb-form .mailpoet_checkbox_label input[type="checkbox"],
.hb-form .mailpoet_paragraph:has(input[type="checkbox"]) input[type="checkbox"] {
	order: 0;
}

.hb-form label:has(input[type="checkbox"]) > span,
.hb-form .woocommerce-form__label-for-checkbox > span,
.hb-form .mailpoet_checkbox_label > span {
	order: 1;
	display: inline;
	margin: 0;
}

.hb-auth-remember span {
	display: inline;
	margin: 0;
}

.hb-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hb-notice {
	padding: 0.78rem 0.9rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-background-soft);
	font-weight: 800;
}

.hb-notice--success {
	border-color: rgba(47, 158, 68, 0.28);
	background: rgba(47, 158, 68, 0.08);
	color: #1c7a34;
}

.hb-notice--error {
	border-color: rgba(200, 30, 30, 0.28);
	background: rgba(200, 30, 30, 0.08);
	color: #9e1c1c;
}

.hb-notice--warning {
	border-color: rgba(217, 164, 32, 0.4);
	background: rgba(217, 164, 32, 0.14);
	color: var(--hb-warning);
}

.hb-step-list {
	display: grid;
	gap: 0.65rem;
	padding-left: 1.2rem;
	margin: 0;
	color: var(--hb-color-muted);
}

.hb-contact-info p {
	display: grid;
	gap: 0.2rem;
	padding-bottom: 0.75rem;
	margin: 0 0 0.75rem;
	border-bottom: 1px solid var(--hb-color-border);
}

.hb-contact-info p:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.hb-contact-info strong {
	color: var(--hb-color-heading);
	font-size: 0.82rem;
}

.hb-map-embed {
	overflow: hidden;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
}

.hb-map-embed iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.hb-help-search {
	display: grid;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
}

.hb-help-search label {
	color: var(--hb-color-heading);
	font-weight: 800;
}

.hb-help-cards,
.hb-address-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
}

.hb-help-card,
.hb-address-card {
	display: grid;
	gap: 0.35rem;
	min-width: 0;
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	box-shadow: var(--hb-shadow-sm);
}

.hb-help-card strong,
.hb-address-card h3 {
	color: var(--hb-color-heading);
	font-weight: 800;
}

.hb-help-card span,
.hb-address-card address {
	color: var(--hb-color-muted);
	font-size: 0.9rem;
	font-style: normal;
}

.hb-section-title-row,
.hb-favorites__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.hb-section-title-row h2,
.hb-favorites__toolbar h2 {
	margin: 0;
}

.hb-favorites__toolbar p,
.hb-favorites__loading {
	margin: 0.25rem 0 0;
	color: var(--hb-color-muted);
}

.hb-faq-list {
	display: grid;
	gap: 0.7rem;
}

.hb-faq-item {
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: #ffffff;
}

.hb-faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 0.9rem 1rem;
	border: 0;
	background: transparent;
	color: var(--hb-color-heading);
	text-align: left;
}

.hb-faq-item__toggle small {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--hb-color-primary);
	font-size: 0.76rem;
	font-weight: 800;
}

.hb-faq-item__toggle strong {
	font-size: 0.98rem;
	line-height: 1.25;
}

.hb-faq-item__panel {
	padding: 0 1rem 1rem;
}

.hb-support-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem;
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-heading);
	color: #ffffff;
}

.hb-support-strip h2,
.hb-support-strip p {
	margin: 0;
	color: #ffffff;
}

.hb-support-strip p {
	color: #cbdbd4;
}

.hb-support-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.hb-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0;
	margin: 0.6rem 0 0;
	list-style: none;
}

.hb-footer__social a {
	display: inline-flex;
	padding: 0.35rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--hb-radius-sm);
	color: #cbdbd4;
	font-size: 0.78rem;
	font-weight: 800;
}

.hb-footer__social a:hover,
.hb-footer__social a:focus {
	border-color: rgba(255, 255, 255, 0.32);
	color: #ffffff;
}

.hb-order-tracking .woocommerce-form-track-order {
	display: grid;
	gap: 0.9rem;
}

.hb-order-tracking .form-row {
	margin: 0;
}

.hb-password-fields {
	display: grid;
	gap: 0.8rem;
	padding: 1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
}

.hb-password-fields legend {
	padding: 0 0.35rem;
	color: var(--hb-color-heading);
	font-weight: 800;
}

.hb-password-input {
	position: relative;
	display: block;
}

.hb-password-input input {
	width: 100%;
	padding-right: 2.6rem;
}

.hb-password-toggle {
	position: absolute;
	top: 0;
	right: 0.35rem;
	bottom: 0;
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin: auto 0;
	padding: 0;
	border: 0;
	border-radius: var(--hb-radius-sm);
	background: transparent;
	color: var(--hb-color-muted);
	line-height: 1;
}

.hb-password-toggle:hover,
.hb-password-toggle:focus {
	background: var(--hb-color-background-soft);
	color: var(--hb-color-heading);
}

.hb-password-toggle::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.hb-password-toggle__icon {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	line-height: 0;
}

.hb-password-toggle__icon .hb-icon,
.hb-password-toggle__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.hb-password-toggle__icon--hide {
	display: none;
}

.hb-password-toggle.is-active .hb-password-toggle__icon--show {
	display: none;
}

.hb-password-toggle.is-active .hb-password-toggle__icon--hide {
	display: inline-grid;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
	display: none;
}

.hb-auth-layout {
	display: grid;
	gap: 1rem;
	max-width: 640px;
	margin-inline: auto;
}

.hb-auth-layout--registration-enabled {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
}

.hb-auth-panel--login,
.hb-auth-panel--register {
	width: 100%;
	min-width: 0;
}

.hb-auth-panel__lost {
	justify-self: start;
	color: var(--hb-color-muted);
	font-weight: 800;
}

.hb-auth-panel__notice {
	margin: 0;
	color: var(--hb-color-muted);
	font-size: 0.85rem;
}

.hb-account-welcome {
	background: linear-gradient(135deg, #ffffff 0%, #eaf5f0 100%);
}

.hb-account-welcome__eyebrow {
	margin: 0 0 0.3rem;
	color: var(--hb-color-primary);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.hb-account-welcome h2 {
	margin: 0 0 0.4rem;
	font-size: 1.6rem;
}

.hb-address-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.hb-address-card h3 {
	margin: 0;
	font-size: 1rem;
}

/* 2.1.7 dealer application page: form-only neutral layout. */
.hb-main--dealer-application {
	background: var(--hb-color-background) !important;
}

.hb-main--dealer-application .tdbb-form-page,
.hb-main--dealer-application .td-bayi-page {
	--tdbb-primary: var(--hb-color-primary) !important;
	--tdbb-bg: var(--hb-color-background) !important;
	width: 100% !important;
	min-height: 0 !important;
	padding: 24px 16px !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-sizing: border-box !important;
}

.hb-main--dealer-application .tdbb-form-shell,
.hb-main--dealer-application .td-bayi-shell {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 1280px !important;
	min-height: 0 !important;
	margin: 0 auto !important;
}

.hb-main--dealer-application .tdbb-brand-panel,
.hb-main--dealer-application .tdbb-welcome,
.hb-main--dealer-application .td-bayi-left,
.hb-main--dealer-application .td-bayi-badge,
.hb-main--dealer-application .td-bayi-logo,
.hb-main--dealer-application .td-bayi-title {
	display: none !important;
}

.hb-main--dealer-application .tdbb-form-panel,
.hb-main--dealer-application .td-bayi-right {
	display: flex !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 28px !important;
	border: 1px solid var(--hb-color-border) !important;
	border-radius: 22px !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	box-shadow: 0 12px 34px rgba(6, 51, 43, 0.08) !important;
	box-sizing: border-box !important;
}

.hb-main--dealer-application .tdbb-form,
.hb-main--dealer-application .td-bayi-form {
	width: 100% !important;
}

.hb-main--dealer-application .tdbb-field b,
.hb-main--dealer-application .tdbb-file-field b,
.hb-main--dealer-application .td-field label span {
	color: var(--hb-color-primary) !important;
}

.hb-main--dealer-application .tdbb-file-button,
.hb-main--dealer-application .tdbb-submit,
.hb-main--dealer-application .td-filebtn,
.hb-main--dealer-application .td-submit {
	background: var(--hb-color-primary) !important;
	background-color: var(--hb-color-primary) !important;
	background-image: none !important;
	color: #ffffff !important;
	box-shadow: 0 14px 24px rgba(14, 124, 102, 0.22) !important;
}

.hb-main--dealer-application .tdbb-file-button:hover,
.hb-main--dealer-application .tdbb-file-button:focus,
.hb-main--dealer-application .tdbb-submit:hover,
.hb-main--dealer-application .tdbb-submit:focus,
.hb-main--dealer-application .td-filebtn:hover,
.hb-main--dealer-application .td-filebtn:focus,
.hb-main--dealer-application .td-submit:hover,
.hb-main--dealer-application .td-submit:focus {
	background: var(--hb-color-primary-hover) !important;
	background-color: var(--hb-color-primary-hover) !important;
	color: #ffffff !important;
}

.hb-main--dealer-application .tdbb-field input:focus,
.hb-main--dealer-application .tdbb-field:focus-within .tdbb-password,
.hb-main--dealer-application .tdbb-file-field:focus-within .tdbb-file-box,
.hb-main--dealer-application .td-field input:focus,
.hb-main--dealer-application .td-field:focus-within .td-pass-wrap,
.hb-main--dealer-application .td-field:focus-within .td-file-trigger {
	border-color: var(--hb-color-primary) !important;
	box-shadow: 0 0 0 4px var(--hb-color-primary-soft) !important;
}

/*
 * Touch sizing for the plugin's own fields/buttons. Scoped generically
 * (input/select/textarea/button) since the exact markup of a third-party
 * form can't be inspected without the plugin installed — this is a safe,
 * best-effort baseline layered on top of the plugin's own styles.
 */
.hb-main--dealer-application input:not([type="checkbox"]):not([type="radio"]),
.hb-main--dealer-application select,
.hb-main--dealer-application textarea,
.hb-main--dealer-application .tdbb-file-box,
.hb-main--dealer-application .td-file-trigger {
	min-height: 48px !important;
	font-size: 16px !important;
}

.hb-main--dealer-application .tdbb-submit,
.hb-main--dealer-application .td-submit {
	min-height: 52px !important;
	font-size: 1rem !important;
	font-weight: 800 !important;
}

.hb-main--dealer-application .tdbb-file-button,
.hb-main--dealer-application .td-filebtn {
	min-height: 44px !important;
}

.hb-main--dealer-application button:disabled,
.hb-main--dealer-application .tdbb-submit:disabled,
.hb-main--dealer-application .td-submit:disabled,
.hb-main--dealer-application button[aria-disabled="true"] {
	opacity: 0.65 !important;
	pointer-events: none !important;
}

@media (max-width: 720px) {
	.hb-main--dealer-application .tdbb-form-page,
	.hb-main--dealer-application .td-bayi-page {
		padding: 12px !important;
	}

	.hb-main--dealer-application .tdbb-form-panel,
	.hb-main--dealer-application .td-bayi-right {
		padding: 18px !important;
		border-radius: 16px !important;
	}

	.hb-main--dealer-application .tdbb-submit,
	.hb-main--dealer-application .td-submit {
		width: 100% !important;
	}
}

/*
 * v2.5.0: iyzico-readiness legal UI — company info blocks, checkout
 * agreements, official payment logos, dynamic contract documents, cookie
 * consent banner, and the İptal/İade order-view snapshot section.
 */
.hb-home-cta__link {
	display: inline-flex;
	align-items: center;
	color: var(--hb-color-muted);
	font-weight: 800;
	text-decoration: underline;
}

.hb-legal-company-block {
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--hb-color-border);
}

.hb-legal-company-block h2 {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
}

.hb-legal-company-block__list {
	display: grid;
	gap: 0.5rem;
	margin: 0;
}

.hb-legal-company-block__row {
	display: grid;
	grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
	gap: 0.75rem;
	padding: 0.4rem 0;
	border-bottom: 1px dashed var(--hb-color-border);
}

.hb-legal-company-block__row dt {
	color: var(--hb-color-muted);
	font-weight: 800;
	font-size: 0.88rem;
}

.hb-legal-company-block__row dd {
	margin: 0;
	color: var(--hb-color-text);
	font-size: 0.92rem;
}

.hb-legal-page {
	margin-top: 1.4rem;
}

.hb-legal-document .hb-prose h2 {
	margin-top: 1.6rem;
	font-size: 1.1rem;
}

.hb-legal-doc-table {
	width: 100%;
	margin: 0.75rem 0;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.hb-legal-doc-table th,
.hb-legal-doc-table td {
	padding: 0.5rem 0.65rem;
	border: 1px solid var(--hb-color-border);
	text-align: left;
}

.hb-legal-order-documents {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--hb-color-border);
}

.hb-legal-order-documents__meta {
	color: var(--hb-color-muted);
	font-size: 0.88rem;
}

/* Checkout: the two required agreement checkboxes + payment-obligation notice. */
.hb-legal-checkout-agreements {
	display: grid;
	gap: 0.6rem;
	margin: 0.9rem 0;
	padding: 0.9rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-md);
	background: var(--hb-color-background-soft);
}

.hb-legal-checkbox {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.55rem;
	align-items: start;
	font-size: 0.88rem;
	font-weight: 700;
}

.hb-legal-checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 0.15rem;
	accent-color: var(--hb-color-primary);
}

.hb-legal-checkbox a {
	color: var(--hb-color-primary-dark);
	text-decoration: underline;
}

.hb-legal-payment-notice {
	margin: 0;
	padding-top: 0.5rem;
	border-top: 1px dashed var(--hb-color-border);
	color: var(--hb-color-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

/* Official payment logos — real uploaded images only, or a plain text placeholder. */
.hb-payment-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
	margin: 0.75rem 0;
}

.hb-payment-logos__item {
	display: block;
	height: 28px;
	width: auto;
	max-width: 84px;
	object-fit: contain;
}

.hb-payment-logos__placeholder {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 0.6rem;
	border: 1px dashed var(--hb-color-border);
	border-radius: var(--hb-radius-sm);
	color: var(--hb-color-muted);
	font-size: 0.76rem;
	font-weight: 800;
	white-space: nowrap;
}

.hb-footer .hb-payment-logos__placeholder {
	border-color: rgba(255, 255, 255, 0.24);
	color: #93aaa1;
}

/*
 * v2.5.0: no filter/invert here — an official logo's own colors must never
 * be altered, even to fit a dark footer better. A small white chip behind it
 * keeps it legible on the dark ink background instead.
 */
.hb-footer .hb-payment-logos__item {
	padding: 4px 8px;
	border-radius: 10px;
	background: #ffffff;
}

/* Cookie consent banner. */
.hb-cookie-banner {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 130;
	display: grid;
	gap: 0.75rem;
	max-width: 560px;
	margin: 0 auto;
	padding: 1rem 1.1rem;
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius-lg);
	background: var(--hb-color-surface);
	box-shadow: var(--hb-shadow-lg);
}

.hb-cookie-banner[hidden] {
	display: none;
}

.hb-cookie-banner__text {
	margin: 0;
	color: var(--hb-color-text);
	font-size: 0.86rem;
	line-height: 1.5;
}

.hb-cookie-banner__text a {
	color: var(--hb-color-primary-dark);
	text-decoration: underline;
}

.hb-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.hb-cookie-banner__actions .hb-button {
	flex: 1 1 auto;
	min-height: 42px;
	font-size: 0.86rem;
}
