/**
 * Transchem home (reference: legacy header/footer + design spec)
 * Navy / pink / light gray — scoped under .tc-home where possible
 */
/* Kill UA gaps; home layout does not load legacy style.css reboot helpers on every rule */
body.tc-home {
	margin: 0;
	padding: 0;
}

.tc-home {
	--tc-navy: #3a65c3;
	--tc-navy-deep: #2e53a8;
	--tc-pink: #d11b8d;
	--tc-pink-dark: #b81679;
	/* Muted section (e.g. Organic & Fresh) — neutral light grey */
	--tc-gray-section: #eceef2;
	/* Footer — white main; promo strip soft grey */
	--tc-footer-bg: #ffffff;
	--tc-footer-promo-bg: #f9f9f9;
	--tc-footer-border: #e2e5ea;
	--tc-footer-heading: #002050;
	--tc-footer-muted: #666666;
	--tc-footer-accent-phone: #fd8d27;
	--tc-teal: #000000;
	--tc-radius: 12px;
	/* Text fields — matches login / auth card */
	--tc-input-radius: 14px;
	color: #333;
	font-size: 16px;
}

.tc-home .ps-page {
	font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.45;
	margin-top: 0;
	padding-top: 0;
}

/* Preloader: full-screen overlay (legacy rules live in style.css, which home skips) */
.tc-home .tw-loader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}

/* MyMedi base hides .ps-header; Transchem header reuses the class — must stay visible */
.tc-home .tc-header.ps-header {
	display: block;
}

/* MyMedi sticky uses position:fixed (removes header from flow). Sticky keeps scroll height correct. */
.tc-home .tc-header.ps-header.ps-header--sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: #fff;
}

/* ——— Header ——— */
.tc-header {
	background: #fff;
}

.tc-header__top {
	background: var(--tc-navy);
	color: #fff;
	font-size: 14px;
	padding: 10px 0;
}

.tc-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.tc-header__top-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
}

.tc-header__top-links a {
	color: #fff;
	text-decoration: none;
	opacity: 0.95;
}

.tc-header__top-links a:hover {
	opacity: 1;
	text-decoration: underline;
}

.tc-header__top-sep {
	opacity: 0.45;
	user-select: none;
}

/* Logged-in "My account" dropdown (top bar + desktop rail + mobile) */
.tc-account-dropdown {
	position: relative;
	list-style: none;
}

.tc-header__top-links .tc-account-dropdown {
	display: flex;
	align-items: center;
}

.tc-account-dropdown__toggle {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	text-align: inherit;
	padding: 0;
	margin: 0;
}

.tc-account-dropdown__toggle--top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	opacity: 0.95;
	white-space: nowrap;
}

.tc-header__top-links .tc-account-dropdown__toggle--top:hover {
	opacity: 1;
	text-decoration: underline;
}

.tc-account-dropdown__caret {
	font-size: 0.72em;
	line-height: 1;
	opacity: 0.9;
	transition: transform 0.2s ease;
}

.tc-account-dropdown.is-open .tc-account-dropdown__caret {
	transform: rotate(-180deg);
}

.tc-account-dropdown__panel {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 180px;
	padding: 10px 0;
	background: #fff;
	color: #333;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
	z-index: 10060;
	text-align: center;
}

.tc-account-dropdown--rail .tc-account-dropdown__panel,
.tc-account-dropdown--mobile .tc-account-dropdown__panel {
	left: auto;
	right: 0;
	transform: none;
}

.tc-account-dropdown.is-open .tc-account-dropdown__panel {
	display: block;
}

.tc-account-dropdown__link {
	display: block;
	padding: 10px 18px;
	color: #444;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	white-space: nowrap;
}

.tc-account-dropdown__link:hover {
	background: #f4f6fb;
	color: var(--tc-navy, #3a65c3);
	text-decoration: none;
}

.tc-account-dropdown__link + .tc-account-dropdown__link {
	border-top: 1px solid #eee;
}

.tc-header__right-rail .tc-account-dropdown__toggle.tc-account-link .tc-account-dropdown__caret {
	font-size: 11px;
	margin-left: 2px;
	opacity: 0.75;
}

.tc-header__mobile .tc-account-dropdown__toggle.tc-account-link--mobile .tc-account-dropdown__caret {
	font-size: 12px;
	opacity: 0.75;
	flex-shrink: 0;
}

/* Sit above .tc-header__nav (z-index 10055) so mini-cart and search flyouts paint over
   bottom-nav links; cart card z-index alone cannot escape past a higher sibling context. */
.tc-header__mobile,
.tc-header__main {
	position: relative;
	z-index: 10056;
}

.tc-header__main {
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8;
}

.tc-header__main .row {
	margin-top: 0;
	margin-bottom: 0;
}

.tc-header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #111;
}

.tc-header__logo-mark {
	position: relative;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}

.tc-header__logo-cross {
	position: absolute;
	left: 2px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border: 3px solid #111;
	border-radius: 2px;
}

.tc-header__logo-cross::before,
.tc-header__logo-cross::after {
	content: "";
	position: absolute;
	background: #111;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.tc-header__logo-cross::before {
	width: 2px;
	height: 12px;
}

.tc-header__logo-cross::after {
	width: 12px;
	height: 2px;
}

.tc-header__logo-pill {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 12px;
	background: #111;
	border-radius: 999px;
}

.tc-header__logo-text strong {
	display: block;
	font-size: 15px;
	letter-spacing: 0.02em;
	color: var(--tc-navy);
	line-height: 1.15;
}

.tc-header__logo-text small {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #555;
	letter-spacing: 0.04em;
}

.tc-header__search-col {
	padding-right: 1rem;
}

@media (min-width: 992px) {
	.tc-header__search-col {
		padding-right: 1.25rem;
	}
}

.tc-header__rail-col {
	padding-left: 0.75rem;
}

@media (min-width: 992px) {
	.tc-header__rail-col {
		padding-left: 1rem;
	}
}

.tc-header__search-wrap {
	position: relative;
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.tc-header__search-wrap {
		max-width: none;
		margin: 0;
	}
}

.tc-search-results-modal {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
	z-index: 10070;
	display: none;
	max-height: 420px;
	overflow-y: auto;
	min-width: 520px;
	max-width: 520px;
	font-size: 14px;
}

.tc-search-results-modal__loader {
	display: none;
	padding: 20px;
	text-align: center;
	font-size: 14px;
}

.tc-search-results-modal__spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #3a65c3;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.tc-search-results-modal__loader-text {
	margin-top: 10px;
	color: #666;
	font-size: 14px;
}

.tc-search-results-modal__results {
	padding: 15px;
	font-size: 14px;
	display: none;
}

.tc-search-results-modal__empty {
	display: none;
	padding: 20px;
	text-align: center;
	color: #666;
	font-size: 14px;
}

.tc-search-results-modal__footer {
	display: none;
	padding: 15px;
	border-top: 1px solid #eee;
	text-align: center;
	font-size: 14px;
}

.tc-search-results-modal__footer a {
	color: #3a65c3;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.tc-header__search {
	display: flex;
	align-items: center;
	border: 2px solid #d6d9e0;
	border-radius: 999px;
	position: relative;
	overflow: hidden;
	padding: 3px;
	background: #fff;
	height: 64px;
}

.tc-header__search select {
	flex: 0 0 178px;
	width: 178px;
	border: none !important;
	border-right: 1px solid #d7d9df !important;
	background: #fff;
	font-size: 14px;
	padding: 0 44px 0 22px;
	color: #4d4f55;
	font-weight: 600;
	line-height: 60px;
	box-shadow: none !important;
	height: 100%;
	border-radius: 999px 0 0 999px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: none;
	cursor: pointer;
}

.tc-header__search::before {
	content: "\f107";
	font-family: "FontAwesome";
	position: absolute;
	left: 152px;
	top: 50%;
	transform: translateY(-50%);
	color: #4d4f55;
	font-size: 16px;
	pointer-events: none;
	z-index: 3;
}

.tc-header__search input[type="text"] {
	flex: 1 1 auto;
	width: auto;
	border: none;
	background: transparent;
	padding: 0 20px;
	font-size: 15px;
	color: #32343a;
	height: 100%;
	min-width: 0;
}

.tc-header__search input[type="text"]::placeholder {
	color: #b9bcc3;
}

.tc-header__search input:focus {
	outline: none;
}

.tc-header__search button {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #3a65c3;
	color: #fff;
	border: none;
	padding: 0;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
	box-shadow: 0 0 0 2px #e8ebf2;
	transition: background 0.2s, transform 0.2s;
}

.tc-header__search button:hover {
	background: #2e53a8;
	transform: scale(1.02);
}

.tc-header__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	font-size: 14px;
	color: #666;
	line-height: 1.45;
	/* Keep at least content width so text does not paint under the cart (rail-tools does not shrink). */
	min-width: max-content;
	max-width: 100%;
	flex: 0 0 auto;
	flex-shrink: 0;
}

@media (min-width: 992px) {
	.tc-header__contact {
		gap: 4px;
		padding-right: 1rem;
	}
}

.tc-header__contact-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.25;
}

.tc-header__contact-phone {
	width: 100%;
	padding-left: 32px;
	line-height: 1.3;
}

.tc-header__contact .fa-whatsapp {
	color: #25d366;
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
}

.tc-header__contact-line {
	font-weight: 600;
	color: var(--tc-navy);
	font-size: 14px;
	line-height: 1.4;
	display: inline-block;
}

.tc-header__contact-addr {
	font-size: 13px;
	color: var(--tc-navy);
	font-weight: 500;
	line-height: 1.45;
	margin-top: 0;
}

.tc-header__right-rail {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 12px 16px;
	min-width: 0;
}

@media (min-width: 992px) {
	.tc-header__right-rail {
		gap: 10px 20px;
	}
}

.tc-header__rail-tools {
	flex: 0 0 auto;
	flex-shrink: 0;
	gap: 18px;
}

@media (min-width: 992px) {
	.tc-header__rail-tools {
		gap: 22px;
	}
}

.tc-header__cart .tc-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #3c66c3;
	font-weight: 500;
	font-size: 14px;
	position: relative;
	line-height: 1.2;
	white-space: nowrap;
}

.tc-header__cart .fa-shopping-cart {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #c7e0df;
	color: #6e7578;
	font-size: 17px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tc-header__cart .cart_count {
	position: absolute;
	top: -7px;
	left: 18px;
	min-width: 20px;
	height: 20px;
	padding: 0 3px;
	background: #3c66c3;
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(60, 102, 195, 0.35);
}

/* Account / sign-in (matches cart rail: brand blue + teal circle) */
.tc-header__right-rail .tc-account-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #3c66c3;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
}

.tc-header__right-rail .tc-account-link .fa-user {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #c7e0df;
	color: #3c66c3;
	font-size: 17px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tc-header__right-rail .tc-account-link:hover {
	color: #2f529f;
	text-decoration: none;
}

.tc-header__right-rail .tc-account-link:hover .fa-user {
	background: #b5d5d4;
	color: #2f529f;
}

.tc-header__nav {
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8;
	/* Stay above page content so taps hit the bar (and category dropdown), not links underneath. */
	position: relative;
	z-index: 10055;
}

.tc-header__nav-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 28px;
}

.tc-header__nav-inner a {
	color: var(--tc-navy);
	font-weight: 500;
	font-size: 16px;
	padding: 6px 0;
	text-decoration: none;
}

.tc-header__nav-inner a:hover {
	color: var(--tc-pink);
}

.tc-header__nav-inner a.tc-nav-accent {
	color: var(--tc-teal);
}

.tc-header__nav-inner a.tc-nav-submit-prescription {
	color: #22a06b;
}

.tc-header__nav-inner a.tc-nav-submit-prescription:hover {
	color: #1b8a5b;
}

/* Shop by category — dropdown in bottom nav (links to /search?category=…) */
.tc-header__nav-inner .tc-header__nav-dropdown {
	position: relative;
	flex: 0 0 auto;
}

.tc-header__nav-inner .tc-nav-categories-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--tc-navy);
	font-weight: 500;
	font-size: 16px;
	padding: 6px 0;
	line-height: 1.25;
	white-space: nowrap;
}

.tc-header__nav-inner .tc-nav-categories-toggle:hover {
	color: var(--tc-pink);
}

/* Shop by category — panel styled like live search dropdown (image 2).
   Must only apply when .is-open; otherwise this selector beats display:none and the panel never hides. */
.tc-header__nav-inner .tc-header__nav-dropdown.tc-account-dropdown.is-open .tc-account-dropdown__panel.tc-category-dropdown-panel {
	display: flex;
	flex-direction: column;
	padding: 0;
	min-width: min(520px, calc(100vw - 24px));
	max-width: 520px;
	border-radius: 12px;
	border: 1px solid #ddd;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
	text-align: left;
	max-height: min(70vh, 420px);
	overflow: hidden;
	font-size: 14px;
	/* Sit above page links so outside-dismiss targets the page, not a link under the panel. */
	z-index: 10080;
}

.tc-category-dropdown-panel__toolbar {
	flex-shrink: 0;
	padding: 12px 14px;
	border-bottom: 1px solid #eee;
	background: #fafbfc;
}

.tc-category-dropdown-panel__search {
	display: block;
	width: 100%;
	padding: 10px 14px;
	min-height: 42px;
	border: 1px solid #d7d9df;
	border-radius: 8px;
	font: inherit;
	font-size: 14px;
	color: #32343a;
	background: #fff;
	box-sizing: border-box;
}

.tc-category-dropdown-panel__search:focus {
	outline: none;
	border-color: #3a65c3;
	box-shadow: 0 0 0 2px rgba(58, 101, 195, 0.2);
}

.tc-category-dropdown-panel__list {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 6px 0 8px;
	margin: 0;
}

.tc-category-dropdown-panel__item {
	display: block;
	padding: 12px 18px;
	border-bottom: 1px solid #eee;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.tc-category-dropdown-panel__item:hover {
	background-color: #f9fafb;
	text-decoration: none;
	color: inherit;
}

.tc-category-dropdown-panel__list > .tc-category-dropdown-panel__item:last-child {
	border-bottom: 0;
}

.tc-category-dropdown-panel__body {
	text-align: left;
	padding-left: 2px;
}

.tc-category-dropdown-panel__name {
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 6px;
	line-height: 1.4;
	font-size: 15px;
	letter-spacing: 0.01em;
}

.tc-category-dropdown-panel__hint {
	margin: 0;
	color: #3a65c3;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.35;
}

.tc-category-dropdown-panel__footer {
	flex-shrink: 0;
	padding: 14px 18px 16px;
	border-top: 1px solid #eee;
	text-align: center;
	background: #fff;
}

.tc-category-dropdown-panel__footer a {
	color: #3a65c3;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.tc-category-dropdown-panel__footer a:hover {
	text-decoration: underline;
	color: #2f529f;
}

@media (max-width: 991px) {
	.tc-header__nav-inner .tc-header__nav-dropdown.tc-account-dropdown.is-open .tc-account-dropdown__panel.tc-category-dropdown-panel {
		left: 0;
		right: auto;
		transform: none;
	}

	/* Mobile nav: only show Submit Prescription */
	.tc-header__nav-inner > .tc-header__nav-dropdown,
	.tc-header__nav-inner > a:not(.tc-nav-submit-prescription) {
		display: none !important;
	}

	.tc-header__nav-inner {
		justify-content: center;
		overflow-x: visible;
		flex-wrap: wrap;
		padding-bottom: 0;
	}

	.tc-header__nav {
		padding: 8px 0;
	}
}

/* Slide-out menu: same row layout inside drawer (only when accordion is open) */
.tc-home .mobile-menu .tc-account-dropdown--drawer.is-open .tc-category-dropdown-panel--drawer {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	background: #fff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	min-width: 0;
	width: 100%;
	max-height: min(55vh, 360px);
	overflow: hidden;
	text-align: left;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__toolbar {
	background: #fff;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__item {
	border-bottom: 1px solid #e8e8e8;
	padding: 12px 16px;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__toolbar {
	padding: 12px 14px;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__item:hover {
	background: #f9fafb;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__name {
	font-size: 17px;
	margin: 0;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__footer a {
	font-size: 16px;
}

.tc-home .mobile-menu .tc-category-dropdown-panel--drawer .tc-category-dropdown-panel__footer {
	background: #fff;
	border-top: 1px solid #e8e8e8;
}

/* Mini cart (mirrors main theme cart behaviour) */
.tc-header .shopingCart {
	position: relative;
}

.tc-header .shoping-cart-card {
	position: absolute;
	top: 130%;
	right: 0;
	width: 300px;
	background: #fff;
	border-radius: 8px;
	z-index: 10090;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	transition: opacity 0.25s, top 0.25s;
	border-top: 3px solid var(--tc-navy);
}

.tc-header .shoping-cart-card.open {
	visibility: visible;
	opacity: 1;
	top: 115%;
}

.tc-header .empty_card {
	padding: 24px;
	text-align: center;
}

.tc-header .shoping-cart-footer {
	padding: 12px 16px 16px;
	border-top: 1px solid #eee;
}

.tc-header .shoping-cart-body {
	max-height: 250px;
	overflow-y: auto;
	padding: 16px 14px 12px;
	width: 100%;
}

.tc-header ul.cart_list {
	width: 100%;
	display: inline-block;
}

.tc-header ul.cart_list li {
	margin-right: 0 !important;
	display: flex;
	width: 100%;
	border-bottom: 1px dotted #bfd0ec;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.tc-header ul.cart_list li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.tc-header ul.cart_list li .cart-item-card {
	width: 100%;
	position: relative;
}

.tc-header ul.cart_list li .cart-item-card .cart-item-img {
	width: 64px;
	height: 64px;
	float: left;
	overflow: hidden;
	border-radius: 8px;
	margin-right: 10px;
	flex-shrink: 0;
}

.tc-header ul.cart_list li .cart-item-card .cart-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tc-header ul.cart_list li .cart-item-card .cart-item-desc {
	width: calc(100% - 74px);
	float: left;
}

.tc-header ul.cart_list li .cart-item-card .cart-item-desc h6 {
	font-size: 15px;
	line-height: 1.3;
	font-weight: 600;
	margin: 0 0 4px;
}

.tc-header ul.cart_list li .cart-item-card .cart-item-desc p {
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	line-height: 1.25;
}

.tc-header ul.cart_list li a.item-remove {
	position: absolute;
	top: -8px;
	left: 0;
}

.tc-header ul.cart_list > li a.item-remove > i {
	width: 18px;
	height: 18px;
	line-height: 18px;
	background: var(--tc-navy);
	color: #fff;
	text-align: center;
	margin: 0;
	border-radius: 50%;
	font-size: 14px;
}

.tc-cart-toast {
	position: fixed;
	top: 14px;
	right: 16px;
	left: auto;
	transform: translateY(-12px);
	width: min(420px, calc(100vw - 24px));
	min-width: 0;
	max-width: min(420px, calc(100vw - 24px));
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.2s ease;
	z-index: 11000;
}

.tc-cart-toast.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.tc-cart-toast__icon {
	background: #3560bd;
	color: #fff;
	width: 78px;
	height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
}

.tc-cart-toast__message {
	flex: 1;
	padding: 0 14px;
	color: #4a4a4a;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 500;
}

.tc-cart-toast__close {
	border: 0;
	background: transparent;
	color: #444;
	font-size: 20px;
	line-height: 1;
	padding: 0 12px 0 4px;
	cursor: pointer;
}

@media (max-width: 767px) {
	.tc-cart-toast {
		top: 10px;
		border-radius: 10px;
		right: 10px;
		width: min(340px, calc(100vw - 20px));
		max-width: min(340px, calc(100vw - 20px));
	}

	.tc-cart-toast__icon {
		width: 68px;
		height: 58px;
		font-size: 36px;
	}

	.tc-cart-toast__message {
		font-size: 14px;
		padding: 0 10px;
	}

	.tc-cart-toast__close {
		font-size: 24px;
		padding-right: 10px;
	}
}

.tc-header .shoping-cart-footer p {
	font-size: 16px;
	margin-bottom: 8px;
}

.tc-header .shoping-cart-footer h6 {
	font-size: 17px;
	margin-bottom: 10px;
}

@media (min-width: 992px) {
	.tc-header .shoping-cart-card {
		width: 320px;
		max-height: none;
		background: #fff;
		border-radius: 8px;
		border-top: 3px solid var(--tc-navy);
		box-shadow: 0 14px 34px rgba(16, 30, 66, 0.18);
	}

	.tc-header .shoping-cart-card.open {
		position: absolute;
		top: 115%;
		right: 0;
		left: auto;
		transform: none;
	}

	.tc-header .shoping-cart-body {
		max-height: 330px;
		padding: 16px 14px 12px;
	}

	.tc-header ul.cart_list li {
		border-bottom: 1px dotted #bfd0ec;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-img {
		width: 50px;
		height: 50px;
		margin-right: 8px;
		border-radius: 8px;
		background: #fff;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-img img {
		object-fit: cover;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-desc {
		width: calc(100% - 58px);
		padding-right: 16px;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-desc h6 {
		font-size: 14px;
		line-height: 1.25;
		margin-bottom: 2px;
		color: #173a86;
		font-weight: 600;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-desc p {
		font-size: 14px;
		line-height: 1.2;
		color: #173a86;
		font-weight: 600;
	}

	.tc-header ul.cart_list li a.item-remove {
		top: -6px;
		right: 0;
		left: auto;
	}

	.tc-header ul.cart_list > li a.item-remove > i {
		width: 16px;
		height: 16px;
		line-height: 16px;
		border-radius: 0;
		background: transparent;
		color: #173a86;
		font-size: 14px;
		font-weight: 500;
	}

	.tc-header .shoping-cart-footer {
		padding: 12px 14px 16px;
		border-top: 1px solid #eee;
	}

	.tc-header .shoping-cart-footer p {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 16px;
		color: #173a86;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.tc-header .shoping-cart-footer .tax {
		display: inline;
	}

	.tc-header .shoping-cart-footer h6 {
		display: none;
	}

	.tc-header .shoping-cart-footer .btn {
		width: 100%;
		border-radius: 999px;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.2;
		padding: 10px 14px;
		margin-bottom: 8px !important;
	}

	.tc-header .shoping-cart-footer .btn-primary {
		background: var(--tc-navy);
		border-color: var(--tc-navy);
		color: #fff;
	}

	.tc-header .shoping-cart-footer .btn-outline-primary {
		background: #fff;
		border: 1px solid #000;
		color: #000;
	}
}

@media (max-width: 767px) {
	.tc-header .shoping-cart-card {
		width: min(340px, calc(100vw - 24px));
		right: -6px;
	}

	.tc-header .shoping-cart-body {
		max-height: min(52vh, 420px);
		padding: 14px 12px 10px;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-img {
		width: 56px;
		height: 56px;
		margin-right: 9px;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-desc {
		width: calc(100% - 65px);
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-desc h6 {
		font-size: 14px;
	}

	.tc-header ul.cart_list li .cart-item-card .cart-item-desc p {
		font-size: 18px;
	}

	.tc-header .shoping-cart-footer p {
		font-size: 15px;
	}

	.tc-header .shoping-cart-footer h6 {
		font-size: 16px;
	}
}

/* Mobile header */
.tc-header__mobile {
	display: none;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.tc-header__mobile-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.tc-header__mobile-tools {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.tc-header__mobile .shopingCart .tc-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #3c66c3;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	line-height: 1.1;
}

.tc-header__mobile .shopingCart .tc-cart-link .fa-shopping-cart {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #c7e0df;
	color: #6e7578;
	font-size: 24px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tc-header__mobile .shopingCart .tc-cart-link .cart_count {
	position: absolute;
	top: -4px;
	left: 44px;
	min-width: 31px;
	height: 31px;
	padding: 0 6px;
	background: #3c66c3;
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(60, 102, 195, 0.35);
}

.tc-header__mobile .tc-account-link--mobile {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #3c66c3;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1;
	white-space: nowrap;
}

.tc-header__mobile .tc-account-link--mobile .fa-user {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #c7e0df;
	color: #3c66c3;
	font-size: 24px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tc-header__mobile .tc-account-link--mobile:hover {
	color: #2f529f;
	text-decoration: none;
}

.tc-header__mobile .tc-account-link--mobile:hover .fa-user {
	background: #b5d5d4;
	color: #2f529f;
}

.tc-mobile-tool-label {
	display: inline;
}

@media (max-width: 575px) {
	.tc-header__mobile-row {
		gap: 8px;
	}

	.tc-header__mobile-tools {
		gap: 8px;
	}

	.tc-header__mobile .shopingCart .tc-cart-link,
	.tc-header__mobile .tc-account-link--mobile {
		font-size: 0;
		gap: 0;
	}

	.tc-header__mobile .shopingCart .tc-cart-link .fa-shopping-cart,
	.tc-header__mobile .tc-account-link--mobile .fa-user {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.tc-header__mobile .shopingCart .tc-cart-link .cart_count {
		top: -6px;
		left: 30px;
		min-width: 22px;
		height: 22px;
		font-size: 12px;
	}

	.tc-header__mobile .tc-account-dropdown__toggle.tc-account-link--mobile .tc-account-dropdown__caret {
		display: none;
	}

	.tc-mobile-tool-label {
		display: none;
	}
}

@media (max-width: 991px) {
	.tc-header__main {
		padding: 8px 0 12px;
		border-bottom: 0;
	}

	.tc-header__main .row {
		margin-left: 0;
		margin-right: 0;
	}

	.tc-header__search-col {
		margin-bottom: 0 !important;
	}

	.tc-header__search-wrap {
		max-width: none;
		margin: 0;
	}

	/* Above .tc-header__main so cart/account flyouts are not covered by the search bar. */
	.tc-header__mobile {
		display: block !important;
		z-index: 10058;
	}

	.tc-header__search {
		--tc-search-category-width: 148px;
		display: grid !important;
		grid-template-columns: var(--tc-search-category-width) minmax(0, 1fr) 48px;
		align-items: center;
		width: 100%;
		height: 56px;
		padding: 4px 4px 4px 6px;
		overflow: visible;
		gap: 6px;
	}

	.tc-header__search select.custom-select {
		flex: none !important;
		width: 100% !important;
		max-width: none !important;
		font-size: 13px;
		padding: 0 26px 0 12px;
		border-right-width: 1px !important;
		line-height: 1.2;
		height: 48px;
		min-width: 0;
		overflow: visible;
		text-overflow: clip;
		white-space: nowrap;
	}

	.tc-header__search::before {
		left: calc(6px + var(--tc-search-category-width) - 24px);
		font-size: 12px;
	}

	.tc-header__search input[type="text"] {
		display: block !important;
		flex: none !important;
		width: 100% !important;
		min-width: 0;
		font-size: 14px;
		padding: 0 14px;
		height: 48px;
		line-height: 1.3;
		opacity: 1;
		visibility: visible;
		-webkit-appearance: none;
		appearance: none;
	}

	.tc-header__search input[type="text"]::placeholder {
		font-size: 13px;
	}

	.tc-header__search button {
		flex: none !important;
		width: 48px;
		height: 48px;
		font-size: 16px;
		margin-left: 0;
		box-shadow: none;
	}

	.tc-search-results-modal {
		left: 0;
		right: 0;
		transform: none;
		min-width: 0;
		max-width: none;
		width: 100%;
	}
}

@media (max-width: 575px) {
	.tc-header__search {
		--tc-search-category-width: 138px;
		padding: 4px;
		gap: 4px;
	}

	.tc-header__search select.custom-select {
		font-size: 12px;
		padding: 0 22px 0 10px;
	}

	.tc-header__search::before {
		left: calc(4px + var(--tc-search-category-width) - 20px);
	}

	.tc-header__search input[type="text"] {
		padding: 0 12px;
		font-size: 13px;
	}

	.tc-header__search input[type="text"]::placeholder {
		font-size: 12px;
	}
}

/* Mobile menu overlay (Bootstrap-free) */
.tc-home .mobile-menu-wrapper {
	position: fixed;
	inset: 0;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
	/* Closed menu must not sit above the page hit-test layer (Safari can block body scroll). */
	pointer-events: none;
}

.tc-home .mobile-menu-wrapper.open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.tc-home .mobile-menu-wrapper .off-canvas-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.tc-home .mobile-menu-wrapper .offcanvas-body {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 300px;
	max-width: 88vw;
	background: #fff;
	padding: 20px;
	transform: translateX(-100%);
	transition: transform 0.3s;
	overflow-y: auto;
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
}

.tc-home .mobile-menu-wrapper.open .offcanvas-body {
	transform: translateX(0);
}

.tc-home .mobile-menu {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
}

.tc-home .mobile-menu li a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	color: #333;
	text-decoration: none;
	font-size: 16px;
}

/* Guest "Sign In" accordion in slide-out menu (same links as header dropdown) */
.tc-home .mobile-menu .tc-account-dropdown--drawer {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #eee;
}

.tc-home .mobile-menu .tc-account-dropdown--drawer .tc-account-dropdown__toggle--drawer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 0;
	color: #333;
	font: inherit;
	font-size: 16px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
}

.tc-home .mobile-menu .tc-account-dropdown--drawer .tc-account-dropdown__panel {
	position: static;
	left: auto;
	right: auto;
	top: auto;
	transform: none;
	min-width: 0;
	width: 100%;
	margin: 0 0 2px;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
	background: #fff;
	border: 0;
	border-top: 1px solid #eee;
}

.tc-home .mobile-menu .tc-account-dropdown--drawer .tc-account-dropdown__link {
	text-align: left;
	padding: 10px 12px;
	font-size: 16px;
}

.tc-home .mobile-menu .tc-account-dropdown--drawer .tc-account-dropdown__link + .tc-account-dropdown__link {
	border-top: 1px solid #e8e8e8;
}

/* ——— Hero ——— */
.tc-hero {
	position: relative;
	background: #f8f9fb;
}

/* Owl stays display:none until .owl-loaded; show slides for single-banner heroes before/without init */
.tc-hero .owl-carousel:not(.owl-loaded) {
	display: block;
}

.tc-hero-static {
	display: block;
	width: 100%;
}

.tc-hero .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50% !important;
	background: var(--tc-navy) !important;
	color: #fff !important;
	font-size: 18px !important;
	box-shadow: 0 4px 12px rgba(21, 36, 90, 0.35);
	z-index: 3;
}

.tc-hero .owl-nav button.owl-prev {
	left: 12px;
}

.tc-hero .owl-nav button.owl-next {
	right: 12px;
}

.tc-hero .owl-dots {
	text-align: center;
	margin-top: -24px;
	position: relative;
	z-index: 2;
}

.tc-hero-slide {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(400px, 50vw, 560px);
	padding: 0;
	overflow: hidden;
	background: #f8f9fb;
}

.tc-hero-slide__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
}

.tc-hero-slide__img-mobile {
	display: none;
	width: 100%;
	height: auto;
	vertical-align: top;
}

.tc-hero-slide__mobile-link {
	display: none;
	text-decoration: none;
}

.tc-hero-slide__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: clamp(32px, 5vw, 56px) 15px;
}

.tc-hero-slide__text {
	max-width: min(420px, 42%);
}

.tc-hero-slide__eyebrow {
	display: inline-block;
	color: var(--color-black, #1a1d23);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.tc-hero-slide__text h1 {
	font-size: clamp(1.85rem, 3.2vw, 2.85rem);
	font-weight: 700;
	color: var(--theme-color, var(--tc-navy));
	margin-bottom: 14px;
	line-height: 1.2;
}

.tc-hero-slide__text p.lead {
	color: var(--color-black, #1a1d23);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.5;
}

.tc-hero-slide__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.tc-hero-slide__price-new {
	color: var(--theme-color, var(--tc-navy));
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	line-height: 1;
}

.tc-hero-slide__price-old {
	color: var(--color-black, #1a1d23);
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	font-weight: 500;
	text-decoration: line-through;
}

.tc-hero-slide__cta.tc-btn-pink {
	background: var(--theme-color, var(--tc-navy));
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 13px 30px;
}

.tc-hero-slide__cta.tc-btn-pink:hover {
	background: var(--theme-color, var(--tc-navy));
	filter: brightness(0.88);
	color: #fff !important;
}

.tc-hero-slide__discount {
	position: absolute;
	top: 18px;
	left: 20px;
	width: 102px;
	height: 102px;
	border-radius: 50%;
	background: var(--tc-navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(247, 153, 31, 0.35);
}

@media (max-width: 991px) {
	.tc-hero.ps-section--banner {
		min-height: 0 !important;
	}

	.tc-hero-slide {
		min-height: unset;
		display: block;
		overflow: visible;
		background: #f8f9fb;
	}

	.tc-hero-slide__media {
		display: none;
	}

	.tc-hero-slide__mobile-link {
		display: block;
	}

	.tc-hero-slide__img-mobile {
		display: block;
	}

	.tc-hero-slide__inner {
		display: none;
	}

	.tc-hero .owl-dots {
		margin-top: 8px;
	}
}

@media (max-width: 575px) {
	.tc-hero .owl-nav button {
		width: 38px;
		height: 38px;
		font-size: 16px !important;
	}
}

/* ——— Feature promo strip (three cards under hero) ——— */
.tc-feature-strip {
	padding: 28px 0 36px;
	background: #f4f6fa;
}

.tc-feature-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.tc-feature-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	min-height: 200px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 10px 28px rgba(21, 36, 90, 0.08);
}

.tc-feature-card__content {
	padding: 22px 18px 22px 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	z-index: 1;
}

.tc-feature-card__badge {
	display: inline-block;
	background: #1fa971;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 4px 10px;
	border-radius: 6px;
	line-height: 1.2;
}

.tc-feature-card__title {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--tc-navy);
	max-width: 14em;
}

.tc-feature-card__discount {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1;
	color: #f7931f;
}

.tc-feature-card__prices {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.tc-feature-card__price-new {
	font-size: clamp(1.75rem, 3.2vw, 2.35rem);
	font-weight: 700;
	line-height: 1;
	color: #ffd60a;
}

.tc-feature-card__price-old {
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(200, 215, 240, 0.85);
	text-decoration: line-through;
}

.tc-feature-card__btn {
	display: inline-block;
	margin-top: auto;
	padding: 9px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	align-self: flex-start;
}

.tc-feature-card__btn--navy {
	background: var(--tc-navy);
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(58, 101, 195, 0.35);
}

.tc-feature-card__btn--navy:hover {
	background: var(--tc-navy-deep);
	color: #fff !important;
}

.tc-feature-card__btn--sky {
	background: #4a8fd4;
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tc-feature-card__btn--sky:hover {
	background: #3a7fc4;
	color: #fff !important;
}

.tc-feature-card__media {
	position: relative;
	min-height: 0;
	align-self: stretch;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.tc-feature-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	margin: 0;
	object-fit: cover;
	object-position: center right;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
}

.tc-feature-card--yellow {
	background: #ffe24a;
}

.tc-feature-card--yellow .tc-feature-card__title {
	color: #1a2d5c;
}

.tc-feature-card--muted {
	background: #eceef2;
}

.tc-feature-card--muted .tc-feature-card__title {
	color: #1a2d5c;
}

.tc-feature-card--navy {
	background: linear-gradient(135deg, #1a2d5c 0%, #2d4a8c 48%, #243b73 100%);
}

.tc-feature-card--navy::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		118deg,
		transparent 40%,
		rgba(255, 255, 255, 0.06) 48%,
		rgba(255, 255, 255, 0.1) 52%,
		transparent 60%
	);
	pointer-events: none;
}

.tc-feature-card--navy .tc-feature-card__title {
	color: #fff;
	position: relative;
	z-index: 1;
}

.tc-feature-card--navy .tc-feature-card__content {
	position: relative;
	z-index: 1;
}

@media (max-width: 991px) {
	.tc-feature-strip__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tc-feature-card {
		min-height: 0;
		grid-template-columns: 1fr 42%;
	}

}

@media (max-width: 575px) {
	.tc-feature-strip {
		padding: 20px 0 28px;
	}

	.tc-feature-card {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.tc-feature-card__content {
		padding: 18px 18px 8px;
		order: 1;
	}

	.tc-feature-card__media {
		order: 2;
		min-height: 200px;
		width: 100%;
	}

	.tc-feature-card__media img {
		object-position: center center;
	}

	.tc-feature-card__btn {
		margin-top: 6px;
	}
}

/* ——— Popular categories strip (before deals) ——— */
.tc-popular-categories {
	padding: 16px 0 32px;
	background: #f4f6fa;
}

.tc-popular-categories__title {
	margin: 0 0 22px;
	text-align: center;
	font-size: clamp(1.3rem, 2.2vw, 2rem);
	font-weight: 700;
	color: var(--tc-navy);
}

.tc-popular-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.tc-category-card {
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 10px;
	overflow: hidden;
	min-height: 0;
	box-shadow: 0 4px 14px rgba(21, 36, 90, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tc-category-card:hover {
	border-color: #dde3eb;
	box-shadow: 0 10px 24px rgba(21, 36, 90, 0.1);
	transform: translateY(-2px);
}

/* Reference: title + “More” stacked top-left; image fills lower area (≈55–65% of card). */
.tc-category-card__link {
	min-height: 256px;
	height: 100%;
	display: grid;
	grid-template-rows: auto 1fr;
	text-decoration: none !important;
}

.tc-category-card__content {
	padding: 18px 18px 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
	min-height: 0;
}

.tc-category-card__content h3 {
	margin: 0;
	font-size: clamp(1.08rem, 1.65vw, 1.38rem);
	line-height: 1.22;
	color: var(--tc-navy);
	font-weight: 700;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.tc-category-card__btn {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #fff;
	color: var(--tc-navy);
	font-size: 13px;
	font-weight: 600;
	border: 1px solid #e2e6ed;
	box-shadow: 0 1px 2px rgba(21, 36, 90, 0.04);
}

.tc-category-card__media {
	position: relative;
	min-height: 0;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 4px 6px 10px;
	background: #fff;
	isolation: isolate;
}

/* Fade photo’s off-white / grey backdrop into the card white — removes a hard seam */
.tc-category-card__media::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 48%;
	background: linear-gradient(
		180deg,
		#fff 0%,
		rgba(255, 255, 255, 0.88) 18%,
		rgba(255, 255, 255, 0.35) 52%,
		rgba(255, 255, 255, 0) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.tc-category-card__media img {
	position: relative;
	z-index: 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	object-position: 58% 100%;
	display: block;
}

@media (max-width: 1199px) {
	.tc-popular-categories__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 767px) {
	.tc-popular-categories {
		padding: 12px 0 26px;
	}

	.tc-popular-categories__title {
		margin-bottom: 16px;
	}

	.tc-popular-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.tc-category-card__link {
		min-height: 232px;
	}

	.tc-category-card__content {
		padding: 16px 14px 10px;
		gap: 10px;
	}

	.tc-category-card__media {
		padding: 2px 4px 8px;
	}

	.tc-category-card__media img {
		object-position: center bottom;
	}
}

.tc-btn-pink {
	display: inline-block;
	background: var(--tc-navy);
	color: #fff !important;
	font-weight: 600;
	letter-spacing: 0;
	padding: 10px 30px;
	border-radius: 999px;
	text-decoration: none;
	border: none;
	transition: background 0.2s;
}

.tc-btn-pink:hover {
	background: var(--tc-navy-deep);
	color: #fff !important;
}

.tc-btn-outline-pink {
	display: inline-block;
	border: 2px solid var(--tc-navy);
	color: var(--tc-navy) !important;
	background: transparent;
	font-weight: 600;
	padding: 10px 26px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.tc-btn-outline-pink:hover {
	background: var(--tc-navy);
	color: #fff !important;
}

/* ——— Sections ——— */
.tc-section {
	padding: 48px 0;
}

.tc-section--muted {
	background: transparent;
	/* Clear edge before footer (same tone as section; footer provides the color break) */
	padding-bottom: 56px;
}

/* Account routes: extra tail room so pagination/footer clear fixed cookie / chat / scroll controls */
.tc-home .tc-account-page .tc-section--muted {
	padding-bottom: max(96px, env(safe-area-inset-bottom, 0px) + 48px);
}

.tc-kicker {
	display: inline-block;
	color: var(--tc-pink);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.tc-section-title {
	font-size: clamp(1.5rem, 3vw, 1.95rem);
	font-weight: 700;
	color: var(--tc-navy);
	margin-bottom: 24px;
}

/* ——— Auth (login / register) ——— */
.tc-home .tc-auth-breadcrumb__list {
	background: transparent;
	padding: 0;
	margin-bottom: 0;
}

.tc-home .tc-auth-breadcrumb__list .breadcrumb-item a {
	color: var(--tc-navy);
	font-weight: 500;
}

.tc-home .tc-auth-breadcrumb__list .breadcrumb-item.active {
	color: #666;
}

.tc-home .tc-auth-role-switch {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.tc-home .tc-auth-role-switch__btn {
	display: inline-block;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 999px;
	text-decoration: none !important;
	border: 2px solid var(--tc-navy);
	color: var(--tc-navy) !important;
	background: transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	font-size: 15px;
}

.tc-home .tc-auth-role-switch__btn:hover {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy) !important;
}

.tc-home .tc-auth-role-switch__btn--active,
.tc-home .tc-auth-role-switch__btn--active:hover {
	background: var(--tc-navy);
	color: #fff !important;
	border-color: var(--tc-navy);
}

.tc-home .tc-auth-card {
	background: #fff;
	border: 1px solid #e3e6ec;
	border-radius: 18px;
	padding: 34px 34px 30px;
	box-shadow: 0 10px 30px rgba(21, 36, 90, 0.06);
	/* Floor for inherited / unscoped text inside the card */
	font-size: 16px;
}

.tc-home .tc-auth-card__logo-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.tc-home .tc-auth-card__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tc-home .tc-auth-card__logo img {
	display: block;
	max-width: min(220px, 78%);
	height: auto;
}

.tc-home .tc-auth-card .alert {
	font-size: 15px;
	line-height: 1.45;
}

.tc-home .tc-auth-card__lead {
	color: #555;
	margin-bottom: 0;
	line-height: 1.55;
	font-size: 17px;
}

.tc-home .tc-auth-card__label {
	font-weight: 700;
	color: #002060;
	font-size: 15px;
	margin-bottom: 10px;
	display: block;
	letter-spacing: 0.01em;
}

.tc-home .tc-auth-card__label--required::after {
	content: " *";
	color: #002060;
	font-weight: 700;
}

.tc-home .tc-auth-card__form .form-group {
	margin-bottom: 1.15rem;
}

.tc-home .tc-auth-card__form .text-danger.small,
.tc-home .tc-auth-card__form small.text-danger {
	font-size: 14px !important;
	line-height: 1.4;
}

/* Flat inputs — login/register, account forms, checkout (overrides legacy style.css 0px radius) */
.tc-home .tc-auth-card__form .form-control,
.tc-home .tc-account-page .tc-account-form .form-control,
.tc-home .tc-checkout-page .form-control:not(#card-element),
.tc-home .tc-inner-page .register .form-control {
	border-radius: var(--tc-input-radius);
	border: 1px solid #d8dbe2;
	background: #fff;
	padding: 14px 22px;
	height: auto;
	min-height: 62px;
	/* 16px+ avoids iOS zoom-on-focus and keeps a readable floor */
	font-size: 16px;
	color: #1a1d26;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tc-home .tc-auth-card__form .form-control::placeholder,
.tc-home .tc-account-page .tc-account-form .form-control::placeholder,
.tc-home .tc-checkout-page .form-control:not(#card-element)::placeholder,
.tc-home .tc-inner-page .register .form-control::placeholder {
	color: #848a98;
	opacity: 1;
	font-size: 14px;
}

.tc-home .tc-auth-card__form .form-control:hover,
.tc-home .tc-account-page .tc-account-form .form-control:hover,
.tc-home .tc-checkout-page .form-control:not(#card-element):hover,
.tc-home .tc-inner-page .register .form-control:hover {
	border-color: #cfd3dc;
}

.tc-home .tc-auth-card__form .form-control:focus,
.tc-home .tc-account-page .tc-account-form .form-control:focus,
.tc-home .tc-checkout-page .form-control:not(#card-element):focus,
.tc-home .tc-inner-page .register .form-control:focus {
	border-color: #3a65c3;
	box-shadow: 0 0 0 2px rgba(58, 101, 195, 0.45);
	outline: none;
}

.tc-home .tc-auth-card__form .form-control.is-invalid,
.tc-home .tc-account-page .tc-account-form .form-control.is-invalid,
.tc-home .tc-checkout-page .form-control:not(#card-element).is-invalid,
.tc-home .tc-inner-page .register .form-control.is-invalid {
	background: #f7e9eb;
	box-shadow: 0 0 0 2px rgba(200, 60, 80, 0.35);
}

.tc-home .tc-auth-card__form .form-control.is-invalid:focus,
.tc-home .tc-account-page .tc-account-form .form-control.is-invalid:focus,
.tc-home .tc-checkout-page .form-control:not(#card-element).is-invalid:focus,
.tc-home .tc-inner-page .register .form-control.is-invalid:focus {
	box-shadow: 0 0 0 2px rgba(200, 60, 80, 0.45);
}

/* Stripe Elements mount — same corner radius, tighter padding than text fields */
.tc-home .tc-checkout-page #card-element.form-control {
	border-radius: var(--tc-input-radius);
	border: 1px solid #d8dbe2;
	background: #fff;
	padding: 12px 14px;
	min-height: 48px;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tc-home .tc-checkout-page #card-element.form-control:focus-within {
	border-color: #3a65c3;
	box-shadow: 0 0 0 2px rgba(58, 101, 195, 0.45);
	outline: none;
}

.tc-home .tc-auth-card__remember {
	margin-bottom: 1.4rem;
}

/* Remember me — custom checkbox (home13 omits style.css tw_checkbox base) */
.tc-home .tc-auth-card .tw_checkbox {
	position: relative;
	display: flex;
	height: auto;
	min-height: 2.25rem;
	align-items: center;
}

.tc-home .tc-auth-card .tw_checkbox input {
	display: none;
}

.tc-home .tc-auth-card .tw_checkbox label {
	position: relative;
	z-index: 2;
	margin-bottom: 0;
	padding-left: 2.85rem;
	font-size: 16px;
	font-weight: 400;
	color: #585e6b;
	cursor: pointer;
}

.tc-home .tc-auth-card .tw_checkbox span {
	position: absolute;
	left: 0;
	z-index: 1;
	box-sizing: content-box;
	display: inline-block;
	width: 1.6rem;
	height: 1.6rem;
	border: 3px solid #c8cbd2;
	border-radius: 6px;
	transition: all 0.2s;
}

.tc-home .tc-auth-card .tw_checkbox span:before,
.tc-home .tc-auth-card .tw_checkbox span:after {
	content: "";
	display: inline-block;
	background: #fff;
	width: 0;
	height: 0.2rem;
	position: absolute;
	transform-origin: 0% 0%;
}

.tc-home .tc-auth-card .tw_checkbox span:before {
	transform: rotate(-55deg);
	top: 1.36rem;
	left: 0.54rem;
}

.tc-home .tc-auth-card .tw_checkbox span:after {
	transform: rotate(35deg);
	bottom: 0.5rem;
	left: 0.3rem;
}

.tc-home .tc-auth-card .tw_checkbox input:checked ~ span {
	background: #3a65c3;
	border-color: #3a65c3;
}

.tc-home .tc-auth-card .tw_checkbox input:checked ~ span:before {
	width: 1rem;
	height: 0.15rem;
	transition: width 0.1s;
	transition-delay: 0.3s;
}

.tc-home .tc-auth-card .tw_checkbox input:checked ~ span:after {
	width: 0.4rem;
	height: 0.15rem;
	transition: width 0.1s;
	transition-delay: 0.2s;
}

/* Primary action: same pill width + height rhythm as inputs */
.tc-home .tc-auth-card__form input[type="submit"].tc-btn-pink.tc-auth-card__submit,
.tc-home .tc-auth-card__form button.tc-btn-pink.tc-auth-card__submit {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-top: 4px;
	cursor: pointer;
	min-height: 62px;
	padding: 14px 28px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	border-radius: var(--tc-input-radius);
	border: none;
	-webkit-appearance: none;
	appearance: none;
}

.tc-home .tc-auth-card__footer {
	margin-top: 1.7rem;
	padding-top: 0;
	border-top: 0;
	text-align: center;
}

.tc-home .tc-auth-card__link-row {
	margin-bottom: 0;
}

.tc-home .tc-auth-card__link-row:last-child {
	margin-bottom: 0;
}

.tc-home .tc-auth-card__link-row {
	font-size: 16px;
}

.tc-home .tc-auth-card__link-row a {
	color: #3f4653;
	font-weight: 400;
	text-decoration: none;
	font-size: inherit;
}

.tc-home .tc-auth-card__link-row a:hover {
	text-decoration: underline;
}

.tc-home .tc-login-page {
	background: #edf0f5;
	padding-top: 60px;
	padding-bottom: 72px;
}

.tc-deals-card {
	background: #fff;
	border-radius: var(--tc-radius);
	border: 1px solid #e4e6ea;
	padding: 28px 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.tc-deals-card h3 {
	font-size: 1.35rem;
	color: var(--tc-navy);
	margin-bottom: 8px;
}

.tc-deals-card p {
	color: #666;
	margin: 0;
}

.tc-deals-products {
	margin-top: 28px;
}

.tc-product-card__price--deal {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 8px 10px;
}

.tc-product-card__price-old {
	color: #888;
	font-weight: 500;
	font-size: 15px;
	text-decoration: line-through;
}

.tc-product-card__price-current {
	color: var(--tc-pink);
	font-weight: 700;
	font-size: 18px;
}

.tc-product-card {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: var(--tc-radius);
	padding: 22px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s;
}

.tc-product-card:hover {
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.08);
}

.tc-product-card__icon {
	font-size: 42px;
	color: #222;
	margin-bottom: 12px;
}

.tc-product-card__thumb-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.tc-product-card__img {
	margin-bottom: 12px;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tc-product-card__img img {
	max-height: 180px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.25s ease;
	transform: translateZ(0) scale(1);
	will-change: transform;
}

.tc-product-card:hover .tc-product-card__img img,
.tc-product-card__thumb-link:hover .tc-product-card__img img {
	transform: translateY(-2px) scale(1.04);
}

.tc-product-card__name {
	font-weight: 600;
	color: var(--tc-navy);
	margin-top: auto;
	margin-bottom: 8px;
	font-size: 17px;
}

.tc-product-card__name a {
	color: var(--tc-navy);
	text-decoration: none;
}

.tc-product-card__name a:hover {
	color: var(--tc-pink);
}

.tc-product-card__price {
	color: var(--tc-pink);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 14px;
}

.tc-organic-card {
	background: #fff;
	border-radius: var(--tc-radius);
	border: 1px solid #e0e3e8;
	padding: 16px 18px 18px;
	height: 100%;
	font-size: max(14px, 0.875rem);
	display: flex;
	flex-direction: column;
}

.tc-organic-card h4 {
	font-size: max(14px, 1.0625rem);
	font-weight: 600;
	color: var(--tc-navy);
	margin-top: auto;
	margin-bottom: 8px;
	line-height: 1.35;
}

.tc-organic-card h4 a {
	color: var(--tc-navy);
	text-decoration: none;
}

.tc-organic-card h4 a:hover {
	color: var(--tc-pink);
}

.tc-organic-card__price {
	font-size: max(14px, 0.875rem);
	font-weight: 700;
	color: var(--tc-pink);
	line-height: 1.3;
}

.tc-organic-card__thumb {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 175px;
	margin-bottom: 12px;
	padding: 8px 4px;
	background: #fafbfc;
	border-radius: 10px;
	border: 1px solid #eef0f3;
}

.tc-organic-card__thumb img {
	max-height: 225px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.25s ease;
	transform: translateZ(0) scale(1);
	will-change: transform;
}

.tc-organic-card:hover .tc-organic-card__thumb img,
.tc-organic-card__thumb:hover img {
	transform: translateY(-2px) scale(1.04);
}

.tc-organic-card .tc-btn-outline-pink {
	font-size: max(14px, 0.875rem);
	padding: 10px 18px;
	letter-spacing: 0.04em;
	width: 100%;
	text-align: center;
}

.tc-stock {
	font-size: max(14px, 0.875rem);
	font-weight: 600;
}

.tc-stock--ok {
	color: #2e7d32;
}

.tc-stock--low {
	color: #888;
}

.tc-organic-card a {
	font-size: max(14px, 0.875rem);
	font-weight: 600;
}

.tc-about-summary {
	background-color: #fff7ed;
	background-image: repeating-radial-gradient(
		circle at 50% 42%,
		transparent 0,
		transparent 56px,
		rgba(255, 237, 213, 0.65) 56px,
		rgba(255, 237, 213, 0.65) 57px
	);
	padding: 64px 0;
}

.tc-about-summary__content {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	color: #1e293b;
}

.tc-about-summary__kicker {
	font-size: 14px;
	font-weight: 600;
	color: var(--tc-navy-deep, #2e53a8);
	margin-bottom: 10px;
}

.tc-about-summary h2 {
	font-size: clamp(1.85rem, 3.2vw, 2.3rem);
	font-weight: 700;
	color: var(--tc-navy-deep, #2e53a8);
	margin-bottom: 18px;
}

.tc-about-summary p {
	font-size: 16px;
	line-height: 1.75;
	color: #475569;
	margin: 0 0 14px;
}

.tc-about-summary p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.tc-about-summary {
		padding: 44px 0;
	}
	.tc-about-summary p {
		font-size: 14px;
		line-height: 1.65;
	}
}

/* ——— Product Page (home13 design language) ——— */
.tc-home .tc-product-page {
	background: #fff;
}

.tc-home .tc-product-page .breadcrumb-section {
	background: #f7f9fc;
	border-bottom: 1px solid #e8edf5;
	padding: 16px 0;
}

.tc-home .tc-product-page .breadcrumb {
	background: transparent;
	margin: 0;
	padding: 0;
}

.tc-home .tc-product-page .breadcrumb-item,
.tc-home .tc-product-page .breadcrumb-item a {
	font-size: 14px;
	color: #4b5f85;
}

.tc-home .tc-product-page .page-title {
	text-align: right;
}

.tc-home .tc-product-page .page-title h1 {
	margin: 0;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	color: var(--tc-navy);
	font-weight: 700;
}

.tc-home .tc-product-page .inner-section {
	padding: 40px 0 24px;
	background: #fff;
}

.tc-home .tc-product-page .product-details-slider .item {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 24px;
}

.tc-home .tc-product-page .product-details-slider .item img {
	width: 100%;
	max-height: 350px;
	object-fit: contain;
}

.tc-home .tc-product-page .thumbnail-card {
	display: block;
	margin-top: 12px;
	padding-left: 12px;
}

.tc-home .tc-product-page .thumbnail-card .slick-list {
	margin: 0 -16px;
}

.tc-home .tc-product-page .thumbnail-card .slick-slide {
	padding: 0 16px;
	height: auto;
}

.tc-home .tc-product-page .thumbnail-card .thumbnail-card__item {
	border: 1px solid #e4e8f0;
	border-radius: 10px;
	background: #fff;
	height: 106px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tc-home .tc-product-page .thumbnail-card .thumbnail-card__item img {
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	max-width: calc(100% - 6px);
	max-height: calc(100% - 6px);
	object-fit: contain;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
	margin: 0;
	display: block;
}

/* Fallback when slick is not initialized (few images or JS race) */
.tc-home .tc-product-page .thumbnail-card:not(.slick-initialized) {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.tc-home .tc-product-page .thumbnail-card:not(.slick-initialized) .thumbnail-card__item {
	flex: 0 0 116px;
	width: 116px;
	height: 106px;
	border: 1px solid #e4e8f0;
	border-radius: 10px;
	background: #fff;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tc-home .tc-product-page .thumbnail-card:not(.slick-initialized) .thumbnail-card__item img {
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	max-width: calc(100% - 6px);
	max-height: calc(100% - 6px);
	object-fit: contain;
}

.tc-home .tc-product-page .thumbnail-card .slick-slide.slick-current .thumbnail-card__item,
.tc-home .tc-product-page .thumbnail-card .slick-slide.slick-active:hover .thumbnail-card__item {
	border-color: #263f6b;
	box-shadow: 0 0 0 1px #263f6b;
}

.tc-home .tc-product-page .pr_details {
	padding: 6px 0 0 8px;
}

.tc-home .tc-product-page .pr_details .product_title {
	font-size: clamp(1.6rem, 3vw, 2rem);
	color: #1a2e57;
	font-weight: 700;
	margin-bottom: 10px;
}

.tc-home .tc-product-page .pr_details p {
	color: #304b79;
	font-size: 15px;
	line-height: 1.6;
}

.tc-home .tc-product-page .product_price {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 14px 0;
}

.tc-home .tc-product-page .item-price {
	font-size: 34px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--tc-navy);
}

.tc-home .tc-product-page .old-item-price {
	font-size: 18px;
	text-decoration: line-through;
	color: #7f8da8;
}

.tc-home .tc-product-page .discount {
	display: inline-block;
	padding: 4px 10px;
	background: #e8f3ff;
	color: var(--tc-navy);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
}

.tc-home .tc-product-page .pr_quantity {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 18px 0 14px;
}

.tc-home .tc-product-page .pr_quantity label {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #1f2f4f;
}

.tc-home .tc-product-page .pr_quantity input {
	width: 96px;
	height: 42px;
	border: 1px solid #ced8ea;
	border-radius: 14px;
	padding: 0 10px;
	font-size: 16px;
}

.tc-home .tc-product-page .pr_buy_cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.tc-home .tc-product-page .pr_buy_cart .btn.theme-btn.cart {
	border-radius: 16px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	border: 1px solid var(--tc-navy);
}

.tc-home .tc-product-page .pr_buy_cart .btn.product_addtocart {
	background: var(--tc-navy);
	color: #fff;
}

.tc-home .tc-product-page .pr_buy_cart .btn.product_buy_now {
	background: #fff;
	color: var(--tc-navy);
}

.tc-home .tc-product-page .pr_buy_cart .btn.wishlist {
	min-width: 44px;
	padding-left: 0;
	padding-right: 0;
	background: #fff;
	color: var(--tc-navy);
}

.tc-home .tc-product-page .pr_extra {
	font-size: 14px;
	color: #253a61;
	margin-bottom: 8px;
}

.tc-home .tc-product-page .pr_extra a {
	color: var(--tc-navy);
}

.tc-home .tc-product-page .pr_extra span {
	margin-left: 10px;
}

.tc-home .tc-product-page .pr_extra .instock {
	color: #44b749;
	font-weight: 600;
}

.tc-home .tc-product-page .pr_extra .stockout {
	color: #d9534f;
	font-weight: 600;
}

.tc-home .tc-product-page .pr_widget {
	margin: 10px 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tc-home .tc-product-page .pr_widget .widget-title {
	display: inline-block;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #263b64;
}

.tc-home .tc-product-page .pr_widget .widget-size {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tc-home .tc-product-page .pr_widget .widget-size .unit {
	list-style: none;
	margin: 0;
	padding: 4px 12px;
	border-radius: 999px;
	background: #eef4ff;
	border: 1px solid #d7e4fb;
	color: #1f3f82;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.tc-home .tc-product-page .tc-product-in-cart {
	font-size: 14px;
	color: #263b64;
	margin-top: 2px;
}

.tc-home .tc-product-page .tc-product-in-cart__qty {
	font-weight: 700;
	color: var(--tc-pink, #e91e8c);
}

.tc-home .tc-product-page .pr-description-review {
	margin-top: 30px;
	border: 1px solid #e4e9f3;
	border-radius: 12px;
	background: #fff;
}

.tc-home .tc-product-page .desc-review-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px;
	border-bottom: 1px solid #e4e9f3;
}

.tc-home .tc-product-page .desc-review-nav a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 8px;
	color: #2d4470;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.tc-home .tc-product-page .desc-review-nav a.active,
.tc-home .tc-product-page .desc-review-nav a:hover {
	background: #eaf2ff;
	color: var(--tc-navy);
}

.tc-home .tc-product-page .pr-description-review .tab-content {
	padding: 18px 20px 20px;
}

.tc-home .tc-product-page .entry,
.tc-home .tc-product-page .review-content,
.tc-home .tc-product-page .store-content {
	font-size: 14px;
	color: #253a61;
}

.tc-home .tc-product-page .stores-card {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #f9fbff;
	border: 1px solid #e3ebf8;
	border-radius: 12px;
	padding: 18px;
}

.tc-home .tc-product-page .stores-card .store-logo {
	flex: 0 0 74px;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #eaf2ff;
	border: 1px solid #d7e4fb;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tc-home .tc-product-page .stores-card .store-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tc-home .tc-product-page .stores-card .store-logo .text {
	font-size: 26px;
	font-weight: 700;
	color: var(--tc-navy);
}

.tc-home .tc-product-page .stores-card .desc {
	flex: 1 1 auto;
}

.tc-home .tc-product-page .stores-card .store-name {
	margin: 0 0 4px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.tc-home .tc-product-page .stores-card .store-name a {
	color: #182949;
	text-decoration: none;
}

.tc-home .tc-product-page .stores-card .store-name a:hover {
	color: var(--tc-navy);
}

.tc-home .tc-product-page .stores-card .since {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	color: #2d3f66;
}

.tc-home .tc-product-page .stores-card .rating-wrap {
	margin-bottom: 12px;
}

.tc-home .tc-product-page .stores-card .rating-count {
	font-size: 14px;
	font-weight: 600;
	color: #40557f;
}

.tc-home .tc-product-page .stores-card .info {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tc-home .tc-product-page .stores-card .info li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 16px;
	color: #2f4570;
	margin-bottom: 8px;
	line-height: 1.4;
}

.tc-home .tc-product-page .stores-card .info li:last-child {
	margin-bottom: 0;
}

.tc-home .tc-product-page .stores-card .info li i {
	color: var(--tc-navy);
	font-size: 18px;
	line-height: 1.2;
	margin-top: 2px;
}

@media (max-width: 767px) {
	.tc-home .tc-product-page .stores-card {
		flex-direction: column;
		gap: 14px;
		padding: 14px;
	}

	.tc-home .tc-product-page .stores-card .store-name {
		font-size: 20px;
	}

	.tc-home .tc-product-page .stores-card .info li {
		font-size: 14px;
	}
}

.tc-home .tc-product-page .review-heading h4 {
	font-size: 18px;
	color: #1a2e57;
	font-weight: 700;
	margin-bottom: 14px;
}

.tc-home .tc-product-page .review-body {
	border: 1px solid #e4e9f3;
	border-radius: 10px;
	background: #fff;
	padding: 8px 14px;
}

.tc-home .tc-product-page .review-card {
	display: flex;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #eef2f8;
}

.tc-home .tc-product-page .review-card:last-child {
	border-bottom: 0;
}

.tc-home .tc-product-page .review-photo {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #eaf0fb;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #23457e;
	font-weight: 700;
}

.tc-home .tc-product-page .review-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tc-home .tc-product-page .review-info .author-name {
	font-size: 15px;
	font-weight: 700;
	color: #1f2f4f;
}

.tc-home .tc-product-page .review-info .date {
	font-size: 13px;
	color: #6f7f9d;
	margin: 4px 0 6px;
}

.tc-home .tc-product-page .review-info .desc p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #2f4268;
}

.tc-home .tc-product-page .review-form {
	margin-top: 20px;
	background: #f8fbff;
	border: 1px solid #e3ebf8;
	border-radius: 12px;
	padding: 16px;
}

.tc-home .tc-product-page .review-form h4 {
	font-size: 20px;
	font-weight: 700;
	color: #1a2e57;
	margin-bottom: 8px;
}

.tc-home .tc-product-page .review-form p {
	font-size: 14px;
	color: #4d628a;
	margin-bottom: 14px;
}

.tc-home .tc-product-page .review-form .form-label {
	font-size: 14px;
	font-weight: 600;
	color: #1f2f4f;
}

.tc-home .tc-product-page .review-form .form-control,
.tc-home .tc-product-page .review-form .form-select {
	border: 1px solid #ccd8ec;
	border-radius: var(--tc-input-radius);
	font-size: 14px;
	color: #1f2f4f;
}

.tc-home .tc-product-page .tc-rating-widget {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.tc-home .tc-product-page .tc-rating-widget__star {
	border: 0;
	background: transparent;
	padding: 0;
	line-height: 1;
	cursor: pointer;
	color: #cfd7e6;
	font-size: 28px;
}

.tc-home .tc-product-page .tc-rating-widget__star.is-active {
	color: #f68b2a;
}

.tc-home .tc-product-page .tc-rating-widget.is-disabled {
	pointer-events: none;
	opacity: 0.75;
}

.tc-home .tc-product-page .review-form .btn.theme-btn {
	background: var(--tc-navy);
	border: 1px solid var(--tc-navy);
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	padding: 9px 22px;
}

.tc-home .tc-product-page .section.product-section {
	padding: 30px 0 52px;
}

.tc-home .tc-product-page .section-heading h2 {
	color: var(--tc-navy);
	font-size: clamp(1.4rem, 2.4vw, 1.85rem);
	font-weight: 700;
	margin-bottom: 18px;
}

.tc-home .tc-product-page .item-card {
	background: #fff;
	border: 1px solid #e4e9f3;
	border-radius: 12px;
	padding: 16px;
	height: 100%;
}

.tc-home .tc-product-page .item-image {
	text-align: center;
	margin-bottom: 10px;
}

.tc-home .tc-product-page .item-image img {
	width: 100%;
	max-height: 190px;
	object-fit: contain;
}

.tc-home .tc-product-page .item-title a {
	color: #1f3f82;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.tc-home .tc-product-page .item-pric-card .new-price {
	color: #111;
	font-weight: 700;
	font-size: 20px;
}

.tc-home .tc-product-page .item-pric-card .old-price {
	color: #7f8da8;
	font-size: 14px;
	text-decoration: line-through;
}

.tc-home .tc-product-page .item-card-bottom .add-to-cart {
	border: 2px solid var(--tc-navy);
	color: var(--tc-navy);
	font-weight: 700;
	border-radius: 8px;
	padding: 9px 12px;
	display: inline-block;
	text-decoration: none;
}

/* Search results: keep pagination / last row clear of fixed floats on small screens */
@media (max-width: 767px) {
	.tc-home .tc-search-page > .tc-section {
		padding-bottom: 88px;
	}
}

/* ——— Footer (light strip + multi-column) ——— */
.tc-home .tc-footer.ps-footer {
	background: var(--tc-footer-bg);
	/* Space above fixed floats (WhatsApp, cookie, back-to-top) so the last rows /
	   pagination can scroll into view; theme default was ~55px mobile padding. */
	padding-bottom: max(100px, env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--tc-footer-border);
	box-shadow: none;
}

@media (min-width: 768px) {
	.tc-home .tc-footer.ps-footer {
		padding-bottom: 48px;
	}
}

.tc-footer__promo {
	background: var(--tc-footer-promo-bg);
	border-bottom: 1px solid var(--tc-footer-border);
}

.tc-footer__promo-row {
	margin-left: 0;
	margin-right: 0;
}

.tc-footer__promo-cell {
	padding-top: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--tc-footer-border);
}

.tc-footer__promo-cell:last-child {
	border-bottom: none;
}

@media (min-width: 992px) {
	.tc-footer__promo-cell {
		border-bottom: none;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.tc-footer__promo-cell:not(:last-child) {
		border-inline-end: 1px solid var(--tc-footer-border);
	}
}

.tc-footer__promo-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--tc-footer-heading);
	font-size: 15px;
}

.tc-footer__promo-inner i {
	font-size: 22px;
	font-weight: normal;
	opacity: 0.95;
}

.tc-footer__main {
	background: var(--tc-footer-bg);
}

.tc-footer__grid {
	align-items: flex-start;
}

.tc-footer__col {
	padding-top: 6px;
	padding-bottom: 6px;
}

@media (min-width: 992px) {
	.tc-footer__col + .tc-footer__col {
		border-inline-start: 1px solid var(--tc-footer-border);
		padding-inline-start: 22px;
	}
}

.tc-footer__logo-img {
	max-height: 52px;
}

.tc-footer__address {
	font-size: 14px;
	color: var(--tc-footer-muted);
	line-height: 1.5;
	max-width: 280px;
	margin-bottom: 6px;
}

.tc-footer__map-wrap {
	margin-bottom: 0;
}

.tc-footer__map-link {
	font-size: 14px;
	color: var(--tc-footer-muted);
	text-decoration: underline;
}

.tc-footer__map-link:hover {
	color: var(--tc-footer-heading);
}

.tc-footer .tc-header__logo-mark {
	width: 38px;
	height: 38px;
}

.tc-footer .tc-header__logo-text strong {
	font-size: 14px;
}

.tc-footer .tc-header__logo-text small {
	font-size: 14px;
}

.tc-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	min-width: 28px;
	min-height: 28px;
	padding: 4px 6px;
	margin-right: 4px;
	border-radius: 0;
	background: transparent;
	color: var(--tc-footer-heading) !important;
	font-size: 18px;
	text-decoration: none;
}

.tc-footer__social a:hover {
	color: var(--tc-navy) !important;
	opacity: 0.85;
}

.tc-footer__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--tc-footer-heading);
	margin-bottom: 14px;
	line-height: 1.2;
}

.tc-footer__title--sm {
	font-size: 16px;
	margin-bottom: 12px;
}

.tc-footer__phone-block {
	margin-bottom: 12px;
}

.tc-footer__phone-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--tc-footer-heading);
}

.tc-footer__phone-link:hover {
	text-decoration: none;
	color: var(--tc-navy);
}

.tc-footer__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--tc-footer-accent-phone);
	color: #fff;
	font-size: 16px;
	flex-shrink: 0;
}

.tc-footer__phone-num {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--tc-footer-heading);
}

.tc-footer__hours {
	font-size: 13px;
	color: var(--tc-footer-muted);
	line-height: 1.45;
}

.tc-footer__rule {
	margin: 16px 0 14px;
	border: 0;
	border-top: 1px solid var(--tc-footer-border);
}

.tc-footer__email-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tc-footer__email-icon {
	font-size: 18px;
	color: var(--tc-footer-heading);
}

.tc-footer__email-link {
	font-size: 15px;
	font-weight: 700;
	color: var(--tc-footer-heading);
	text-decoration: none;
	word-break: break-word;
}

.tc-footer__email-link:hover {
	color: var(--tc-navy);
	text-decoration: underline;
}

.tc-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tc-footer__links li {
	margin-bottom: 10px;
}

.tc-footer__links a {
	color: var(--tc-footer-muted);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
}

.tc-footer__links a:hover {
	color: var(--tc-footer-heading);
}

.tc-footer__bottom {
	background: var(--tc-footer-bg);
	padding: 16px 0;
	margin-top: 0;
	border-top: 1px solid var(--tc-footer-border);
	font-size: 14px;
	color: var(--tc-footer-muted);
	text-align: center;
}

/* Back to top: must be position:fixed + display:none in-flow (home omits style.css a.scroll-to-top rules) */
.tc-home .scroll-to-top {
	position: fixed;
	right: 24px;
	bottom: 96px;
	z-index: 9000;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--tc-navy) !important;
	color: #fff !important;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(21, 36, 90, 0.35);
	padding: 0;
	line-height: 1;
}

.tc-home .scroll-to-top i {
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.tc-home .tc-cookie-float {
	position: fixed;
	left: 24px;
	bottom: 92px;
	z-index: 9999;
	width: 56px;
	height: 56px;
	border: 3px solid transparent;
	border-radius: 14px;
	background: #f6f8fc;
	color: #374151;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-shadow: 0 6px 16px rgba(58, 101, 195, 0.18), 0 2px 6px rgba(17, 24, 39, 0.08);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tc-home .tc-cookie-float__icon {
	display: block;
	width: 28px;
	height: 28px;
	object-fit: contain;
	pointer-events: none;
}

.tc-home .tc-cookie-float:hover {
	transform: translateY(-2px);
	background: #fff;
	border-color: var(--tc-navy, #3a65c3);
	box-shadow: 0 8px 22px rgba(58, 101, 195, 0.22), 0 2px 8px rgba(17, 24, 39, 0.1);
}

.tc-home .tc-cookie-float:focus {
	outline: 2px solid var(--tc-navy);
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.tc-home .tc-cookie-float {
		left: 16px;
		bottom: 88px;
		width: 52px;
		height: 52px;
	}

	.tc-home .tc-cookie-float__icon {
		width: 26px;
		height: 26px;
	}
}

/* ——— CMS pages (FAQ, policy, etc.) ——— */
.tc-home .tc-cms-page .tc-cms-panel {
	border: 1px solid #e4e9f3;
	border-radius: var(--tc-radius, 12px);
	background: #fff;
	padding: 28px 32px;
	box-shadow: 0 1px 0 rgba(58, 101, 195, 0.04);
}

.tc-home .tc-cms-page .tc-cms-panel .entry {
	line-height: 1.65;
}

.tc-home .tc-cms-page .tc-cms-panel .entry > *:first-child {
	margin-top: 0;
}

.tc-home .tc-cms-page .tc-cms-panel .entry h1,
.tc-home .tc-cms-page .tc-cms-panel .entry h2,
.tc-home .tc-cms-page .tc-cms-panel .entry h3,
.tc-home .tc-cms-page .tc-cms-panel .entry h4,
.tc-home .tc-cms-page .tc-cms-panel .entry h5,
.tc-home .tc-cms-page .tc-cms-panel .entry h6 {
	color: #1a2e57;
	font-weight: 700;
	margin-top: 1.35em;
	margin-bottom: 0.5em;
	line-height: 1.3;
}

.tc-home .tc-cms-page .tc-cms-panel .entry h6 {
	font-size: 15px;
	text-transform: none;
	letter-spacing: 0;
}

.tc-home .tc-cms-page .tc-cms-panel .entry p {
	margin-bottom: 1em;
}

.tc-home .tc-cms-page .tc-cms-panel .entry ul,
.tc-home .tc-cms-page .tc-cms-panel .entry ol {
	margin: 0 0 1em 0;
	padding-left: 1.25rem;
}

.tc-home .tc-cms-page .tc-cms-panel .entry a {
	color: var(--tc-navy);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tc-home .tc-cms-page .tc-cms-panel .entry a:hover {
	color: var(--tc-navy-deep, #2e53a8);
}

/* CMS body card — match home13 auth / contact cards */
.tc-home .tc-cms-page .tc-cms-panel.tc-cms-panel--home13 {
	border-radius: 18px;
	border-color: #e4e6ea;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
}

@media (max-width: 767px) {
	.tc-home .tc-cms-page .tc-cms-panel {
		padding: 20px 18px;
	}
}

/* ——— Order tracking (matches auth / search page rhythm) ——— */
.tc-home .tc-order-tracking-page .tc-order-tracking-results {
	margin-top: 8px;
}

.tc-home .tc-order-tracking-empty {
	border-radius: var(--tc-radius);
	font-weight: 600;
}

/* Timeline */
.tc-home .tc-order-tracking-page .order_tracking_card.tc-order-tracking-timeline {
	margin: 0 auto 40px;
	text-align: center;
	padding: 28px 20px 36px;
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tc-navy);
	margin-bottom: 28px;
	text-align: center;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	list-style: none;
	margin: 48px auto 0;
	padding: 0;
	max-width: 920px;
	gap: 12px;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list::after {
	content: "";
	display: none;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li {
	float: none;
	width: calc(25% - 12px);
	min-width: 140px;
	position: relative;
	border-top: 3px dotted rgba(58, 101, 195, 0.35);
	padding-top: 36px;
	text-align: center;
	flex: 1 1 140px;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li:last-child {
	border-top: 3px dotted rgba(58, 101, 195, 0.35);
	width: auto;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li strong {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #1a2e57;
	line-height: 1.35;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li .order_track_item {
	width: 52px;
	height: 52px;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 52px;
	font-size: 26px;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li .order_track_item.check {
	background: var(--tc-navy);
}

.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li .order_track_item.x {
	background: #b8c0d4;
}

/* Details blocks */
.tc-home .tc-order-tracking-page .tc-order-tracking-details__block {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 18px;
	padding: 22px 24px;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	height: 100%;
	font-size: 15px;
	color: #3a3f4d;
	line-height: 1.5;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-details__heading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--tc-navy);
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

@media (min-width: 992px) {
	.tc-home .tc-order-tracking-page .tc-order-tracking-details__block--meta {
		padding-top: 40px;
	}
}

/* Line items table */
.tc-home .tc-order-tracking-page .tc-order-tracking-table-wrap {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 18px;
	padding: 8px 8px 4px;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	margin-bottom: 24px;
	overflow: hidden;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-table {
	margin-bottom: 0;
	font-size: 15px;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-table thead th {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e4e6ea;
	vertical-align: middle;
	padding: 14px 12px;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-table tbody td {
	vertical-align: middle;
	padding: 14px 12px;
	border-color: #eef0f4;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-table .pro-image img {
	border-radius: 10px;
	max-width: 72px;
	height: auto;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-table .pro-name a {
	color: var(--tc-navy);
	font-weight: 600;
	text-decoration: none;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-table .pro-name a:hover {
	text-decoration: underline;
}

/* Totals card */
.tc-home .tc-order-tracking-page .tc-order-tracking-totals {
	border-radius: 18px;
	border: 1px solid #e4e6ea;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	overflow: hidden;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-totals .carttotals-body {
	padding: 8px 4px 4px;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-totals table tr td {
	padding: 12px 16px;
	border-color: #eef0f4;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-totals span.title {
	color: #3a3f4d;
	font-weight: 500;
}

.tc-home .tc-order-tracking-page .tc-order-tracking-totals span.price,
.tc-home .tc-order-tracking-page .tc-order-tracking-totals span.total-price {
	font-weight: 700;
	color: var(--tc-navy);
}

.tc-home .tc-order-tracking-page .tc-order-tracking-totals span.total {
	font-weight: 700;
	color: #1a2e57;
	font-size: 1.05rem;
}

/* --- Cart page (home13 shell) --- */
.tc-home .tc-cart-page .breadcrumb-section {
	background: #f7f9fc;
	border-bottom: 1px solid #e8edf5;
	padding: 14px 0;
}

.tc-home .tc-cart-page .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.tc-home .tc-cart-page .breadcrumb-item,
.tc-home .tc-cart-page .breadcrumb-item a {
	font-size: 14px;
	color: #4b5f85;
}

.tc-home .tc-cart-page .page-title h1 {
	margin: 0;
	font-size: clamp(1.6rem, 2.8vw, 2.1rem);
	line-height: 1.2;
	color: var(--tc-navy);
	font-weight: 700;
}

.tc-home .tc-cart-page .inner-section {
	padding: 28px 0 44px;
}

.tc-home .tc-cart-page .shopping-cart {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	overflow: hidden;
	margin-bottom: 16px;
}

.tc-home .tc-cart-page .shopping-cart .table {
	margin-bottom: 0;
	font-size: 15px;
}

.tc-home .tc-cart-page .shopping-cart .table thead th {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e4e6ea;
	vertical-align: middle;
	padding: 12px 10px;
}

.tc-home .tc-cart-page .shopping-cart .table tbody td {
	vertical-align: middle;
	padding: 14px 10px;
	border-color: #eef0f4;
	font-size: 15px;
}

.tc-home .tc-cart-page .shopping-cart .pro-image img {
	max-width: 88px;
	width: 88px;
	height: 88px;
	object-fit: contain;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #eef0f4;
}

.tc-home .tc-cart-page .shopping-cart .pro-name a,
.tc-home .tc-cart-page .shopping-cart .pro-store-w a {
	color: var(--tc-navy);
	font-weight: 600;
	text-decoration: none;
}

.tc-home .tc-cart-page .shopping-cart .pro-name a:hover,
.tc-home .tc-cart-page .shopping-cart .pro-store-w a:hover {
	text-decoration: underline;
}

.tc-home .tc-cart-page .shopping-cart .pro-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(58, 101, 195, 0.1);
	color: var(--tc-navy);
	font-size: 14px;
}

.tc-home .tc-cart-page .shopping-cart .pro-remove:hover {
	background: var(--tc-navy);
	color: #fff;
	text-decoration: none;
}

.tc-home .tc-cart-page .carttotals-card {
	border-radius: 18px;
	border: 1px solid #e4e6ea;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	overflow: hidden;
}

/* Checkout: avoid clipping M-PESA fields and focus rings */
.tc-home .tc-checkout-page .carttotals-card {
	overflow: visible;
}

.tc-home .tc-cart-page .carttotals-head {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 12px 16px;
}

.tc-home .tc-cart-page .carttotals-body {
	padding: 8px 4px 14px;
}

.tc-home .tc-cart-page .carttotals-body table tr td {
	padding: 11px 16px;
	border-color: #eef0f4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.tc-home .tc-cart-page .carttotals-body span.title {
	color: #3a3f4d;
	font-size: 15px;
	font-weight: 500;
}

.tc-home .tc-cart-page .carttotals-body span.price,
.tc-home .tc-cart-page .carttotals-body span.total-price {
	color: var(--tc-navy);
	font-weight: 700;
	font-size: 15px;
	white-space: nowrap;
}

.tc-home .tc-cart-page .carttotals-body span.total {
	color: #1a2e57;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.2;
}

.tc-home .tc-cart-page .carttotals-body .btn.theme-btn {
	display: block;
	width: calc(100% - 24px);
	margin: 8px auto 0;
	border-radius: 999px;
	background: var(--tc-navy);
	border: 1px solid var(--tc-navy);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 18px;
	text-align: center;
}

.tc-home .tc-cart-page .carttotals-body .btn.theme-btn:hover {
	background: var(--tc-navy-deep);
	border-color: var(--tc-navy-deep);
}

@media (max-width: 991px) {
	.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li {
		min-width: calc(50% - 8px);
		flex: 1 1 calc(50% - 8px);
		margin-bottom: 28px;
	}

	.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list {
		margin-top: 36px;
	}
}

@media (max-width: 575px) {
	.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li {
		min-width: 100%;
		flex: 1 1 100%;
		border-top: none;
		padding-top: 0;
		padding-bottom: 20px;
		border-bottom: 3px dotted rgba(58, 101, 195, 0.25);
	}

	.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.tc-home .tc-order-tracking-page .tc-order-tracking-timeline__list li .order_track_item {
		position: relative;
		top: 0;
		left: auto;
		transform: none;
		margin: 0 auto 10px;
	}
}

/* ——— Contact page (home13 layout) ——— */
.tc-home .tc-contact-page .tc-contact-page__card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tc-navy);
	margin-bottom: 1rem;
}

.tc-home .tc-contact-page .tc-contact-page__intro {
	color: #555;
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.tc-home .tc-contact-page .tc-contact-page__info-list {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.tc-home .tc-contact-page .tc-contact-page__info-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.tc-home .tc-contact-page .tc-contact-page__info-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(58, 101, 195, 0.1);
	color: var(--tc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
}

.tc-home .tc-contact-page .tc-contact-page__info-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #7a8194;
	margin-bottom: 4px;
}

.tc-home .tc-contact-page .tc-contact-page__info-value {
	margin: 0;
	font-size: 16px;
	color: #1a1d26;
	line-height: 1.45;
}

.tc-home .tc-contact-page .tc-contact-page__info-value a {
	color: var(--tc-navy);
	font-weight: 600;
	text-decoration: none;
}

.tc-home .tc-contact-page .tc-contact-page__info-value a:hover {
	text-decoration: underline;
}

.tc-home .tc-contact-page .tc-auth-card__form textarea.form-control {
	border-radius: var(--tc-input-radius);
	min-height: 140px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

.tc-home .tc-contact-page .tc-auth-card__form select.form-control {
	-webkit-appearance: none;
	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='%237a8194' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 44px;
}

.tc-home .tc-contact-page .tc-contact-page__sent {
	margin-top: 1rem;
}

.tc-home .tc-contact-page .tc-contact-page__map-row {
	margin-top: 2rem;
}

.tc-home .tc-contact-page .tc-contact-page__map-card {
	padding: 16px;
}

.tc-home .tc-contact-page .tc-contact-page__google-map {
	min-height: 360px;
	border-radius: 14px;
	overflow: hidden;
	background: #e9ecf2;
}

/* ——— Account area (my orders, dashboard, etc. — home13) ——— */
.tc-home .tc-account-page .tc-account-layout {
	align-items: flex-start;
}

.tc-home .tc-account-page .my-dashbord {
	margin-top: 0;
	margin-bottom: 0;
}

.tc-home .tc-account-page .dashbord-sidebar {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	overflow: hidden;
}

.tc-home .tc-account-page .dashbord-sidebar .profile-info {
	text-align: center;
	padding: 22px 18px 18px;
	border-bottom: 1px solid #eef0f4;
}

.tc-home .tc-account-page .profile-info .avatar {
	width: 88px;
	height: 88px;
	margin: 0 auto;
	border-radius: 50%;
	line-height: 88px;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	background: var(--tc-navy, #3a65c3);
	color: #fff;
}

.tc-home .tc-account-page .profile-info h5 {
	margin: 14px 0 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--tc-navy);
}

.tc-home .tc-account-page .profile-info p {
	margin-bottom: 0;
	font-size: 14px;
	color: #666;
	word-break: break-word;
}

.tc-home .tc-account-page .sidebar-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tc-home .tc-account-page .sidebar-nav ul li a {
	padding: 14px 18px;
	display: flex;
	align-items: center;
	width: 100%;
	color: #1a1d26;
	font-weight: 600;
	font-size: 15px;
	border-bottom: 1px solid #eef0f4;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s;
}

.tc-home .tc-account-page .sidebar-nav ul li:last-child a {
	border-bottom: none;
}

.tc-home .tc-account-page .sidebar-nav ul li a:hover,
.tc-home .tc-account-page .sidebar-nav ul li a.active {
	background: rgba(58, 101, 195, 0.1);
	color: var(--tc-navy) !important;
}

.tc-home .tc-account-page .sidebar-nav ul li a i.bi {
	margin-right: 10px;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.tc-home .tc-account-page .tc-account-main {
	padding: 0;
	/* Avoid clipping pagination / rows (Bootstrap .row negative margins + overflow hidden). */
	overflow: visible;
}

/* Dashboard welcome: restore card padding (main column uses padding: 0 for table layouts). */
.tc-home .tc-account-page.tc-account-dashboard-page .tc-account-main {
	padding: 34px 34px 30px;
}

.tc-home .tc-account-page.tc-account-dashboard-page .tc-account-dashboard-welcome__title {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-weight: 700;
	color: #1a1d26;
}

.tc-home .tc-account-page.tc-account-dashboard-page .tc-account-dashboard-welcome__lead {
	line-height: 1.55;
	color: #5a6578;
	font-size: 16px;
}

.tc-home .tc-account-page.tc-account-dashboard-page .tc-account-dashboard-welcome__lead a {
	color: var(--tc-navy, #3a65c3);
	font-weight: 600;
}

.tc-home .tc-account-page.tc-account-dashboard-page .tc-account-dashboard-welcome__lead a:hover {
	text-decoration: underline;
}

.tc-home .tc-account-page .tc-account-main > .row.mt-3 {
	padding: 4px 12px 20px;
}

.tc-home .tc-account-page .tc-account-table-wrap {
	padding: 8px 8px 4px;
}

.tc-home .tc-account-page .tc-my-orders-table {
	margin-bottom: 0;
	font-size: 15px;
}

.tc-home .tc-account-page .tc-my-orders-table thead th {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e4e6ea;
	vertical-align: middle;
	padding: 12px 10px;
	white-space: nowrap;
}

.tc-home .tc-account-page .tc-my-orders-table tbody td {
	vertical-align: middle;
	padding: 12px 10px;
	border-color: #eef0f4;
	color: #1a1d26;
}

.tc-home .tc-account-page .tc-my-orders-table tbody td a {
	color: var(--tc-navy);
	font-weight: 600;
	text-decoration: none;
}

.tc-home .tc-account-page .tc-my-orders-table tbody td a:hover {
	text-decoration: underline;
}

.tc-home .tc-account-page .tc-my-orders-table__actions {
	white-space: nowrap;
}

.tc-home .tc-account-page .tc-my-orders-table__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(58, 101, 195, 0.1);
	color: var(--tc-navy) !important;
	transition: background 0.2s, color 0.2s;
}

.tc-home .tc-account-page .tc-my-orders-table__action:hover {
	background: var(--tc-navy);
	color: #fff !important;
	text-decoration: none !important;
}

.tc-home .tc-account-page .tc-my-orders-table__empty {
	padding: 28px 16px !important;
	color: #666;
	font-weight: 500;
}

.tc-home .tc-account-page .status_btn {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	background: #f0f2f5;
	color: #3a3f4d;
}

.tc-home .tc-account-page .tc-my-orders-pagination {
	display: flex;
	justify-content: center;
}

.tc-home .tc-account-page .tc-my-orders-pagination .pagination {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
	.tc-home .tc-account-page .tc-my-orders-table thead th {
		white-space: normal;
		font-size: 11px;
	}
}

@media (max-width: 767px) {
	.tc-home .tc-account-page .tc-my-orders-table {
		font-size: 13px;
	}

	.tc-home .tc-account-page .tc-my-orders-table thead th,
	.tc-home .tc-account-page .tc-my-orders-table tbody td {
		padding: 10px 8px;
	}
}

/* --- Generic inner pages (blog, category, wishlist, 404, etc.) — same shell as cart --- */
.tc-home .tc-inner-page .breadcrumb-section {
	background: #f7f9fc;
	border-bottom: 1px solid #e8edf5;
	padding: 14px 0;
}

.tc-home .tc-inner-page .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.tc-home .tc-inner-page .breadcrumb-item,
.tc-home .tc-inner-page .breadcrumb-item a {
	font-size: 14px;
	color: #4b5f85;
}

.tc-home .tc-inner-page .page-title h1 {
	margin: 0;
	font-size: clamp(1.6rem, 2.8vw, 2.1rem);
	line-height: 1.2;
	color: var(--tc-navy);
	font-weight: 700;
}

.tc-home .tc-inner-page .inner-section {
	padding: 28px 0 44px;
}

.tc-home .tc-inner-page .my_card,
.tc-home .tc-inner-page .error_card {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	padding: 28px 24px;
}

.tc-home .tc-inner-page .btn.theme-btn {
	border-radius: 999px;
	background: var(--tc-navy);
	border: 1px solid var(--tc-navy);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 22px;
}

.tc-home .tc-inner-page .btn.theme-btn:hover {
	background: var(--tc-navy-deep);
	border-color: var(--tc-navy-deep);
	color: #fff;
}

.tc-home .tc-inner-page .table thead th {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e4e6ea;
}

.tc-home .tc-inner-page .table tbody td {
	border-color: #eef0f4;
	vertical-align: middle;
}

/* Checkout: order summary + forms (inherits .tc-cart-page breadcrumb/section from cart rules) */
.tc-home .tc-checkout-page .inner-section h5 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--tc-navy);
	margin-bottom: 1rem;
}

.tc-home .tc-checkout-page .form-control {
	border-radius: 14px;
	border: 1px solid #d8dbe2;
	padding: 12px 16px;
	font-size: 16px;
}

.tc-home .tc-checkout-page .form-control:focus {
	border-color: var(--tc-navy);
	box-shadow: 0 0 0 3px rgba(58, 101, 195, 0.15);
}

.tc-home .tc-checkout-page .checkboxlist .checkbox-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
}

.tc-home .tc-checkout-page .checkboxlist .checkbox-title input[type="checkbox"],
.tc-home .tc-checkout-page .checkboxlist .checkbox-title input[type="radio"] {
	margin: 0;
	flex-shrink: 0;
}

.tc-home .tc-checkout-page .file_up {
	position: relative;
	display: flex;
	align-items: center;
}

.tc-home .tc-checkout-page .file_up #pro_thumbnail {
	padding-right: 128px;
}

.tc-home .tc-checkout-page .file_up .file_browse_box {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.tc-home .tc-checkout-page .file_up .file_browse {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.tc-home .tc-checkout-page .file_up .file_browse_icon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #d8dbe2;
	background: #fff;
	border-radius: 10px;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tc-navy);
	cursor: pointer;
	margin-bottom: 0;
}

.tc-home .tc-checkout-page .file_up .file_browse_icon:hover {
	border-color: var(--tc-navy);
	background: #f6f8fc;
}

.tc-home .tc-checkout-page .file_up + .form-text {
	margin-top: 10px;
}

.tc-home .tc-checkout-page .carttotals-card {
	border-radius: 18px;
	border: 1px solid #e4e6ea;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	overflow: hidden;
	margin-bottom: 1rem;
}

.tc-home .tc-checkout-page .carttotals-head {
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 12px 16px;
}

.tc-home .tc-checkout-page .carttotals-body {
	padding: 8px 4px 14px;
}

.tc-home .tc-checkout-page .carttotals-body table tr td {
	padding: 11px 16px;
	border-color: #eef0f4;
}

.tc-home .tc-checkout-page .carttotals-body span.title {
	color: #3a3f4d;
	font-size: 15px;
	font-weight: 500;
}

.tc-home .tc-checkout-page .carttotals-body span.price,
.tc-home .tc-checkout-page .carttotals-body span.total-price {
	color: var(--tc-navy);
	font-weight: 700;
}

.tc-home .tc-checkout-page .checkout_btn.theme-btn {
	display: inline-block;
	margin-top: 12px;
}

.tc-home .tc-checkout-page .card {
	border-radius: 14px;
	border: 1px solid #e4e6ea;
	box-shadow: 0 4px 16px rgba(21, 36, 90, 0.05);
}

.tc-home .tc-checkout-page .card-header {
	background: rgba(58, 101, 195, 0.06);
	border-bottom: 1px solid #e4e6ea;
	font-weight: 700;
	color: var(--tc-navy);
}

/* Account profile / password forms inside tc-auth-card */
.tc-home .tc-account-page .tc-account-form label {
	font-weight: 600;
	color: #1a2e57;
	font-size: 15px;
	margin-bottom: 8px;
}

.tc-home .tc-account-page .tc-account-form .form-control {
	border-radius: 14px;
	border: 1px solid #d8dbe2;
	padding: 12px 16px;
	font-size: 16px;
	min-height: 48px;
}

.tc-home .tc-account-page .tc-account-form .form-control:focus {
	border-color: var(--tc-navy);
	box-shadow: 0 0 0 3px rgba(58, 101, 195, 0.12);
}

.tc-home .tc-account-page .tc-account-form .btn.theme-btn {
	border-radius: 999px;
	background: var(--tc-navy);
	border: 1px solid var(--tc-navy);
	color: #fff;
	font-weight: 700;
	padding: 12px 28px;
	margin-top: 8px;
}

.tc-home .tc-account-page .tc-account-form .btn.theme-btn:hover {
	background: var(--tc-navy-deep);
	border-color: var(--tc-navy-deep);
	color: #fff;
}

/* Order details line items table */
.psi-home .tc-order-details-page .tc-account-main {
	padding: 24px 24px 22px;
}

.psi-home .tc-order-details-page .tc-order-details-table {
	margin-bottom: 0;
	font-size: 15px;
}

.psi-home .tc-order-details-page .tc-order-details-table thead th {
	white-space: nowrap;
	background: rgba(58, 101, 195, 0.08);
	color: var(--tc-navy);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e4e6ea;
	padding: 12px 10px;
	vertical-align: middle;
}

.psi-home .tc-order-details-page .tc-order-details-table tbody td {
	padding: 12px 10px;
	border-color: #eef0f4;
}

.psi-home .tc-order-details-page .tc-order-details-table .pro-image img {
	max-width: 72px;
	height: auto;
	border-radius: 10px;
	border: 1px solid #eef0f4;
}

.psi-home .tc-order-details-page .tc-order-details-table .pro-name a {
	color: var(--tc-navy);
	font-weight: 600;
	text-decoration: none;
}

.psi-home .tc-order-details-page .tc-order-details-table .pro-name a:hover {
	text-decoration: underline;
}

.psi-home .tc-order-details-page .tc-order-details-page__subhead {
	color: var(--tc-navy);
	font-weight: 700;
	margin-bottom: 10px;
}

.psi-home .tc-order-details-page .tc-order-details-page__meta-row {
	margin-bottom: 14px;
	row-gap: 6px;
	margin-left: 0;
	margin-right: 0;
}

.psi-home .tc-order-details-page .tc-order-details-page__meta-line {
	margin: 0 0 6px !important;
	line-height: 1.55;
	font-size: 15px;
}

.psi-home .tc-order-details-page .tc-order-details-page__meta-line:last-child {
	margin-bottom: 0 !important;
}

.psi-home .tc-order-details-page .tc-order-details-page__billto p,
.psi-home .tc-order-details-page .order_status p {
	margin: 0 0 6px !important;
}

.psi-home .tc-order-details-page .tc-order-details-page__billto p:last-child,
.psi-home .tc-order-details-page .order_status p:last-child {
	margin-bottom: 0 !important;
}

.psi-home .tc-order-details-page .order_status p strong {
	display: inline-block;
	margin-right: 8px;
	min-width: 118px;
}

.psi-home .tc-order-details-page .order_status .status_btn {
	margin-left: 4px;
}

.psi-home .tc-order-details-page .tc-order-details-page__line-items-row {
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
}

.psi-home .tc-order-details-page .tc-order-details-page__totals-row {
	margin-top: 14px;
	row-gap: 10px;
	align-items: flex-start;
	margin-left: 0;
	margin-right: 0;
}

.psi-home .tc-order-details-page .tc-order-details-page__shipping-col,
.psi-home .tc-order-details-page .tc-order-details-page__totals-col {
	margin-top: 0;
}

.psi-home .tc-order-details-page .tc-order-details-page__meta-row > [class*="col-"],
.psi-home .tc-order-details-page .tc-order-details-page__line-items-row > [class*="col-"],
.psi-home .tc-order-details-page .tc-order-details-page__totals-row > [class*="col-"] {
	padding-left: 12px;
	padding-right: 12px;
}

.psi-home .tc-order-details-page .tc-order-details-page__billto,
.psi-home .tc-order-details-page .order_status {
	padding-left: 20px !important;
	padding-right: 20px !important;
}

@media (max-width: 991px) {
	.psi-home .tc-order-details-page .tc-order-details-page__billto,
	.psi-home .tc-order-details-page .order_status {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}

.psi-home .tc-order-details-page .tc-order-details-page__shipping-line {
	margin-bottom: 0;
	padding-top: 6px;
	font-size: 16px;
	line-height: 1.5;
}

.psi-home .tc-order-details-page .carttotals-card {
	border-radius: 18px;
	border: 1px solid #e4e6ea;
	box-shadow: 0 8px 28px rgba(21, 36, 90, 0.06);
	overflow: hidden;
}

.psi-home .tc-order-details-page .carttotals-body {
	padding: 0;
}

.psi-home .tc-order-details-page .carttotals-body table {
	margin-bottom: 0;
}

.psi-home .tc-order-details-page .carttotals-body table td {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.psi-home .tc-order-details-page .carttotals-body table td span {
	display: inline-block;
}

.psi-home .tc-order-details-page .carttotals-body table td span + span {
	margin-left: 0;
	text-align: right;
	margin-left: auto;
	white-space: nowrap;
}

.psi-home .tc-order-details-page .carttotals-body table tr:last-child td {
	padding-bottom: 14px;
}

.psi-home .tc-order-details-page .carttotals-body span.title,
.psi-home .tc-order-details-page .carttotals-body span.price,
.psi-home .tc-order-details-page .carttotals-body span.total-price,
.psi-home .tc-order-details-page .carttotals-body span.total {
	font-size: 15px;
}

@media (max-width: 991px) {
	.psi-home .tc-order-details-page .tc-account-main {
		padding: 20px 18px;
	}

	.psi-home .tc-order-details-page .order_status p strong {
		min-width: 108px;
	}
}

/* ——— Checkout order summary (min 14px, spacing, M-PESA inputs) ——— */
.tc-home .tc-checkout-page .carttotals-body {
	padding: 16px 14px 20px;
	font-size: 14px;
	line-height: 1.5;
}

.tc-home .tc-checkout-page .carttotals-body .payment_card {
	margin-top: 0;
	margin-bottom: 16px;
}

.tc-home .tc-checkout-page .payment_card .checkboxlist {
	margin-bottom: 12px;
}

.tc-home .tc-checkout-page #pay_mpesa {
	margin-top: 12px;
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 1.55;
	color: #3a3f4d;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines tr.tp_group td {
	padding-top: 14px;
	padding-bottom: 12px;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .tp_group .store_name p {
	font-size: 14px;
	line-height: 1.45;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .tp_group .store_name a {
	font-size: 14px;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines td {
	vertical-align: top;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines td:last-child {
	text-align: right;
	white-space: nowrap;
	min-width: 7.5rem;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .title,
.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .title a {
	font-size: 14px;
	font-weight: 600;
	color: #1a2e57;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .sub-title,
.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .sub-price {
	font-size: 14px;
	color: #3a3f4d;
	margin-bottom: 0;
}

.tc-home .tc-checkout-page .carttotals-body table.carttotals-lines .price {
	font-size: 14px;
	font-weight: 700;
	color: var(--tc-navy);
}

.tc-home .tc-checkout-page .carttotals-summary-line td {
	padding-top: 12px;
	padding-bottom: 12px;
}

.tc-home .tc-checkout-page .carttotals-summary-line__inner {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	width: 100%;
}

.tc-home .tc-checkout-page .carttotals-summary-line__inner .title,
.tc-home .tc-checkout-page .carttotals-summary-line__inner .total {
	float: none;
	flex: 0 1 auto;
}

.tc-home .tc-checkout-page .carttotals-summary-line__inner .price,
.tc-home .tc-checkout-page .carttotals-summary-line__inner .total-price {
	float: none;
	flex: 0 0 auto;
	text-align: right;
	margin-left: auto;
}

.tc-home .tc-checkout-page .carttotals-summary-line--total .carttotals-summary-line__inner {
	padding-top: 4px;
	border-top: 1px solid #eef0f4;
	margin-top: 4px;
}

.tc-home .tc-checkout-page .tc-checkout-shipping-title {
	font-size: 15px;
	font-weight: 700;
	color: #1a2e57;
	margin: 20px 0 12px;
}

.tc-home .tc-checkout-page .tc-checkout-shipping-option {
	margin-bottom: 14px;
}

.tc-home .tc-checkout-page .tc-checkout-shipping-option .checkbox-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	color: #1a2e57;
}

.tc-home .tc-checkout-page .tc-checkout-shipping-option input[type="radio"] {
	margin-top: 4px;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	min-width: 18px;
}

.tc-home .tc-checkout-page .tc-checkout-shipping-option input[type="radio"]:checked::before {
	width: 8px;
	height: 8px;
	margin: 4px;
}

.tc-home .tc-checkout-page .payment_card .checkbox-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.tc-home .tc-checkout-page .payment_card .checkbox-title input[type="radio"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
}

.tc-home .tc-checkout-page .tc-mpesa-payment-row {
	margin-top: 8px;
	margin-bottom: 8px;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card {
	border: 1px solid #e4e6ea;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(21, 36, 90, 0.05);
	background: #fff;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card .card-header {
	background: #f0f3f8;
	border-bottom: 1px solid #e4e6ea;
	padding: 12px 16px;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card .card-title {
	font-size: 14px;
	font-weight: 700;
	color: #1a2e57;
	margin: 0;
	line-height: 1.35;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card .card-body {
	padding: 16px;
	font-size: 14px;
	line-height: 1.55;
	color: #3a3f4d;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card__intro {
	margin-bottom: 16px;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card__manual p {
	margin-bottom: 10px;
	font-size: 14px;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card__manual p:last-child {
	margin-bottom: 0;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #1a2e57;
	margin-bottom: 8px;
}

.tc-home .tc-checkout-page .tc-checkout-input.form-control {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	font-size: 16px;
	line-height: 1.4;
	color: #1a2e57;
	background-color: #fff;
	border: 1px solid #c5cad6;
	border-radius: 10px;
	box-shadow: inset 0 1px 2px rgba(21, 36, 90, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tc-home .tc-checkout-page .tc-checkout-input.form-control::placeholder {
	color: #8b92a3;
	font-size: 14px;
}

.tc-home .tc-checkout-page .tc-checkout-input.form-control:focus {
	border-color: var(--tc-navy);
	box-shadow: 0 0 0 3px rgba(58, 101, 195, 0.18);
	outline: none;
}

.tc-home .tc-checkout-page .tc-checkout-mpesa-card .card-action {
	padding: 0 16px 16px;
	border-top: none;
	background: transparent;
}

.tc-home .tc-checkout-page .tc-mpesa-response {
	margin-bottom: 12px;
	font-size: 14px;
}

.tc-home .tc-checkout-page .tc-mpesa-action-btn {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	border-radius: 10px;
	font-size: 15px;
	padding: 12px 16px;
}

.tc-home .tc-checkout-page .tc-mpesa-action-btn:last-child {
	margin-bottom: 0;
}
