/* Header navigation layer: desktop dropdown + mobile drawer */
.kd-header-top {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 8px;
}

.kd-logo {
	flex: 0 0 auto;
	min-width: 0;
}

.kd-logo-link {
	min-height: 48px;
	padding: 0 12px;
}

.kd-logo img,
.kd-logo-image {
	display: block;
	height: 42px;
	width: auto;
	max-width: none;
	object-fit: contain;
}

.kd-tabs {
	flex: 1;
	min-width: 0;
	display: flex;
	overflow-x: auto;
	gap: 10px;
}

.kd-tabs-scroll {
	display: flex;
	align-items: center;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 0;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.kd-tab {
	min-height: 40px;
	padding: 0 12px;
	font-size: 13px;
	transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
	will-change: transform;
}

.kd-tab:active {
	transform: scale(0.98);
}

.kd-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--kd-inactive);
	background: var(--kd-light);
	color: var(--kd-dark);
}
.kd-menu-toggle i {
	font-size: 20px;
	line-height: 1;
}

.kd-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kd-menu-list > .menu-item {
	position: relative;
}

.kd-menu-list .menu-item > a,
.kd-menu-list .menu-item > .kd-mega-parent-toggle {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	text-decoration: none;
}

.kd-menu-list .menu-item > .kd-mega-parent-toggle {
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--kd-dark);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.kd-menu-list .menu-item.has-children > a i,
.kd-menu-list .menu-item.has-children > .kd-mega-parent-toggle i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.kd-menu-list .submenu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 220px;
	padding: 8px;
	border: 1px solid var(--kd-inactive);
	border-radius: 14px;
	background: var(--kd-light);
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
	z-index: 65;
}

.kd-menu-list .submenu .menu-item > a {
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14px;
	min-height: 44px;
}

.kd-menu-list .submenu .menu-item > a:hover {
	background: var(--kd-bg);
}

.kd-account {
	position: relative;
	flex: 0 0 auto;
}

.kd-account-menu {
	position: relative;
}

.kd-account-trigger {
	min-height: 40px;
	/* padding: 0 12px; */
	display: inline-flex;
	align-items: center;
	gap: 8px;
	/* border: 1px solid var(--kd-inactive);
	border-radius: 10px;
	background: var(--kd-light);*/
	color: var(--kd-dark);
	font-size: 14px; 
	line-height: 1;
	cursor: pointer;
	appearance: none;
	user-select: none;
	font-weight: 500;
}

.kd-account-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.kd-account-label {
	max-width: 160px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kd-account-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	transition: transform 0.2s ease;
}

.kd-account-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	min-width: 190px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid var(--kd-inactive);
	border-radius: 12px;
	background: var(--kd-light);
	box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
	z-index: 70;
}

/* Hover bridge so pointer can move from trigger to dropdown without closing it */
.kd-account-dropdown::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -8px;
	height: 8px;
}

.kd-account-dropdown li + li {
	margin-top: 4px;
}

.kd-account-dropdown a {
	display: block;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none;
	color: var(--kd-dark);
}

.kd-account-dropdown a:hover,
.kd-account-dropdown a:focus-visible {
	background: var(--kd-bg);
	outline: none;
}

.kd-account-otp-action {
	width: 100%;
	display: block;
	padding: 9px 10px;
	border: 0;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.3;
	text-align: left;
	background: transparent;
	color: var(--kd-dark);
	cursor: pointer;
}

.kd-account-otp-action:hover,
.kd-account-otp-action:focus-visible {
	background: var(--kd-bg);
	outline: none;
}

@media (hover: hover) {
	.kd-account-menu:hover .kd-account-dropdown,
	.kd-account-menu:focus-within .kd-account-dropdown {
		display: block;
		animation: kdMenuFade 0.2s ease;
	}

	.kd-account-menu:hover .kd-account-chevron,
	.kd-account-menu:focus-within .kd-account-chevron {
		transform: rotate(180deg);
	}
}

@media (hover: none) {
	.kd-account-menu:focus-within .kd-account-dropdown {
		display: block;
	}

	.kd-account-menu:focus-within .kd-account-chevron {
		transform: rotate(180deg);
	}
}

@media (min-width: 768px) {
	.kd-menu-list .submenu {
		display: block;
		top: 100%;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(8px);
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	}

	/* Bridge area prevents hover loss while moving cursor into dropdown */
	.kd-menu-list .submenu::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: -10px;
		height: 10px;
	}
}

@media (min-width: 768px) and (hover: hover) {
	.kd-menu-list > .menu-item.has-children:hover > .submenu,
	.kd-menu-list > .menu-item.has-children:focus-within > .submenu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.kd-menu-list > .menu-item.has-children:hover > a i,
	.kd-menu-list > .menu-item.has-children:focus-within > a i {
		transform: rotate(180deg);
	}
}

.kd-mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, 0.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 79;
}

.kd-mobile-menu-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.kd-mobile-menu {
	position: fixed;
	left: 0;
	top: 0;
	width: min(80%, 360px);
	height: 100%;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	background: var(--kd-light);
	border-top-right-radius: 18px;
	border-bottom-right-radius: 18px;
	box-shadow: 14px 0 34px rgba(2, 6, 23, 0.2);
	z-index: 80;
	display: flex;
	flex-direction: column;
}

.kd-mobile-menu.active {
	transform: translateX(0);
}

.kd-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 14px 10px;
	border-bottom: 1px solid var(--kd-inactive);
}

.kd-menu-title {
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--kd-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kd-menu-close {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px solid var(--kd-inactive);
	background: var(--kd-bg);
	color: var(--kd-dark);
}

.kd-menu-close i {
	font-size: 18px;
	line-height: 1;
}

.kd-menu-close .svg-inline--fa {
	font-size: 18px;
	line-height: 1;
}

.kd-mobile-menu-nav {
	padding: 10px 10px 18px;
	overflow-y: auto;
	flex: 1;
}

.kd-mobile-menu-list,
.kd-mobile-menu-list .submenu {
	display: block;
	position: static;
	box-shadow: none;
	border: 0;
	min-width: 0;
	padding: 0;
	background: transparent;
}

.kd-mobile-menu-list > .menu-item > a,
.kd-mobile-menu-list > .menu-item > .kd-mega-parent-toggle {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
}

.kd-mobile-menu-list > .menu-item > .kd-mega-parent-toggle {
	border: 0;
	background: transparent;
	color: var(--kd-dark);
	cursor: pointer;
}

.kd-mobile-menu-list > .menu-item.current-menu-item > a,
.kd-mobile-menu-list > .menu-item.current-menu-ancestor > a {
	background: var(--kd-bg);
}

.kd-mobile-menu-list > .menu-item + .menu-item {
	margin-top: 6px;
}

.kd-mobile-menu-list .submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	margin-left: 8px;
}

.kd-mobile-menu-list .submenu .menu-item > a {
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 500;
}

.kd-mobile-menu-list .menu-item.is-open > .submenu {
	max-height: 500px;
}

.kd-mobile-menu-list .menu-item.is-open > a i {
	transform: rotate(180deg);
}

.kd-mobile-menu-list .menu-item.is-open > .kd-mega-parent-toggle i {
	transform: rotate(180deg);
}

body.kd-menu-open {
	overflow: hidden;
	touch-action: none;
}

@keyframes kdMenuFade {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.kd-auth-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, 0.46);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease;
	z-index: 85;
}

.kd-auth-drawer-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.kd-auth-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 94vw);
	height: 100%;
	background: #fff;
	box-shadow: -16px 0 32px rgba(2, 6, 23, 0.24);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	z-index: 86;
	display: flex;
	flex-direction: column;
}

.kd-auth-drawer.is-open {
	transform: translateX(0);
}

.kd-auth-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--kd-inactive);
}

.kd-auth-drawer-head h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
}

.kd-auth-drawer-close {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--kd-inactive);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}

.kd-auth-drawer-body {
	padding: 14px;
	overflow-y: auto;
	flex: 1;
}

body.kd-auth-drawer-open {
	overflow: hidden;
	touch-action: none;
}

.kd-auth-drawer .kd-otp-card {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.kd-auth-drawer .kd-otp-card h3 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
}

.kd-auth-drawer .kd-otp-card p {
	margin: 0 0 12px;
	color: #4b5563;
	font-size: 13px;
}

.kd-auth-drawer .kd-otp-row {
	display: grid;
	gap: 8px;
	margin-bottom: 10px;
}

.kd-auth-drawer .kd-otp-row label {
	font-size: 12px;
	font-weight: 600;
	color: #334155;
}

.kd-auth-drawer .kd-otp-phone-wrap {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 8px;
}

.kd-auth-drawer .kd-otp-country,
.kd-auth-drawer .kd-otp-row input,
.kd-auth-drawer .kd-otp-row select {
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 10px;
	font-size: 14px;
	background: #fff;
	width: 100%;
	box-sizing: border-box;
}

.kd-auth-drawer .kd-otp-row select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
	cursor: pointer;
}

.kd-auth-drawer .kd-otp-country {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.kd-auth-drawer .kd-otp-btn {
	appearance: none;
	border: 0;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 700;
	background: #111827;
	color: #fff;
	cursor: pointer;
}

.kd-auth-drawer .kd-otp-btn[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.kd-auth-drawer .kd-otp-status {
	min-height: 20px;
	margin: 6px 0 0;
	font-size: 12px;
	font-weight: 600;
}

.kd-auth-drawer .kd-otp-status.is-error {
	color: #b91c1c;
}

.kd-auth-drawer .kd-otp-status.is-success {
	color: #15803d;
}

/* 6-digit OTP input grid */
.kd-auth-drawer .kd-otp-digits {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

.kd-auth-drawer .kd-otp-digit {
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 2px solid #d1d5db;
	border-radius: 10px;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	color: #111827;
	background: #fff;
	padding: 0;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-moz-appearance: textfield;
	appearance: textfield;
}

.kd-auth-drawer .kd-otp-digit::-webkit-outer-spin-button,
.kd-auth-drawer .kd-otp-digit::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.kd-auth-drawer .kd-otp-digit:focus {
	border-color: #111827;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.kd-auth-drawer .kd-otp-digit:not(:placeholder-shown) {
	border-color: #374151;
}

/* Phone disabled state */
.kd-auth-drawer #kd-otp-phone:disabled {
	background: #f3f4f6;
	color: #6b7280;
	cursor: not-allowed;
}

/* Change number link */
.kd-auth-drawer .kd-otp-change-number {
	display: inline-block;
	margin-top: 2px;
	font-size: 12px;
	font-weight: 600;
	color: #2563eb;
	text-decoration: none;
}

.kd-auth-drawer .kd-otp-change-number:hover {
	text-decoration: underline;
}

/* Mobile number verified notice */
.kd-auth-drawer .kd-otp-verified-notice {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	margin-bottom: 12px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #15803d;
}

.kd-auth-drawer .kd-otp-verified-notice i {
	font-size: 15px;
}

@media (min-width: 768px) {
	.kd-menu-toggle,
	.kd-mobile-menu,
	.kd-mobile-menu-overlay {
		display: none;
	}
}

@media (max-width: 767px) {
	.kd-logo img,
	.kd-logo-image {
		height: 48px;
	}

	.kd-menu-list {
    	display: block !important;
	}

	.kd-header-contact {
		display: none;
	}

	.kd-menu {
		display: none;
	}
}

/* Mobile Flipkart-style header redesign (max-width: 768px) */
@media (max-width: 768px) {
	.kd-header {
		background: linear-gradient(180deg, var(--kd-header-gradient-start, #4facfe), var(--kd-header-gradient-end, #00f2fe));
	}

	.kd-header-inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	/* Row 1: Logo + Tabs */
	.kd-header-top {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 0px;
		/* background: linear-gradient(135deg, var(--kd-header-gradient-start, #4facfe), var(--kd-header-gradient-end, #00f2fe)); */
	}

	.kd-logo {
		flex: 0 0 auto;
		min-width: 0;
	}

	.kd-logo-link {
		min-height: 44px;
		padding: 0 8px;
		display: flex;
		align-items: center;
	}

	.kd-logo img,
	.kd-logo-image {
		display: block;
		height: 44px;
		width: auto;
		max-width: 120px;
		object-fit: contain;
	}

	.kd-logo-text {
		font-size: 16px;
		font-weight: 700;
		color: white;
		white-space: nowrap;
	}

	/* Tabs: Pill-style buttons */
	.kd-tabs {
		flex: 1;
		min-width: 0;
		display: flex;
		overflow-x: auto;
		gap: 6px;
		padding: 0;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		overscroll-behavior-x: contain;
		height: 44px;
        margin-top: -5px;
	}

	.kd-tabs::-webkit-scrollbar {
		display: none;
	}

	.kd-tabs-scroll {
		display: flex;
		align-items: center;
		gap: 6px;
		overflow-x: auto;
		padding: 0;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.kd-tabs-scroll::-webkit-scrollbar {
		display: none;
	}

	.kd-tab {
		min-height: 36px;
		padding: 6px 12px;
		font-size: 12px;
		font-weight: 500;
		white-space: nowrap;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.95);
		color: var(--kd-dark, #111827);
		border: 1px solid rgba(255, 255, 255, 0.8);
		text-decoration: none;
		transition: background-color 0.2s ease, color 0.2s ease, transform 0.18s ease;
		will-change: transform;
		flex: 0 0 auto;
	}

	.kd-tab:active {
		transform: scale(0.96);
	}

	.kd-tab.is-active,
	.kd-tab[aria-current="page"] {
		background: var(--kd-active, #2563eb);
		color: white;
		border-color: var(--kd-active, #2563eb);
	}

	.kd-tab i {
		font-size: 12px;
		line-height: 1;
		margin-right: 4px;
	}

	.kd-header-contact {
		display: inline-flex;
		align-items: center;
		gap: 14px;
		margin-left: auto;
		flex: 0 0 auto;
	}

	.kd-header-contact a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		color: #ffffff;
		text-decoration: none;
		line-height: 1;
	}

	.kd-header-contact a i {
		font-size: 17px;
		line-height: 1;
		font-weight: 300;
	}

	.kd-header-contact .kd-contact-text {
		display: none;
	}

	/* Row 2: Search + Cart + Menu */
	.kd-header-bottom {
		display: flex;
		align-items: center;
		gap: 6px;
		padding: 0px;
		/* background: linear-gradient(135deg, var(--kd-header-gradient-start, #4facfe), var(--kd-header-gradient-end, #00f2fe)); */
	}

	.kd-search {
		flex: 1;
		min-width: 0;
	}

	/* Style search input for mobile */
	.kd-search input[type="text"],
	.kd-search input[type="search"] {
		width: 100%;
		height: 36px;
		padding: 6px 12px;
		border-radius: 18px;
		border: 2px solid rgba(255, 255, 255, 0.8);
		background: rgba(255, 255, 255, 0.95);
		color: var(--kd-dark, #111827);
		font-size: 13px;
	}

	.kd-search input[type="text"]::placeholder,
	.kd-search input[type="search"]::placeholder {
		color: rgba(17, 24, 39, 0.5);
	}

	.kd-menu-toggle {
		flex: 0 0 auto;
		width: 36px;
		height: 36px;
		border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.8);
		background: rgba(255, 255, 255, 0.95);
		color: var(--kd-dark, #111827);
	}

	.kd-menu-toggle i {
		font-size: 16px;
		line-height: 1;
	}

	.kd-menu {
		display: none;
	}

	.kd-cart {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
	}

	.kd-account-trigger {
		width: 36px;
		height: 36px;
		min-height: 36px;
		padding: 0;
		justify-content: center;
		border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.8);
		background: rgba(255, 255, 255, 0.95);
		color: var(--kd-dark, #111827);
	}

	.kd-account-label,
	.kd-account-chevron {
		display: none;
	}

	.kd-account-icon {
		font-size: 15px;
	}

	.kd-account-dropdown {
		right: 0;
		min-width: 170px;
	}

	.kd-cart-button {
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.8);
		background: rgba(255, 255, 255, 0.95);
		color: var(--kd-dark, #111827);
		font-size: 16px;
		text-decoration: none;
		cursor: pointer;
		position: relative;
		transition: background-color 0.2s ease;
	}

	.kd-cart-button:active {
		opacity: 0.8;
	}

	.kd-cart-icon {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.kd-cart-icon i {
		font-size: 16px;
		line-height: 1;
	}

	.kd-cart-text,
	.kd-cart-count {
		display: none;
	}

	.kd-cart-count.woovue-cart-count {
		display: flex;
		position: absolute;
		top: -4px;
		right: -4px;
		width: 18px;
		height: 18px;
		background: var(--kd-accent, #f59e0b);
		color: white;
		border-radius: 50%;
		font-size: 10px;
		line-height: 1;
		align-items: center;
		justify-content: center;
		font-weight: 700;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kd-tab,
	.kd-mobile-menu,
	.kd-mobile-menu-overlay,
	.kd-mobile-menu-list .submenu {
		transition: none;
	}

	.kd-tabs-scroll {
		scroll-behavior: auto;
	}
}




/* From main.css */
/* Two-row header: PHP SSR + Vue enhancements */
.kd-header{position:sticky;top:0;z-index:60;background:var(--kd-bg);border-bottom:1px solid var(--kd-inactive)}
.kd-header-inner{position:relative;max-width:1280px;margin:0 auto;padding:8px 12px}
.kd-header-top,.kd-header-bottom{display:flex;align-items:center;gap:10px}
.kd-header-top{padding-bottom:8px}
.kd-logo{flex-shrink:0}
.kd-logo-link{display:inline-flex;align-items:center;justify-content:center;height:40px;min-width:120px;padding:0 14px;background:var(--kd-logo-tab-bg)!important;border-radius:12px;color:var(--kd-dark);font-weight:700}
.kd-logo-image{display:block;width:var(--kd-logo-width)!important;height:var(--kd-logo-height)!important;max-width:none;object-fit:contain}
.kd-logo-text{font-size:18px;line-height:1}
.kd-tabs{flex:1;min-width:0}
.kd-header-contact{display:flex;align-items:center;gap:8px;flex-shrink:0}
.kd-header-contact a{display:inline-flex;align-items:center;gap:6px;color:var(--kd-dark);font-size:17px;font-weight:500;line-height:1;text-decoration:none}
.kd-header-contact a i{display:inline-flex;align-items:center;justify-content:center;font-size:17px;line-height:1}
.kd-contact-text{display:none}
.kd-tabs-scroll{display:flex;gap:8px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.kd-tabs-scroll::-webkit-scrollbar{display:none}
.kd-tab{display:inline-flex;align-items:center;justify-content:center;gap:7px;white-space:nowrap;min-height:36px;padding:0 16px;border-radius:10px;background:var(--kd-inactive);color:var(--kd-dark);font-size:14px;font-weight:600;border:1px solid transparent}
.kd-tab.is-active{background:var(--kd-active);border-color:var(--kd-active);color:var(--kd-light)}
.kd-search{flex:1;min-width:0;position:relative}
.kd-menu{display:none}
.kd-menu-list{display:flex;align-items:center;gap:14px}
.kd-menu-list a{font-size:14px;font-weight:500;color:var(--kd-dark);display:inline-flex;align-items:center;gap:6px}
.kd-cart{flex-shrink:0}
.kd-cart-button{display:inline-flex;align-items:center;gap:6px;position:relative;padding:8px 10px;border-radius:8px;background:var(--kd-light);border:1px solid var(--kd-inactive)}
.kd-cart-icon{width:20px;height:20px;color:var(--kd-dark);display:inline-flex;align-items:center;justify-content:center}
.kd-cart-icon svg{width:100%;height:100%}
.kd-cart-icon i{font-size:18px}
.kd-cart-text{display:none;font-size:14px;font-weight:600;color:var(--kd-dark)}
.kd-cart-count{position:absolute;top:-7px;right:-7px;display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:18px;padding:0 5px;border-radius:999px;background:var(--kd-accent);color:var(--kd-light);font-size:11px;font-weight:700;line-height:1}

.kd-live-search{position:relative;z-index:45}
.kd-live-search-input-wrap{position:relative;z-index:47;display:flex;align-items:center;height:42px;padding:0 12px;background:var(--kd-light);border:2px solid var(--kd-primary);border-radius:10px}
.kd-live-search-icon{width:18px;height:18px;color:var(--kd-secondary);flex-shrink:0;display:inline-flex;align-items:center;justify-content:center}
.kd-live-search-icon svg{width:100%;height:100%}
.kd-live-search-icon i{font-size:16px}
.kd-live-search-input{width:100%;padding:0 0 0 10px;border:0;background:transparent;font-size:16px;line-height:1.2;color:var(--kd-dark);outline:none}
.kd-live-search-input::-webkit-search-cancel-button,.kd-live-search-input::-webkit-search-decoration{-webkit-appearance:none;appearance:none}
.kd-live-search-clear{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;margin-left:6px;padding:0;border:0;border-radius:50%;background:transparent;color:var(--kd-secondary);cursor:pointer;flex-shrink:0;transition:background .15s,color .15s}
.kd-live-search-clear:hover,.kd-live-search-clear:focus{background:var(--kd-bg);color:var(--kd-dark);outline:none}
.kd-live-search-clear i{font-size:14px;line-height:1}
.kd-live-search-results{position:absolute;top:calc(100% + 6px);left:0;right:0;background:var(--kd-light);border:1px solid var(--kd-inactive);border-radius:12px;box-shadow:0 14px 35px #0000001a;max-height:70vh;overflow:auto;z-index:46}
.kd-live-search-results.is-grid{display:grid;grid-template-columns:1fr 1fr;gap:0}
.kd-live-search-results.is-grid .kd-search-result-item{border-right:1px solid var(--kd-inactive)}
.kd-live-search-results.is-grid .kd-search-result-item:nth-child(2n){border-right:0}
.kd-search-state{padding:14px;color:var(--kd-secondary);font-size:14px;text-align:center}
.kd-search-result-item{display:flex;align-items:flex-start;gap:10px;padding:10px 12px;border-bottom:1px solid var(--kd-inactive);background:var(--kd-light)}
.kd-search-result-item:last-child{border-bottom:0}
.kd-search-result-image{width:42px;height:42px;border-radius:8px;object-fit:cover;background:var(--kd-bg);flex-shrink:0}
.kd-search-result-body{min-width:0;flex:1}
.kd-search-result-name{font-size:14px;font-weight:600;color:var(--kd-dark);line-height:1.3;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.kd-search-result-price{font-size:13px;color:var(--kd-primary);margin-top:2px}
.kd-search-result-category{font-size:12px;color:var(--kd-secondary);margin-top:2px}
.kd-live-search-view-all{position:sticky;bottom:0;display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:12px 14px;background:var(--kd-primary);color:var(--kd-light);font-size:13px;font-weight:700;text-align:center;border-top:1px solid var(--kd-inactive);text-decoration:none}
.kd-live-search-view-all:hover,.kd-live-search-view-all:focus{background:var(--kd-accent);color:var(--kd-light)}
.kd-live-search-view-all i{font-size:12px}
.kd-live-search-backdrop{position:fixed;inset:0;z-index:44}

.kd-cart-drawer-root{position:fixed;inset:0;z-index:1000000}
.kd-cart-drawer-overlay{position:absolute;inset:0;background:#00000059}
.kd-cart-drawer-panel{position:absolute;top:0;bottom:0;width:min(88vw,360px);background:var(--kd-light);display:flex;flex-direction:column;transition:transform .24s ease;will-change:transform}
.kd-cart-left{left:0;transform:translateX(-100%);box-shadow:10px 0 24px #0000002e}
.kd-cart-right{right:0;transform:translateX(100%);box-shadow:-10px 0 24px #0000002e}
.kd-cart-drawer-panel.active{transform:translateX(0)}
.kd-cart-drawer-header{height:56px;padding:0 14px;border-bottom:1px solid var(--kd-inactive);display:flex;align-items:center;justify-content:space-between}
.kd-cart-drawer-header h2{font-size:16px;font-weight:700;color:var(--kd-dark)}
.kd-cart-drawer-close{width:34px;height:34px;padding:6px;border-radius:8px;color:var(--kd-dark);display:inline-flex;align-items:center;justify-content:center}
.kd-cart-drawer-close i{font-size:16px}
.kd-cart-drawer-content{flex:1;overflow:auto}
.kd-cart-empty{display:flex;flex-direction:column;align-items:center;gap:10px;padding:40px 18px;color:var(--kd-secondary);text-align:center}
.kd-cart-empty i{color:var(--kd-primary)}
.kd-cart-empty p{font-size:14px;color:var(--kd-dark)}
.kd-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:10px;background:var(--kd-primary);color:var(--kd-light);font-size:13px;font-weight:700}
.kd-cart-items{padding:10px 12px;display:flex;flex-direction:column;gap:12px}
.kd-cart-item{display:flex;gap:10px}
.kd-cart-item-image{width:64px;height:64px;border-radius:10px;object-fit:cover;background:var(--kd-bg);flex-shrink:0}
.kd-cart-item-body{min-width:0;flex:1}
.kd-cart-item-name{font-size:14px;font-weight:600;color:var(--kd-dark);line-height:1.3;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.kd-cart-item-qty{font-size:12px;color:var(--kd-secondary);margin-top:2px}
.kd-cart-item-subtotal{font-size:13px;color:var(--kd-primary);margin-top:3px}
.kd-cart-drawer-footer{border-top:1px solid var(--kd-inactive);padding:12px}
.kd-cart-subtotal-row{display:flex;align-items:center;justify-content:space-between;font-size:14px;font-weight:600;color:var(--kd-dark);margin-bottom:10px}
.kd-cart-checkout-btn{display:block;width:100%;padding:11px 10px;border-radius:10px;background:var(--kd-primary);color:var(--kd-light);font-size:14px;font-weight:700;text-align:center}

@media (min-width:768px){
.kd-header-inner{padding:10px 16px}
.kd-header-bottom{gap:16px}
.kd-menu{display:block;flex-shrink:0}
.kd-cart-text{display:inline}
.kd-header-contact{gap:12px}
.kd-header-contact a{font-size:14px;}
.kd-header-contact a i{font-size:17px}
.kd-contact-text{display:inline}
.kd-live-search-input{font-size:15px}
.kd-live-search-results{max-height:430px}
}

/* Mobile header gradient override (must come after the merged main.css
   `.kd-header{background:var(--kd-bg)}` rule above so the gradient wins). */
@media (max-width: 768px) {
	.kd-header,
	header.kd-header {
		background: linear-gradient(180deg, var(--kd-header-gradient-start, #4facfe), var(--kd-header-gradient-end, #00f2fe)) !important;
	}

	.kd-header-contact a {
		 color: var(--kd-light) !important;
		 font-size: 20px !important;
	}

	form.kd-live-search-input-wrap {
		background: #fff !important;
	}
}

/* ───────────────────────────────────────────────────────────────────────
   Header Tabs Drawer (mobile only)
   - On desktop: trigger button hidden, horizontal scroll tabs visible.
   - On mobile : horizontal scroll hidden, trigger button shown; clicking
                 it slides a left drawer with the same tabs as a list.
   ─────────────────────────────────────────────────────────────────────── */
.kd-tabs-trigger { display: none; }

.kd-tabs-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 1100;
}
.kd-tabs-drawer-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.kd-tabs-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(86vw, 320px);
	background: #ffffff;
	color: var(--kd-dark, #111827);
	box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
	transform: translateX(-100%);
	transition: transform 0.25s ease;
	z-index: 1101;
	display: flex;
	flex-direction: column;
	visibility: hidden;
}
.kd-tabs-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
}

.kd-tabs-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--kd-inactive, #e5e7eb);
}
.kd-tabs-drawer-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--kd-dark, #111827);
}
.kd-tabs-drawer-close {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: var(--kd-dark, #111827);
	font-size: 18px;
	cursor: pointer;
	border-radius: 8px;
}
.kd-tabs-drawer-close:hover { background: rgba(0, 0, 0, 0.05); }

.kd-tabs-drawer-list {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 8px 0;
	display: flex;
	flex-direction: column;
}
.kd-tabs-drawer-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: var(--kd-dark, #111827);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	min-height: 48px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.kd-tabs-drawer-item:active { background: rgba(0, 0, 0, 0.05); }
.kd-tabs-drawer-item.is-active {
	color: var(--kd-active, #2563eb);
	font-weight: 700;
}
.kd-tabs-drawer-item-label { flex: 1 1 auto; min-width: 0; }
.kd-tabs-drawer-item-chevron {
	font-size: 12px;
	opacity: 0.5;
}

body.kd-tabs-drawer-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.kd-tabs {
		flex: 0 0 auto;
		overflow: visible;
	}
	/* Hide the inline horizontal tab strip; replace with trigger button. */
	.kd-tabs > .kd-tabs-scroll { display: none !important; }

	.kd-tabs-trigger {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		min-height: 36px;
		padding: 6px 12px;
		font-size: 12px;
		font-weight: 600;
		border-radius: 11px;
		background: rgba(255, 255, 255, 0.95);
		color: var(--kd-dark, #111827);
		border: 1px solid rgba(255, 255, 255, 0.8);
		cursor: pointer;
		flex: 0 0 auto;
	}
	.kd-tabs-trigger i { font-size: 13px; line-height: 1; }
	.kd-tabs-trigger:active { transform: scale(0.96); }
}

@media (min-width: 769px) {
	/* Drawer is mobile-only; hard-disable on desktop. */
	.kd-tabs-drawer,
	.kd-tabs-drawer-overlay { display: none !important; }
}

/* ───────────────────────────────────────────────────────────────────────
   Live search suggestions:
   - Desktop: dropdown matches the search input column width (default
     absolute positioning inside .kd-live-search / .kd-search parent).
   - Mobile : spans the full viewport width, anchored to the bottom edge
     of the search input via a JS-set CSS var (--kd-search-dropdown-top).
   ─────────────────────────────────────────────────────────────────────── */
.kd-search { position: relative; }

@media (max-width: 768px) {
	.kd-live-search-results {
		position: fixed;
		top: var(--kd-search-dropdown-top, 96px);
		left: 0;
		right: 0;
		width: 100vw;
		max-width: 100vw;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
		z-index: 60;
	}

	/* On grid layout keep 2 columns but full width. */
	.kd-live-search-results.is-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Header mega menu: parent items are topic headers, child items are links. */
.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle .kd-menu-label {
	letter-spacing: 0.01em;
}

.kd-menu-list.kd-mega-menu > .menu-item.megamenu .kd-mega-submenu .menu-item > a {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

@media (min-width: 768px) {
	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children {
		position: static;
	}

	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-submenu {
		left: 12px;
		right: 12px;
		min-width: 0;
		width: auto;
		padding: 16px;
		border-radius: 14px;
		display: grid;
		grid-template-columns: repeat(4, minmax(160px, 1fr));
		gap: 8px 14px;
	}

	.kd-menu-list.kd-mega-menu > .menu-item.megamenu > .kd-mega-submenu > .menu-item > .kd-mega-topic-title {
		display: block;
		padding: 4px 12px 6px;
		font-size: 14px;
		font-weight: 700;
		color: var(--kd-dark);
	}

	.kd-menu-list.kd-mega-menu > .menu-item.megamenu > .kd-mega-submenu > .menu-item > .kd-mega-topic-links {
		display: block;
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		max-height: none;
		margin: 0;
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle:hover i,
	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle:focus-visible i,
	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children.is-open > .kd-mega-parent-toggle i {
		transform: rotate(180deg);
	}

	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle:hover ~ .kd-mega-submenu,
	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle:focus-visible ~ .kd-mega-submenu,
	.kd-menu-list.kd-mega-menu > .menu-item.megamenu.has-children.is-open > .kd-mega-submenu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.kd-mobile-menu-list.kd-mega-menu > .menu-item.megamenu.has-children > .kd-mega-parent-toggle {
		justify-content: space-between;
		align-items: center;
		text-align: left;
	}

	.kd-mobile-menu-list.kd-mega-menu > .menu-item.megamenu .kd-mega-submenu {
		padding-top: 4px;
	}

	.kd-mobile-menu-list.kd-mega-menu > .menu-item.megamenu .is-mega-topic > .kd-mega-topic-title {
		display: block;
		padding: 10px 14px 6px;
		font-size: 14px;
		font-weight: 700;
		color: var(--kd-dark);
	}

	.kd-mobile-menu-list.kd-mega-menu > .menu-item.megamenu .is-mega-topic > .kd-mega-topic-links {
		display: block;
		position: static;
		max-height: none;
		overflow: visible;
		margin-left: 0;
		padding-left: 8px;
	}
}

/* ==========================================================================
   OTP button loading / done states (shared: popup, drawer, checkout).
   header.css is enqueued on every page, so these rules apply wherever
   the .kd-otp-card renders.
   ========================================================================== */
.kd-otp-btn.is-loading,
.kd-otp-btn.is-done {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 1;
}

.kd-otp-btn.is-done {
	cursor: default;
}

.kd-otp-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: kd-otp-spin 0.7s linear infinite;
	vertical-align: middle;
	flex: 0 0 auto;
}

.kd-otp-btn-check {
	font-size: 14px;
	line-height: 1;
}

.kd-otp-btn-label {
	display: inline-block;
}

@keyframes kd-otp-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.kd-otp-spinner { animation-duration: 1.6s; }
}

/* ==========================================================================
   Mobile login/register tooltip — anchored under the header account icon.
   Server only renders on mobile + logged-out; top is set in JS.
   ========================================================================== */
.kd-signin-tip {
	position: fixed;
	left: 12px;
	right: 12px;
	top: 64px;
	z-index: 10000;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px 10px 14px;
	border-radius: 12px;
	background: var(--kd-signin-tip-bg, #2874f0);
	color: var(--kd-signin-tip-fg, #ffffff);
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.22);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 200ms ease, transform 200ms ease;
	pointer-events: none;
}

.kd-signin-tip.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.kd-signin-tip-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.kd-signin-tip-heading {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
}

.kd-signin-tip-text {
	font-size: 12px;
	line-height: 1.35;
	color: inherit;
	opacity: 0.92;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kd-signin-tip-cta {
	flex: 0 0 auto;
	appearance: none;
	border: 0;
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	background: var(--kd-signin-tip-btn-bg, #fb641b);
	color: var(--kd-signin-tip-btn-fg, #ffffff);
	cursor: pointer;
}

.kd-signin-tip-close {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 0;
	background: var(--kd-signin-tip-bg, #2874f0);
	color: var(--kd-signin-tip-fg, #ffffff);
	font-size: 12px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.kd-signin-tip-arrow {
	position: absolute;
	top: -7px;
	left: var(--kd-signin-tip-arrow-x, 80%);
	transform: translateX(-50%) rotate(45deg);
	width: 14px;
	height: 14px;
	background: var(--kd-signin-tip-bg, #2874f0);
	border-radius: 2px;
}

/* Hide on desktop — tooltip is mobile-only by spec. */
@media (min-width: 1024px) {
	.kd-signin-tip {
		display: none !important;
	}
}

/* -----------------------------------------------------------------------------
 * B2B firm wizard + blocked card (inside any [data-kd-auth-root] mount)
 * -------------------------------------------------------------------------- */
.kd-otp-firm-wrap {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 4px 0;
}
.kd-otp-firm-head h3 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}
.kd-otp-firm-sub {
	margin: 0;
	font-size: 12.5px;
	color: #6b7280;
}
.kd-otp-firm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 12px;
}
.kd-otp-firm-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.kd-otp-firm-row--full {
	grid-column: 1 / -1;
}
.kd-otp-firm-row label {
	font-size: 12px;
	font-weight: 600;
	color: #374151;
}
.kd-otp-firm-optional {
	font-weight: 400;
	color: #9ca3af;
	font-size: 11px;
	margin-left: 4px;
}
.kd-otp-firm-row input,
.kd-otp-firm-row textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
	font-family: inherit;
	color: #111827;
	box-sizing: border-box;
}
.kd-otp-firm-row input:focus,
.kd-otp-firm-row textarea:focus {
	outline: none;
	border-color: var(--woovue-primary, #2563eb);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.kd-otp-firm-gst-row {
	display: flex;
	gap: 8px;
	align-items: stretch;
}
.kd-otp-firm-gst-row input {
	flex: 1 1 auto;
	min-width: 0;
}
.kd-otp-btn--secondary {
	background: #e5e7eb;
	color: #111827;
	white-space: nowrap;
}
.kd-otp-btn--secondary:hover {
	background: #d1d5db;
}
.kd-otp-firm-hint {
	margin: 0;
	font-size: 12px;
	color: #6b7280;
	min-height: 1em;
}
.kd-otp-firm-hint.is-error { color: #b32d2e; }
.kd-otp-firm-hint.is-success { color: #1a7f37; }

.kd-otp-blocked-card {
	text-align: center;
	padding: 16px 12px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.kd-otp-blocked-icon {
	font-size: 28px;
	color: #b26a00;
}
.kd-otp-blocked-card h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}
.kd-otp-blocked-card p {
	margin: 0;
	color: #4b5563;
	font-size: 13px;
	line-height: 1.5;
}

@media (max-width: 540px) {
	.kd-otp-firm-grid {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------------------------
 * Full-page B2B blocked overlay (rendered by template-parts/b2b/blocked.php)
 * -------------------------------------------------------------------------- */
.kd-b2b-blocked-page {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: #f9fafb;
}
.kd-b2b-blocked-card {
	width: 100%;
	max-width: 520px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	padding: 28px;
}
.kd-b2b-blocked-head h1 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
}
.kd-b2b-blocked-head p {
	margin: 0;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.6;
}
.kd-b2b-blocked-body {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.kd-b2b-blocked-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--woovue-primary, #2563eb);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.15s ease;
}
.kd-b2b-blocked-cta:hover {
	background: #1d4ed8;
	color: #fff;
}
.kd-b2b-blocked-cta.is-secondary {
	background: #e5e7eb;
	color: #111827;
}
.kd-b2b-blocked-cta.is-secondary:hover {
	background: #d1d5db;
	color: #111827;
}
.kd-b2b-blocked-summary {
	margin: 4px 0 0;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 6px 12px;
	font-size: 13.5px;
	padding: 12px 14px;
	background: #f3f4f6;
	border-radius: 8px;
}
.kd-b2b-blocked-summary dt {
	font-weight: 600;
	color: #374151;
	margin: 0;
}
.kd-b2b-blocked-summary dd {
	margin: 0;
	color: #111827;
}

