:root {
	/* New TaazaCart Brand Colors */
	--tc-green: #0AAD0B;
	--tc-green-dark: #0A6C02;
	--tc-orange: #FF7E15;
	--tc-orange-warm: #E3812F;

	--tc-bg: #FFFDF7;
	--tc-bg-soft: #FAFAF5;
	--tc-surface: #FFFFFF;

	--tc-text: #121212;
	--tc-text-muted: #666666;
	--tc-border: #EDEDE7;

	--tc-success: #0AAD0B;
	--tc-warning: #FF7E15;
	--tc-danger: #D93025;

	/* Legacy tokens mapped to new brand colors to prevent breaking existing UI */
	--tc-cream: var(--tc-bg-soft);
	--tc-paper: var(--tc-surface);
	--tc-forest: #121212;
	--tc-leaf: var(--tc-green);
	--tc-leaf-soft: rgba(10, 173, 11, 0.15);
	--tc-sage: rgba(10, 173, 11, 0.08);
	--tc-clay: var(--tc-orange);
	--tc-clay-deep: var(--tc-orange-warm);
	--tc-gold: #FFB347;
	--tc-muted: var(--tc-text-muted);

	/* Structure */
	--tc-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.08);
	--tc-shadow-md: 0 14px 28px rgba(0, 0, 0, 0.06);
	--tc-shadow-sm: 0 8px 16px rgba(0, 0, 0, 0.04);
	--tc-radius-2xl: 30px;
	--tc-radius-xl: 24px;
	--tc-radius-lg: 18px;
	--tc-radius-md: 14px;
	--tc-radius-sm: 12px;
	--tc-content-width: 1400px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(242, 182, 122, 0.24), transparent 26%),
		radial-gradient(circle at top right, rgba(220, 232, 216, 0.55), transparent 22%),
		linear-gradient(180deg, #fcfaf4 0%, var(--tc-cream) 65%);
	color: var(--tc-text);
	font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body.tc-ui-overlay-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.tc-shell {
	min-height: 100vh;
	padding-bottom: 92px;
}

.tc-container {
	width: min(calc(100% - 1.5rem), var(--tc-content-width));
	margin: 0 auto;
}

.tc-main {
	padding: 1rem 0 2.5rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.tc-kicker,
.tc-section-kicker,
.tc-mobile-header__eyebrow,
.tc-mobile-drawer__eyebrow,
.tc-search-panel__eyebrow,
.tc-hero-banner__card-label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tc-kicker {
	color: rgba(255, 255, 255, 0.72);
}

.tc-section-kicker,
.tc-mobile-header__eyebrow,
.tc-mobile-drawer__eyebrow,
.tc-search-panel__eyebrow {
	color: var(--tc-leaf);
}

.tc-home,
.tc-page-shell {
	display: grid;
	gap: 1.5rem;
}

.tc-section {
	padding-top: 0.5rem;
}

.tc-section__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.tc-section__heading h2,
.tc-entry-title,
.tc-hero-banner h1,
.tc-category-menu__heading h2,
.tc-search-panel__header h2,
.tc-mobile-drawer__header h2 {
	margin: 0;
	line-height: 1.05;
}

.tc-section__lead,
.tc-category-menu__note,
.tc-entry-content,
.tc-archive-description,
.tc-empty-state p {
	color: var(--tc-muted);
}

.tc-section__lead,
.tc-category-menu__note,
.tc-empty-state p {
	margin: 0.45rem 0 0;
	max-width: 38rem;
}

.tc-text-link,
.tc-category-menu__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--tc-leaf);
	font-weight: 600;
}

.tc-text-link svg,
.tc-category-menu__cta svg,
.tc-mobile-footer__icon svg,
.tc-icon-button__icon svg,
.tc-search-form__icon svg,
.tc-mobile-header__search-icon svg,
.tc-product-card__selector-icon svg {
	width: 1.15rem;
	height: 1.15rem;
}

.tc-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.tc-icon-button:hover,
.tc-icon-button:focus-visible,
.tc-mobile-footer__link:hover,
.tc-mobile-footer__link:focus-visible,
.tc-mobile-header__search-trigger:hover,
.tc-mobile-header__search-trigger:focus-visible {
	transform: translateY(-1px);
}

.tc-icon-button--soft {
	background: rgba(255, 255, 255, 0.9);
	color: var(--tc-forest);
	box-shadow: var(--tc-shadow-sm);
}

.tc-icon-button--accent {
	position: relative;
	background: var(--tc-orange);
	transition: background-color 0.2s ease;
	color: var(--tc-paper);
	box-shadow: var(--tc-shadow-md);
}

.tc-cart__icon-wrap {
	position: relative;
	display: inline-flex;
}

.tc-cart-count {
	position: absolute;
	top: -4px;
	right: -8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--tc-orange);
	color: var(--tc-surface);
	font-size: 0.65rem;
	font-weight: 500;
	line-height: 1;
	border: 2px solid var(--tc-surface);
}

/* Responsive Wrappers */
.tc-desktop-only {
	display: none;
}
.tc-mobile-only {
	display: block;
}

@media (min-width: 992px) {
	.tc-desktop-only {
		display: block;
	}
	.tc-mobile-only {
		display: none;
	}
}

/* ==========================================================================
   Desktop Header
   ========================================================================== */

.tc-header {
	background: var(--tc-surface);
}

.tc-header-main {
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--tc-border);
}

.tc-header-main__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.tc-logo {
	display: inline-flex;
	align-items: center;
	width: 160px;
}
.tc-logo img {
	width: 100%;
	height: auto;
}
.tc-logo__text {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--tc-green);
	line-height: 1;
}

.tc-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: var(--tc-radius-md);
	background: var(--tc-bg-soft);
	color: var(--tc-text);
	cursor: pointer;
	border: 1px solid transparent;
	transition: border-color 0.2s ease;
	width: 150px;
	height: 46px;
}
.tc-location:hover {
	border-color: var(--tc-border);
}
.tc-location__icon {
	color: var(--tc-orange);
	display: flex;
	align-items: center;
}
.tc-location__icon svg {
	width: 1.25rem;
	height: 1.25rem;
}
.tc-location__text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.tc-location__label {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--tc-text-muted);
	letter-spacing: 0.05em;
}
.tc-location__city {
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
}

.tc-search {
	flex: 1 1 560px;
	max-width: 680px;
	min-width: 360px;
}
.tc-search-form {
	position: relative;
	display: flex;
	align-items: center;
	height: 48px;
	width: 100%;
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: 999px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tc-search-form:focus-within {
	border-color: var(--tc-orange);
	box-shadow: 0 0 0 3px rgba(255, 126, 21, 0.12);
}
.tc-search-form input {
	width: 100%;
	height: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	padding: 0 64px 0 26px;
	font-size: 15px;
	font-weight: 400;
	color: var(--tc-text);
	box-sizing: border-box;
}
.tc-search-form input::placeholder {
	color: #8a8a8a;
	opacity: 1;
}
.tc-search-form__submit {
	position: absolute;
	right: 3px;
	top: 50%;
	width: 42px;
	height: 42px;
	transform: translateY(-50%);
	border: 0;
	border-radius: 50%;
	background: var(--tc-orange);
	color: var(--tc-surface) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.tc-search-form__submit:hover {
	background: var(--tc-orange-warm);
}
.tc-search-form__submit svg {
	width: 19px;
	height: 19px;
	display: block;
}

.tc-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-left: auto;
}
.tc-account, .tc-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tc-text);
	width: 40px;
	height: 40px;
	text-decoration: none;
	transition: color 0.2s ease;
}
.tc-account:hover, .tc-cart:hover {
	color: var(--tc-green);
}
.tc-account__icon, .tc-cart__icon {
	display: flex;
	align-items: center;
	color: var(--tc-text);
	transition: color 0.2s ease;
}
.tc-account:hover .tc-account__icon, .tc-cart:hover .tc-cart__icon {
	color: var(--tc-green);
}
.tc-account__icon svg, .tc-cart__icon svg {
	width: 1.6rem;
	height: 1.6rem;
}

.tc-header-menu {
	background: var(--tc-surface);
	border-bottom: 1px solid var(--tc-border);
}
.tc-header-menu__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.tc-header-menu__list > li {
	margin: 0;
	position: relative;
}
.tc-header-menu__list > li > a {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0;
	height: 48px;
	font-size: 14px;
	font-weight: 500;
	color: var(--tc-text);
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease;
}
.tc-header-menu__list > li > a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--tc-green);
	transform: scaleX(0);
	transition: transform 0.2s ease;
	transform-origin: center;
	border-radius: 3px 3px 0 0;
}
.tc-header-menu__list > li:hover > a,
.tc-header-menu__list > li > a:focus-visible {
	color: var(--tc-green);
}
.tc-header-menu__list > li:hover > a::after,
.tc-header-menu__list > li > a:focus-visible::after {
	transform: scaleX(1);
}

.tc-header-menu__list .menu-item-has-children > a::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	margin-left: 0.35rem;
	position: relative;
	top: -2px;
	order: 2;
}

.tc-header-menu__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100;
	min-width: 220px;
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	box-shadow: var(--tc-shadow-md);
	padding: 0.5rem 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.tc-header-menu__list li:hover > .sub-menu,
.tc-header-menu__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tc-header-menu__list .sub-menu li {
	position: relative;
}

.tc-header-menu__list .sub-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	height: 40px;
	font-size: 14px;
	font-weight: 400;
	color: var(--tc-text);
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.tc-header-menu__list .sub-menu a:hover,
.tc-header-menu__list .sub-menu a:focus-visible {
	background: var(--tc-bg-soft);
	color: var(--tc-green);
}

.tc-header-menu__list .sub-menu .sub-menu {
	top: -0.5rem;
	left: 100%;
	margin-left: 0.5rem;
}

.tc-header-menu__list .sub-menu .menu-item-has-children > a::before {
	transform: rotate(-45deg);
	margin-left: auto;
}

/* ==========================================================================
   Mobile Header
   ========================================================================== */

.tc-mobile-header {
	position: sticky;
	top: 0;
	z-index: 70;
	background: var(--tc-surface);
	border-bottom: 1px solid var(--tc-border);
	box-shadow: var(--tc-shadow-sm);
}

.tc-mobile-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.tc-mobile-header__menu-btn {
	background: transparent;
	border: none;
	color: var(--tc-text);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tc-mobile-header__menu-btn svg {
	width: 1.75rem;
	height: 1.75rem;
}

/* ==========================================================================
   Mobile Drawer
   ========================================================================== */

.tc-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(18, 18, 18, 0.4);
	z-index: 80;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

body.tc-menu-open .tc-drawer-overlay,
body.tc-search-open .tc-drawer-overlay {
	opacity: 1;
	pointer-events: auto;
}

.tc-drawer-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: min(88vw, 380px);
	background: var(--tc-surface);
	z-index: 90;
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: var(--tc-shadow-lg);
}

body.tc-menu-open .tc-drawer-panel {
	transform: translateX(0);
}

.tc-drawer-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid var(--tc-border);
}

.tc-drawer-panel__actions {
	padding: 1rem;
	background: var(--tc-bg-soft);
	border-bottom: 1px solid var(--tc-border);
}

.tc-drawer-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.tc-drawer-action {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: var(--tc-surface);
	border-radius: var(--tc-radius-md);
	border: 1px solid var(--tc-border);
	color: var(--tc-text);
	font-weight: 600;
	font-size: 0.85rem;
}

.tc-drawer-action--location {
	grid-column: 1 / -1;
}

.tc-drawer-action__icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--tc-green);
}

.tc-drawer-action__text {
	display: flex;
	flex-direction: column;
}

.tc-drawer-action__label {
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--tc-text-muted);
}

.tc-drawer-action__city {
	font-size: 0.85rem;
}

.tc-drawer-panel__search {
	padding: 1rem;
	border-bottom: 1px solid var(--tc-border);
}

.tc-drawer-panel__nav {
	flex: 1;
	overflow-y: auto;
	padding: 1rem;
}

.tc-mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tc-mobile-menu a {
	display: block;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--tc-text);
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius-md);
}

.tc-ui-scrim {
	display: none; /* Removed old scrim usage in favor of tc-drawer-overlay, but keeping class for back-compat if needed elsewhere */
}

.tc-search-panel {
	position: fixed;
	top: 7.4rem;
	right: 0;
	left: 0;
	z-index: 68;
	padding: 0 0.75rem;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: opacity 180ms ease, transform 180ms ease;
}

body.tc-search-open .tc-search-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.tc-search-panel__inner {
	width: min(100%, 760px);
	margin: 0 auto;
	padding: 1rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--tc-shadow-lg);
}

.tc-search-panel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.95rem;
}

/* .tc-search-form {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.7rem;
	padding: 0.65rem;
	border: 1px solid var(--tc-border);
	border-radius: 999px;
	background: var(--tc-paper);
} */

.tc-search-form__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--tc-sage);
	color: var(--tc-bg);
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100% !important;
    overflow: visible;
}

.tc-search-form input {
	min-width: 0;
	border: 0;
	background: transparent;
	color: var(--tc-text);
}

.tc-search-form input:focus {
	outline: none;
}

.tc-search-form__submit,
.tc-hero-banner__cta,
.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.8rem 1rem;
	border-radius: 999px;
	border: 0;
	font-weight: 500;
	cursor: pointer;
}

.tc-card-add-button {
	border-radius: 12px;
	background-color: transparent;
	border: 1px solid var(--tc-green);
	color: var(--tc-green);
	padding: 4px 20px;
}

button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.8rem 1rem;
	border: 0;
	font-weight: 500;
	cursor: pointer;
}

.tc-search-form__submit,
.tc-hero-banner__cta,
.button,
button,
input[type="submit"] {
	background: var(--tc-orange);
	color: var(--tc-surface);
	transition: background-color 0.2s ease;
}

.tc-search-panel__suggestions {
	display: grid;
	gap: 0.7rem;
	margin-top: 1rem;
}

.tc-search-panel__suggestions-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--tc-muted);
}

.tc-search-panel__suggestion-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.tc-search-suggestion {
	display: inline-flex;
	align-items: center;
	padding: 0.62rem 0.88rem;
	border-radius: 999px;
	background: var(--tc-sage);
	color: var(--tc-leaf);
	font-size: 0.82rem;
	font-weight: 600;
}

.tc-hero-banner {
	position: relative;
	background: var(--tc-green-dark);
	color: var(--tc-paper);
	border-radius: var(--tc-radius-2xl);
	overflow: hidden;
}
.tc-hero-banner__inner {
	display: grid;
	gap: 2rem;
	padding: 2.5rem 1.5rem;
}
.tc-hero-banner__content h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--tc-paper);
}
.tc-hero-banner__content p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 2rem;
}
.tc-hero-banner__actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}
.tc-hero-banner__cta {
	padding: 0.8rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: background-color 0.2s ease;
}
.tc-hero-banner__cta {
	background: var(--tc-orange);
	color: var(--tc-paper);
}
.tc-hero-banner__cta:hover {
	background: var(--tc-orange-warm);
	color: var(--tc-paper);
}
.tc-hero-banner__cta--secondary {
	background: rgba(255, 255, 255, 0.15);
	color: var(--tc-paper);
}
.tc-hero-banner__cta--secondary:hover {
	background: rgba(255, 255, 255, 0.25);
}
.tc-hero-banner__trust-chips {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.tc-trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.85rem;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
}
.tc-trust-icon {
	color: var(--tc-orange);
}
.tc-trust-icon svg {
	width: 1rem;
	height: 1rem;
}
.tc-hero-banner__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.tc-hero-stat {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: var(--tc-radius-lg);
	text-align: center;
}
.tc-hero-stat__value {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--tc-orange);
	margin-bottom: 0.25rem;
}
.tc-hero-stat__label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.9;
}

/* Category Grid */
.tc-category-grid-wrap {
	margin-top: 1rem;
}
.tc-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.tc-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
	background: var(--tc-surface);
	padding: 1rem 0.5rem;
	border-radius: var(--tc-radius-lg);
	box-shadow: var(--tc-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}
.tc-category-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--tc-shadow-md);
}
.tc-category-card__media {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: var(--tc-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tc-green);
}
.tc-category-card__title {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--tc-text);
	line-height: 1.2;
}

.tc-product-grid,
.tc-archive-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}
.woocommerce ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	clear: none !important;
}
.tc-product-card {
	background: var(--tc-surface);
	border-radius: var(--tc-radius-lg);
	box-shadow: var(--tc-shadow-sm);
	padding: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	border: 1px solid var(--tc-border);
	transition: box-shadow 0.2s ease;
	height: 100%;
}
.tc-product-card:hover {
	box-shadow: var(--tc-shadow-md);
}
.tc-product-card__media-wrap {
	position: relative;
	background: #ffffff;
	border-radius: var(--tc-radius-md) var(--tc-radius-md) 0 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	height: auto;
	overflow: hidden;
}
.tc-product-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.tc-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.tc-product-card__badge--sale {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: var(--tc-orange);
	color: var(--tc-paper);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	z-index: 2;
}
.tc-product-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}
.tc-product-card__title {
	font-size: 0.85rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tc-product-card__title a {
	color: inherit;
	text-decoration: none;
}
.tc-product-card__pack-size {
	font-size: 0.75rem;
	color: var(--tc-text-muted);
}
.tc-product-card__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: auto;
}
.tc-product-card__price-block {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.tc-product-card__price-sale,
.tc-product-card__price-regular {
	font-weight: 600;
	color: var(--tc-text);
	font-size: 0.95rem;
	line-height: 1;
}
.tc-product-card__price-mrp {
	font-size: 0.75rem;
	color: var(--tc-text-muted);
	text-decoration: line-through;
	line-height: 1;
}
.tc-product-card__price-sale .amount,
.tc-product-card__price-regular .amount {
	color: inherit;
}
.tc-product-card__price-mrp .amount {
	color: inherit;
}

.tc-product-card__actions {
	flex-shrink: 0;
}

.tc-product-card__actions .button,
.woocommerce ul.products li.product .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 1.1rem;
	border-radius: 6px;
	background: var(--tc-orange);
	color: var(--tc-surface);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	border: 1px solid var(--tc-orange);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.2s ease;
	text-decoration: none;
	margin: 0;
}

.tc-product-card__actions .button.added {
	display: none;
}

.tc-product-card__actions .button,
.woocommerce ul.products li.product .button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0.45rem 1.1rem !important;
	border-radius: 6px !important;
	background: var(--tc-surface) !important;
	color: var(--tc-green) !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	border: 1px solid var(--tc-green) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	text-decoration: none !important;
	margin: 0 !important;
	transition: all 0.2s ease !important;
}

.tc-product-card__actions .added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 1.1rem;
	border-radius: 6px;
	background: var(--tc-green);
	color: var(--tc-surface);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	border: 1px solid var(--tc-green);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	margin: 0;
}

.tc-product-card__actions .button:hover,
.woocommerce ul.products li.product .button:hover {
	background: var(--tc-green) !important;
	color: var(--tc-surface) !important;
}

/* Trust Section */
.tc-trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.tc-trust-card {
	background: var(--tc-bg-soft);
	padding: 1.5rem;
	border-radius: var(--tc-radius-lg);
	text-align: center;
	border: 1px solid var(--tc-border);
}
.tc-trust-card__icon {
	color: var(--tc-green);
	margin-bottom: 0.75rem;
}
.tc-trust-card__icon svg {
	width: 2rem;
	height: 2rem;
}
.tc-trust-card__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
}
.tc-trust-card__desc {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	margin: 0;
}

/* Teaser Section */
.tc-teaser-card {
	background: var(--tc-bg-soft);
	border: 1px dashed var(--tc-green);
	border-radius: var(--tc-radius-xl);
	padding: 2rem;
	text-align: center;
}
.tc-teaser-card__content h2 {
	margin: 0.5rem 0;
	color: var(--tc-green);
}
.tc-teaser-card__content p {
	margin: 0;
	color: var(--tc-text-muted);
}

.tc-entry-card,
.tc-empty-state {
	padding: 1.25rem;
	border-radius: var(--tc-radius-xl);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: var(--tc-shadow-sm);
}

.tc-empty-state__title {
	margin: 0 0 0.35rem;
	font-weight: 500;
	color: var(--tc-forest);
}

.tc-site-footer {
	margin-top: 0;
}

/* 1. Value Proposition Banner */
.tc-footer-usp {
	background: var(--tc-surface);
	padding: 2.5rem 0;
	border-top: 1px solid var(--tc-border);
}
.tc-footer-usp__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.tc-footer-usp__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.tc-usp-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	padding: 1rem;
}
.tc-usp-item__icon {
	width: 3rem;
	height: 3rem;
	background: rgba(242, 182, 122, 0.15);
	color: var(--tc-orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tc-usp-item__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}
.tc-usp-item__text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.tc-usp-item__text strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--tc-text);
}
.tc-usp-item__text span {
	font-size: 0.8rem;
	color: var(--tc-muted);
}

/* 2. Main Footer (Dark Theme) */
.tc-theme-dark {
	background: var(--tc-green);
	color: rgba(255, 255, 255, 0.95);
}
.tc-theme-dark h4,
.tc-theme-dark h5,
.tc-theme-dark strong {
	color: #ffffff;
}
.tc-footer-main {
	padding: 4rem 0;
}
.tc-footer-main__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
@media (min-width: 768px) {
	.tc-footer-main__grid {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
		gap: 2rem;
	}
}

.tc-footer-brand__logo {
	max-height: 80px;
	width: auto;
	margin-bottom: 1.25rem;
	filter: brightness(0) invert(1);
}
.tc-footer-brand__desc {
	font-size: 0.85rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 300px;
}

.tc-footer-apps__title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}
.tc-footer-apps__badges {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
@media (min-width: 480px) {
	.tc-footer-apps__badges {
		flex-direction: row;
	}
}
.tc-app-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.tc-app-badge:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
}
.tc-app-badge__text {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.tc-app-badge__text span {
	font-size: 0.55rem;
	text-transform: uppercase;
	opacity: 0.8;
}
.tc-app-badge__text strong {
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.1;
}

.tc-footer-col__title {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.tc-footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.tc-footer-nav a {
	color: inherit;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}
.tc-footer-nav a:hover {
	color: #ffffff;
}

.tc-btn-support {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.85rem;
	border-radius: var(--tc-radius-md);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: background-color 0.2s ease;
}
.tc-btn-support:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* 3. Bottom Footer */
.tc-theme-dark-accent {
	background: var(--tc-green-dark);
	color: rgba(255, 255, 255, 0.85);
}
.tc-footer-bottom {
	padding: 1.5rem 0;
	padding-bottom: 6rem; /* mobile footer */
}
.tc-footer-bottom__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.tc-footer-bottom {
		padding-bottom: 1.5rem;
	}
	.tc-footer-bottom__inner {
		flex-direction: row;
		justify-content: space-between;
	}
}

.tc-footer-copyright p {
	margin: 0;
	font-size: 0.85rem;
}

.tc-footer-payments {
	display: flex;
	gap: 0.5rem;
}
.tc-payment-badge {
	background: rgba(255, 255, 255, 0.9);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
}

.tc-footer-social {
	display: flex;
	gap: 1rem;
}
.tc-footer-social a {
	color: inherit;
	transition: color 0.2s ease;
}
.tc-footer-social a:hover {
	color: #ffffff;
}

.tc-mobile-footer {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 65;
	padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(16px);
	border-top: 1px solid rgba(22, 55, 40, 0.1);
	box-shadow: 0 -10px 26px rgba(24, 44, 30, 0.08);
}

.tc-mobile-footer__nav {
	justify-content: space-between;
	gap: 0.35rem;
}

.tc-mobile-footer__link {
	position: relative;
	display: inline-flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 58px;
	padding: 0.65rem 0.25rem;
	border: 0;
	border-radius: 18px;
	background: transparent;
	color: var(--tc-muted);
	font-size: 0.72rem;
	font-weight: 500;
	cursor: pointer;
}

.tc-mobile-footer__link.is-active {
	background: rgba(22, 55, 40, 0.08);
	color: var(--tc-forest);
}

.tc-mobile-footer__link.is-highlighted {
	background: var(--tc-orange);
	transition: background-color 0.2s ease;
	color: var(--tc-paper);
	box-shadow: 0 10px 20px rgba(22, 55, 40, 0.18);
}

.tc-mobile-footer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tc-mobile-footer .tc-cart-count {
	position: absolute;
	top: 0.45rem;
	right: 0.95rem;
}

.woocommerce div.product,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	padding: 1.25rem;
	border-radius: var(--tc-radius-xl);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--tc-shadow-sm);
}

body.admin-bar .tc-mobile-header {
	top: 46px;
}

body.admin-bar .tc-search-panel {
	top: 10.3rem;
}

@media (min-width: 783px) {
	body.admin-bar .tc-mobile-header {
		top: 32px;
	}

	body.admin-bar .tc-search-panel {
		top: 9.4rem;
	}
}

/* Removed obsolete fixed grid columns to allow auto-fill minmax 280px to work */
@media (min-width: 576px) {
}

@media (min-width: 768px) {
	.tc-shell {
		padding-bottom: 0;
	}

	.tc-main {
		padding-top: 1.35rem;
	}

	.tc-mobile-header__surface {
		padding: 0.85rem 1rem 1rem;
	}

	.tc-mobile-header__bar {
		gap: 1rem;
	}

	.tc-brand-lockup {
		justify-content: flex-start;
	}

	.tc-mobile-header__search-copy span:last-child {
		white-space: normal;
	}

	.tc-search-panel {
		top: 8.1rem;
		padding: 0 1rem;
	}

	.tc-hero-banner {
		grid-template-columns: 1.2fr 0.95fr;
		align-items: stretch;
		padding: 2.1rem;
	}

	.tc-category-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	/* Removed fixed grid columns */

	.tc-mobile-footer {
		display: none;
	}
}

@media (min-width: 1100px) {
	.tc-mobile-header__surface {
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 1rem;
	}

	.tc-mobile-header__utility {
		order: 1;
	}

	.tc-mobile-header__bar {
		order: 2;
		justify-content: center;
	}

	.tc-mobile-header__search-trigger {
		order: 3;
		max-width: 360px;
	}

	.tc-search-panel {
		top: 6.8rem;
	}

	.tc-category-grid {
		grid-template-columns: repeat(8, 1fr);
	}

	/* Removed fixed grid columns */
}

/* Removed fixed grid columns */

/* Global Button Hover Override */
.button:hover,
button:hover,
input[type="submit"]:hover,
.tc-product-card__actions .button:hover,
.woocommerce ul.products li.product .button:hover {
	background-color: var(--tc-green) !important;
	color: var(--tc-surface) !important;
}

/* 4-Row Product Grid Restriction */
.tc-product-grid > :nth-child(n+9) {
	display: none;
}
@media (min-width: 576px) {
	.tc-product-grid > :nth-child(n+9) {
		display: flex;
	}
	.tc-product-grid > :nth-child(n+13) {
		display: none;
	}
}
@media (min-width: 768px) {
	.tc-product-grid > :nth-child(n+13) {
		display: flex;
	}
	.tc-product-grid > :nth-child(n+17) {
		display: none;
	}
}
@media (min-width: 1100px) {
	.tc-product-grid > :nth-child(n+17) {
		display: flex;
	}
	.tc-product-grid > :nth-child(n+21) {
		display: none;
	}
}
@media (min-width: 1300px) {
	.tc-product-grid > :nth-child(n+21) {
		display: flex;
	}
	.tc-product-grid > :nth-child(n+25) {
		display: none;
	}
}

/* ==========================================================================
   Shop Archive Page (Grid + Drill-Down Sidebar)
   ========================================================================== */

.tc-shop-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
	padding: 2rem 0;
}

@media (min-width: 992px) {
	.tc-shop-layout {
		grid-template-columns: 240px 1fr;
		gap: 3rem;
	}
}

.tc-shop-sidebar {
	/* Removed sticky to allow normal flow */
}

.tc-drilldown-wrapper {
	background: #fff;
	border-radius: var(--tc-radius-lg);
	border: 1px solid var(--tc-border);
	overflow: hidden;
}

.tc-drilldown-header {
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 0.75rem;
	margin: 0;
	border-bottom: 1px solid var(--tc-border);
	color: var(--tc-forest);
}

.tc-drilldown-menu {
	position: relative;
	min-height: 50px;
	overflow: hidden;
}

.tc-drilldown-level {
	display: none;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
}

.tc-drilldown-level.tc-drilldown-root {
	display: block;
}

.tc-drilldown-level.is-active {
	display: block;
	animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.tc-drilldown-level.is-left {
	display: none;
}

.tc-drilldown-item {
	border-bottom: 1px solid var(--tc-border);
}

.tc-drilldown-item:last-child {
	border-bottom: none;
}

.tc-drilldown-btn,
.tc-drilldown-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.65rem 0.75rem;
	background: transparent;
	border: none;
	color: var(--tc-text);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	cursor: pointer;
	white-space: normal;
	line-height: 1.3;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.tc-drilldown-btn span:first-child,
.tc-drilldown-link span:first-child {
	flex: 1;
	padding-right: 0.5rem;
}

.tc-drilldown-btn:hover,
.tc-drilldown-link:hover {
	background: rgba(22, 55, 40, 0.04) !important;
	color: var(--tc-green) !important;
}

.tc-drilldown-icon {
	color: var(--tc-muted);
	display: flex;
	align-items: center;
	opacity: 0.6;
}

.tc-drilldown-link svg,
.tc-drilldown-btn svg,
.tc-drilldown-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.tc-drilldown-back {
	background: #fdfdfd;
	border-bottom: 1px solid var(--tc-border);
}

.tc-drilldown-back .tc-drilldown-btn {
	color: var(--tc-forest);
	justify-content: flex-start;
}

.tc-drilldown-item--all .tc-drilldown-link {
	font-weight: 600;
	color: var(--tc-green);
}

/* ==========================================================================
   Single Product Page (Quick-Commerce Style)
   ========================================================================== */

.tc-single-product {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 5rem;
}

@media (min-width: 992px) {
	.tc-single-product {
		grid-template-columns: 1fr 1.3fr 1fr;
		align-items: start;
		padding-bottom: 2rem;
		gap: 3rem;
	}
}

/* Override WooCommerce default layout floats that break CSS Grid */
.woocommerce .tc-single-product div.product div.images,
.woocommerce .tc-single-product div.product div.summary,
.woocommerce-page .tc-single-product div.product div.images,
.woocommerce-page .tc-single-product div.product div.summary,
.woocommerce #content div.product div.images,
.woocommerce #content div.product div.summary,
.tc-single-product .summary.entry-summary {
	float: none !important;
	width: 100% !important;
	clear: none !important;
}

.tc-single-product__gallery-col {
	background: #ffffff;
	border-radius: var(--tc-radius-xl);
	padding: 1rem;
	border: 1px solid var(--tc-border);
}

.tc-single-product__summary-col {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.tc-single-product__summary-col > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.tc-single-product__summary-col .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0 !important;
}
.tc-single-product__summary-col .product_title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.25rem !important;
	color: var(--tc-forest);
}
.tc-single-product__summary-col .price {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--tc-forest) !important;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.25rem 0 0.5rem 0 !important;
}
.tc-single-product__summary-col .price del {
	font-size: 1rem;
	color: var(--tc-text-muted) !important;
}
.tc-single-product__summary-col .price ins {
	text-decoration: none;
	color: var(--tc-forest) !important;
}
.tc-single-product__summary-col .product_meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	font-size: 0.85rem;
	color: var(--tc-text-muted);
}
.tc-single-product__summary-col .product_meta > span {
	display: block;
}
.tc-single-product__summary-col .product_meta a {
	color: var(--tc-green);
	font-weight: 500;
}

/* Stock Status Colors */
p.stock.tc-high-stock,
.tc-single-product__summary-col p.stock.tc-high-stock {
	color: var(--tc-green) !important;
	font-weight: 600;
	margin: 0.25rem 0 !important;
}
p.stock.tc-low-stock,
.tc-single-product__summary-col p.stock.tc-low-stock {
	color: var(--tc-danger) !important;
	font-weight: 600;
	margin: 0.25rem 0 !important;
}
p.stock.out-of-stock,
.tc-single-product__summary-col p.stock.out-of-stock {
	color: var(--tc-danger) !important;
	font-weight: 600;
}

.tc-variations {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0.5rem 0 !important;
	padding: 0;
	border: none;
}
.tc-variation-row {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.tc-variation-label label {
	font-weight: 500;
	color: var(--tc-text-muted);
	font-size: 0.85rem;
}
.tc-variation-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.tc-pill-btn {
	background: #ffffff;
	border: 1px solid var(--tc-border);
	padding: 0.5rem 1rem;
	border-radius: var(--tc-radius-md);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--tc-text);
	cursor: pointer;
	transition: all 0.2s ease;
}
.tc-pill-btn:hover {
	border-color: var(--tc-green);
	color: var(--tc-green);
}
.tc-pill-btn.is-active {
	background: rgba(22, 55, 40, 0.05);
	border-color: var(--tc-green);
	color: var(--tc-green);
}

.woocommerce-variation-add-to-cart,
form.cart {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-top: 0.5rem;
	clear: both;
}
.woocommerce .tc-single-product .woocommerce-variation,
.woocommerce-page .tc-single-product .woocommerce-variation {
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce-variation-price {
	display: none !important;
}
.woocommerce .tc-single-product .woocommerce-variation-add-to-cart,
.woocommerce .tc-single-product form.cart {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 0.75rem !important;
	align-items: center !important;
	margin-top: 0.5rem !important;
}

@media (max-width: 991px) {
	.tc-single-variation-wrap .woocommerce-variation-add-to-cart,
	form.cart:not(.variations_form) {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #ffffff;
		padding: 1rem;
		box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
		z-index: 999;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0 !important;
	}
	
	.tc-single-variation-wrap .woocommerce-variation-add-to-cart .quantity,
	form.cart:not(.variations_form) .quantity {
		margin: 0;
	}
	
	.tc-single-variation-wrap .woocommerce-variation-add-to-cart .button,
	form.cart:not(.variations_form) .button {
		flex: 1;
		margin-left: 0;
	}
}

/* Quantity Wrapper */
.tc-quantity-wrapper {
	display: flex;
	align-items: center;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	background: #fff;
	overflow: hidden;
	height: 48px;
	flex: 0 0 130px;
}
.tc-qty-btn {
	background: transparent;
	border: none;
	width: 40px;
	height: 100%;
	display: flex;
	border-radius: 0%;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--tc-text);
	cursor: pointer;
	transition: background 0.2s;
}
.tc-qty-btn:hover {
	background: var(--tc-background);
}
.tc-qty-input {
	width: 40px;
	height: 100%;
	border: none;
	border-left: 1px solid var(--tc-border);
	border-right: 1px solid var(--tc-border);
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	color: var(--tc-text);
	-moz-appearance: textfield; /* Hide Firefox spinners */
}
.tc-qty-input::-webkit-outer-spin-button,
.tc-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Buy Now & Add to Cart Buttons */
.woocommerce .tc-single-product button.tc-buy-now-button.button,
.woocommerce-page .tc-single-product button.tc-buy-now-button.button {
	background: var(--tc-orange) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--tc-radius-md) !important;
	padding: 0 1.5rem !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: opacity 0.2s !important;
	flex: 1 1 100% !important; /* Force to full width on new line */
	height: 48px !important;
	line-height: 48px !important;
}
.woocommerce .tc-single-product button.tc-buy-now-button.button:hover,
.woocommerce-page .tc-single-product button.tc-buy-now-button.button:hover {
	opacity: 0.9 !important;
}

.woocommerce .tc-single-product button.single_add_to_cart_button.button,
.woocommerce-page .tc-single-product button.single_add_to_cart_button.button {
	background: var(--tc-green) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--tc-radius-md) !important;
	padding: 0 1.5rem !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: opacity 0.2s !important;
	flex: 1 !important;
	height: 48px !important;
	line-height: 48px !important;
}
.woocommerce .tc-single-product button.single_add_to_cart_button.button:hover,
.woocommerce-page .tc-single-product button.single_add_to_cart_button.button:hover {
	opacity: 0.9 !important;
}

/* Accordions */
.tc-product-accordions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}
.tc-accordion {
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	overflow: hidden;
}
.tc-accordion__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	font-weight: 600;
	font-size: 1rem;
	color: var(--tc-text);
	cursor: pointer;
	list-style: none; /* Hide default triangle */
}
.tc-accordion__title::-webkit-details-marker {
	display: none;
}
.tc-accordion__title svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s;
}
.tc-accordion[open] .tc-accordion__title svg {
	transform: rotate(180deg);
}
.tc-accordion__content {
	padding: 0 1.25rem 1.25rem;
	color: var(--tc-text-muted);
	line-height: 1.6;
}
.tc-accordion__content p {
	margin-top: 0;
}

/* Related Products Slider */
.tc-related-products {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--tc-border);
}
.tc-product-slider {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 1rem;
	scrollbar-width: none;
}
.tc-product-slider::-webkit-scrollbar {
	display: none;
}
.tc-product-slider > * {
	flex: 0 0 70%;
}

@media (min-width: 768px) {
	.tc-product-slider {
		display: grid;
	}
	.tc-product-slider > * {
		flex: auto;
	}
}


.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    float: center !important;
    width: 100% !important;
}

/* Infinite Scroll Loader */
.tc-infinite-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 2.5rem 0;
	color: var(--tc-green);
	font-weight: 600;
	font-size: 0.95rem;
	width: 100%;
}
.tc-spin {
	animation: tc-spin 1.2s linear infinite;
}
}
@keyframes tc-spin {
	100% { transform: rotate(360deg); }
}

/* -------------------------------------
 * CART DRAWER
 * ------------------------------------- */
.tc-cart-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	visibility: hidden;
	transition: visibility 0.3s ease;
}
.tc-cart-drawer.is-open {
	visibility: visible;
}

.tc-cart-drawer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.tc-cart-drawer.is-open .tc-cart-drawer__overlay {
	opacity: 1;
}

.tc-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	background: var(--tc-surface);
	box-shadow: var(--tc-shadow-lg);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.tc-cart-drawer.is-open .tc-cart-drawer__panel {
	transform: translateX(0);
}

.tc-cart-drawer__header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--tc-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--tc-surface);
}
.tc-cart-drawer__title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--tc-text);
}
.tc-cart-drawer__close-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--tc-text-muted);
	padding: 0.5rem;
	border-radius: 50%;
	transition: background-color 0.2s, color 0.2s;
	display: flex;
}
.tc-cart-drawer__close-btn:hover {
	background: var(--tc-bg-soft);
	color: var(--tc-text);
}

.tc-cart-drawer__content {
	flex: 1;
	min-height: 0; /* Crucial for flex scrolling */
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	padding-bottom: 0; /* Let footer handle bottom padding */
	position: relative;
	overflow: hidden; /* Prevent outer scrolling */
}

/* WooCommerce Fragment Wrapper */
.widget_shopping_cart_content {
	flex: 1;
	min-height: 0; /* Crucial for flex scrolling */
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Loading State */
.tc-cart-drawer.is-loading .tc-cart-drawer__content {
	opacity: 0.5;
	pointer-events: none;
}

/* Cart Items */
.tc-drawer-cart-list {
	margin: 0 !important;
	padding: 0 0.5rem 0 0 !important; /* Space for scrollbar */
	list-style: none !important;
	flex: 1;
	overflow-y: auto; /* Only scroll the list */
}
.tc-drawer-item {
	display: grid;
	grid-template-columns: 60px 1fr 90px;
	gap: 1rem;
	align-items: center;
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--tc-border);
	position: relative;
}
.tc-drawer-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.tc-drawer-item__image img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	border-radius: var(--tc-radius-sm);
	border: 1px solid var(--tc-border);
	background: var(--tc-bg-soft);
}
.tc-drawer-item__details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.tc-drawer-item__name {
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.3;
}
.tc-drawer-item__name a {
	color: var(--tc-text);
	text-decoration: none;
}
.tc-drawer-item__price {
	font-weight: 700;
	color: var(--tc-text);
}

/* Native Remove Button */
.tc-drawer-item__remove {
	position: absolute;
	top: -5px;
	left: -5px;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: 50%;
	color: var(--tc-danger) !important;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	text-decoration: none !important;
	box-shadow: var(--tc-shadow-sm);
	transition: background 0.2s, color 0.2s;
	z-index: 10;
}
.tc-drawer-item__remove:hover {
	background: var(--tc-danger) !important;
	color: #fff !important;
}

/* Drawer Footer */
.tc-drawer-footer {
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--tc-surface);
	border-top: 1px solid var(--tc-border);
	padding: 1.25rem 1.5rem;
	box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
	margin: 1.5rem -1.5rem -1.5rem -1.5rem;
}
.tc-drawer-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--tc-text);
	margin-bottom: 1rem;
}
.tc-drawer-buttons .button {
	display: block;
	width: 100%;
	text-align: center;
	padding: 1rem;
	border-radius: var(--tc-radius-md);
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	margin-bottom: 0.5rem;
}
.tc-drawer-buttons .button.checkout {
	background: var(--tc-green);
	color: #fff;
}
.tc-drawer-buttons .button:not(.checkout) {
	background: var(--tc-bg-soft);
	color: var(--tc-text);
}

/* Empty State */
.tc-drawer-empty {
	text-align: center;
	padding: 3rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}
.tc-drawer-empty__icon {
	color: var(--tc-border);
}
.tc-drawer-empty p {
	margin: 0;
	color: var(--tc-text-muted);
}

/* -------------------------------------
 * MY ACCOUNT (APP DASHBOARD)
 * ------------------------------------- */

/* Main Layout */
.tc-myaccount-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 1.5rem;
}
@media (min-width: 992px) {
	.tc-myaccount-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
	.tc-myaccount-sidebar {
		width: 280px;
		flex-shrink: 0;
	}
	.tc-myaccount-content {
		flex: 1;
		min-width: 0;
	}
}

/* App-style Navigation Menu */
.tc-myaccount-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.tc-myaccount-nav li a {
	display: flex;
	align-items: center;
	padding: 1rem 1.25rem;
	background: var(--tc-surface);
	border-radius: var(--tc-radius-md);
	border: 1px solid var(--tc-border);
	text-decoration: none;
	color: var(--tc-text);
	transition: all 0.2s ease;
	font-weight: 500;
}
.tc-myaccount-nav li a:hover {
	border-color: rgba(10, 173, 11, 0.3);
	background: var(--tc-bg-soft);
	transform: translateY(-1px);
}
.tc-myaccount-nav li.is-active a {
	border-color: var(--tc-green);
	background: var(--tc-leaf-soft);
	color: var(--tc-green-dark);
}
.tc-nav-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-right: 1rem;
	color: inherit;
}
.tc-nav-text {
	flex: 1;
}
.tc-nav-arrow {
	display: flex;
	align-items: center;
	color: var(--tc-text-muted);
	opacity: 0.5;
}

/* Dashboard Hero */
.tc-dashboard-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--tc-surface);
	padding: 2.5rem 1.5rem;
	border-radius: var(--tc-radius-lg);
	border: 1px solid var(--tc-border);
	margin-bottom: 2rem;
}
@media (min-width: 576px) {
	.tc-dashboard-hero {
		flex-direction: row;
		text-align: left;
		gap: 2rem;
		padding: 2.5rem;
	}
}
.tc-dashboard-hero__avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--tc-leaf-soft);
	margin-bottom: 1rem;
}
@media (min-width: 576px) {
	.tc-dashboard-hero__avatar img {
		margin-bottom: 0;
	}
}
.tc-dashboard-hero__content h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.5rem;
	font-weight: 700;
}
.tc-dashboard-hero__content p {
	margin: 0;
	color: var(--tc-text-muted);
	font-size: 0.95rem;
}

/* Quick Links Grid */
.tc-dashboard-quick-links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}
@media (min-width: 576px) {
	.tc-dashboard-quick-links {
		grid-template-columns: repeat(3, 1fr);
	}
}
.tc-quick-card {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	background: var(--tc-surface);
	border-radius: var(--tc-radius-md);
	border: 1px solid var(--tc-border);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}
.tc-quick-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--tc-shadow-sm);
}
.tc-quick-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}
.tc-bg-green-light { background: var(--tc-leaf-soft); }
.tc-bg-orange-light { background: rgba(255, 126, 21, 0.1); }
.tc-bg-gray-light { background: var(--tc-bg-soft); }
.tc-quick-card__text h3 {
	margin: 0 0 0.25rem 0;
	font-size: 1rem;
	font-weight: 600;
}
.tc-quick-card__text span {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
}

/* Order Cards */
.tc-order-cards {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.tc-order-card {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	overflow: hidden;
	transition: box-shadow 0.2s;
}
.tc-order-card:hover {
	box-shadow: var(--tc-shadow-sm);
}
.tc-order-card__header {
	padding: 1.25rem;
	border-bottom: 1px solid var(--tc-border);
	background: var(--tc-bg-soft);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}
.tc-order-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.tc-order-id {
	font-weight: 700;
	font-size: 1rem;
	color: var(--tc-text);
}
.tc-order-date {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
}
.tc-order-status {
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.tc-status--default { background: var(--tc-bg-soft); color: var(--tc-text-muted); }
.tc-status--success { background: var(--tc-leaf-soft); color: var(--tc-green-dark); }
.tc-status--warning { background: rgba(255, 126, 21, 0.15); color: var(--tc-orange-warm); }
.tc-status--danger { background: rgba(217, 48, 37, 0.15); color: var(--tc-danger); }

.tc-order-card__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
@media (min-width: 576px) {
	.tc-order-card__body {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
.tc-order-card__summary {
	display: flex;
	flex-direction: column;
}
.tc-order-items {
	font-size: 0.9rem;
	color: var(--tc-text-muted);
	margin-bottom: 0.25rem;
}
.tc-order-total {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--tc-text);
}
.tc-order-card__actions {
	display: flex;
	gap: 0.5rem;
}

/* Empty States */
.tc-empty-state {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 4rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tc-empty-state__icon {
	color: var(--tc-border);
	margin-bottom: 1.5rem;
}
.tc-empty-state h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
}
.tc-empty-state p {
	color: var(--tc-text-muted);
	margin: 0 0 2rem 0;
	max-width: 300px;
}

/* -------------------------------------
 * WOOCOMMERCE PROFILE FORMS
 * ------------------------------------- */

.tc-profile-section .woocommerce form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Form Rows & Layout */
.tc-profile-section .woocommerce-form-row,
.tc-profile-section .form-row {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	float: none !important;
}

.tc-profile-section .woocommerce-address-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.tc-profile-section .woocommerce-address-fields__field-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Make certain fields full width */
	.tc-profile-section #billing_address_1_field,
	.tc-profile-section #billing_address_2_field,
	.tc-profile-section #shipping_address_1_field,
	.tc-profile-section #shipping_address_2_field,
	.tc-profile-section #billing_country_field,
	.tc-profile-section #shipping_country_field {
		grid-column: 1 / -1;
	}
}

/* Labels */
.tc-profile-section .woocommerce form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--tc-text);
	font-size: 0.95rem;
}
.tc-profile-section .woocommerce form label .required {
	color: var(--tc-danger);
	text-decoration: none;
}

/* Inputs & Textareas */
.tc-profile-section .woocommerce form input[type="text"],
.tc-profile-section .woocommerce form input[type="email"],
.tc-profile-section .woocommerce form input[type="tel"],
.tc-profile-section .woocommerce form input[type="password"],
.tc-profile-section .woocommerce form textarea,
.tc-profile-section .woocommerce form select,
.select2-container--default .select2-selection--single {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	background: var(--tc-bg-soft);
	color: var(--tc-text);
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	font-family: inherit;
}
.tc-profile-section .woocommerce form input[type="text"]:focus,
.tc-profile-section .woocommerce form input[type="email"]:focus,
.tc-profile-section .woocommerce form input[type="tel"]:focus,
.tc-profile-section .woocommerce form input[type="password"]:focus,
.tc-profile-section .woocommerce form textarea:focus,
.tc-profile-section .woocommerce form select:focus {
	border-color: var(--tc-green);
	background: #fff;
	box-shadow: 0 0 0 3px var(--tc-leaf-soft);
	outline: none;
}

/* Select2 overrides for WooCommerce */
.select2-container--default .select2-selection--single {
	height: auto !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: normal !important;
	padding-left: 0 !important;
	color: var(--tc-text) !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
}

/* Fieldset / Password Change section */
.tc-profile-section fieldset {
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	padding: 1.5rem;
	margin-top: 1rem;
	background: #fff;
}
.tc-profile-section fieldset legend {
	font-size: 1.15rem;
	font-weight: 700;
	padding: 0 0.5rem;
	color: var(--tc-text);
}
.tc-profile-section fieldset p {
	margin-bottom: 1.5rem;
}
.tc-profile-section fieldset p:last-child {
	margin-bottom: 0;
}
.tc-profile-section fieldset i {
	display: block;
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	margin-bottom: 1rem;
	font-style: normal;
}

/* Buttons */
.tc-profile-section .woocommerce form button[type="submit"] {
	background: var(--tc-green);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--tc-radius-md);
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
	width: 100%;
}
@media (min-width: 576px) {
	.tc-profile-section .woocommerce form button[type="submit"] {
		width: auto;
		min-width: 200px;
	}
}
.tc-profile-section .woocommerce form button[type="submit"]:hover {
	background: var(--tc-green-dark);
}
.tc-profile-section .woocommerce form button[type="submit"]:active {
	transform: translateY(1px);
}

/* -------------------------------------
 * VIEW ORDER PAGE
 * ------------------------------------- */

.tc-view-order-header {
	margin-bottom: 2rem;
}
.tc-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--tc-text-muted);
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 1.5rem;
	transition: color 0.2s;
}
.tc-back-link:hover {
	color: var(--tc-green);
}
.tc-view-order-title-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
}
.tc-view-order-title-row h2 {
	margin: 0;
}
.tc-order-date-full {
	margin: 0;
	color: var(--tc-text-muted);
}

.tc-view-order-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 992px) {
	.tc-view-order-grid {
		grid-template-columns: 2fr 1fr;
	}
}

.tc-view-order-card {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.tc-view-order-card h3 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.15rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--tc-border);
}

/* Items List */
.tc-vo-item-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}
.tc-vo-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--tc-border);
}
.tc-vo-item:last-child {
	border-bottom: none;
}
.tc-vo-item__img img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	background: var(--tc-bg-soft);
}
.tc-vo-item__details {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.tc-vo-item__name {
	font-weight: 600;
	color: var(--tc-text);
	margin-bottom: 0.25rem;
}
.tc-vo-item__qty {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
}
.tc-vo-item__price {
	font-weight: 700;
}

/* Totals */
.tc-vo-totals {
	background: var(--tc-bg-soft);
	padding: 1.5rem;
	border-radius: var(--tc-radius-md);
}
.tc-vo-total-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	color: var(--tc-text-muted);
}
.tc-vo-total-row--grand {
	color: var(--tc-text);
	font-weight: 700;
	font-size: 1.15rem;
	border-top: 1px solid var(--tc-border);
	margin-top: 0.5rem;
	padding-top: 1rem;
}

/* Sidebar Details */
.tc-vo-address {
	font-style: normal;
	line-height: 1.6;
	color: var(--tc-text-muted);
}
.tc-vo-phone, .tc-vo-email {
	display: inline-block;
	margin-top: 0.5rem;
	color: var(--tc-text);
}

.tc-vo-updates {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tc-vo-updates li {
	position: relative;
	padding-left: 1.5rem;
	padding-bottom: 1.5rem;
	border-left: 2px solid var(--tc-border);
}
.tc-vo-updates li:last-child {
	border-left-color: transparent;
	padding-bottom: 0;
}
.tc-vo-updates li::before {
	content: '';
	position: absolute;
	left: -6px;
	top: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--tc-green);
}
.tc-vo-update-date {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	display: block;
	margin-bottom: 0.25rem;
}
.tc-vo-updates p {
	margin: 0;
	font-size: 0.95rem;
}

/* -------------------------------------
 * TOAST NOTIFICATIONS & ANIMATIONS
 * ------------------------------------- */

/* Hide clunky default WooCommerce messages globally */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	display: none !important;
}

/* Toast Container (Top Left) */
.tc-toast-container {
	position: fixed;
	top: 1.5rem;
	left: 1.5rem;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	pointer-events: none;
}

/* Individual Toast */
.tc-toast {
	background: #fff;
	border-radius: var(--tc-radius-md);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-left: 4px solid var(--tc-green);
	transform: translateX(-120%);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	pointer-events: auto;
	max-width: 350px;
}
.tc-toast.tc-toast--show {
	transform: translateX(0);
	opacity: 1;
}
.tc-toast.tc-toast--hide {
	transform: translateX(-120%);
	opacity: 0;
}
.tc-toast__icon {
	color: var(--tc-green);
	display: flex;
	align-items: center;
	justify-content: center;
}
.tc-toast__text {
	color: var(--tc-text);
	font-weight: 500;
	font-size: 0.95rem;
	line-height: 1.4;
}

/* Flying Image Animation */
.tc-flying-image {
	position: fixed;
	z-index: 999999;
	pointer-events: none;
	border-radius: var(--tc-radius-sm);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	object-fit: cover;
	/* The actual transition values will be set via JS based on distance */
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-in, width 0.8s, height 0.8s;
}

/* -------------------------------------
 * CART PAGE REDESIGN
 * ------------------------------------- */

.tc-entry-card:has(.tc-cart-page-wrapper) {
	background: transparent;
	box-shadow: none;
	padding: 0;
}
.tc-entry-card:has(.tc-cart-page-wrapper) .tc-entry-title {
	font-size: 2rem;
	margin-bottom: 1rem;
	padding-left: 0;
}

.tc-cart-page-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 2rem 0;
	align-items: start;
}
@media (min-width: 992px) {
	.tc-cart-page-wrapper {
		grid-template-columns: 2fr 1fr;
		gap: 3rem;
	}
}

/* Items List */
.tc-cart-items-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Individual Cart Item Card */
.tc-cart-item {
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 1.25rem;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1.25rem;
	align-items: center;
	position: relative;
	transition: box-shadow 0.2s;
}
.tc-cart-item:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.tc-cart-item__image img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--tc-radius-sm);
	border: 1px solid var(--tc-border);
	background: var(--tc-bg-soft);
}

.tc-cart-item__details {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tc-cart-item__title {
	font-weight: 500;
	font-size: 1.05rem;
	color: var(--tc-text);
	text-decoration: none;
	margin-bottom: 0.25rem;
	display: block;
}
.tc-cart-item__title:hover {
	color: var(--tc-green);
}

.tc-cart-item__details dl.variation {
	margin: 0.25rem 0 0.5rem;
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.tc-cart-item__details dl.variation dt {
	font-weight: 500;
	float: left;
	margin-right: 0.25rem;
}
.tc-cart-item__details dl.variation dd {
	margin: 0;
	float: left;
}

.tc-cart-item__price {
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--tc-text);
	margin-top: 0.25rem;
}

.tc-cart-item__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-column: 1 / -1;
	margin-top: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--tc-border);
}
@media (min-width: 576px) {
	.tc-cart-item {
		grid-template-columns: 80px 1fr auto;
	}
	.tc-cart-item__actions {
		grid-column: auto;
		flex-direction: column;
		align-items: flex-end;
		justify-content: center;
		gap: 1rem;
		margin-top: 0;
		padding-top: 0;
		border-top: none;
		border-left: 1px solid var(--tc-border);
		padding-left: 1.25rem;
	}
}

.tc-cart-item__qty {
	/* The custom wrapper will apply */
}

.tc-btn-remove {
	color: var(--tc-text-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	border-radius: 50%;
	transition: all 0.2s;
	background: var(--tc-bg-soft);
	text-decoration: none;
}
.tc-btn-remove:hover {
	background: #fee2e2;
	color: #ef4444;
}

/* Cart Footer Actions (Coupon & Update) */
.tc-cart-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 1rem;
	padding-top: 1.5rem;
	border-top: 2px dashed var(--tc-border);
}

.tc-cart-coupon {
	display: flex;
	gap: 0.5rem;
	flex: 1;
	max-width: 400px;
}
.tc-cart-coupon input {
	flex: 1;
	min-width: 0;
	height: 48px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	padding: 0 1rem;
	font-family: inherit;
}
.tc-cart-coupon input:focus {
	border-color: var(--tc-green);
	outline: none;
}
.tc-cart-coupon button {
	height: 48px;
	padding: 0 1.5rem;
	background: var(--tc-bg-soft);
	color: var(--tc-text);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}
.tc-cart-coupon button:hover {
	background: var(--tc-border);
}

.tc-btn-update-cart {
	display: none; /* Hidden because we use JS auto-update */
}

/* Cart Sidebar (Totals) */
.tc-cart-sidebar {
	position: sticky;
	top: 100px;
}
.cart_totals {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 1.5rem;
}
.cart_totals h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--tc-border);
}

.tc-cart-totals-inner {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 1.5rem;
}
.tc-cart-total-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 1rem 0;
	border-bottom: 1px dashed var(--tc-border);
}
.tc-cart-total-row:last-child {
	border-bottom: none;
}
.tc-cart-total-label {
	font-weight: 500;
	color: var(--tc-text-muted);
}
.tc-cart-total-value {
	text-align: right;
	font-weight: 500;
	color: var(--tc-text);
}

/* Shipping Methods inside Totals */
#shipping_method {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: right;
}
#shipping_method li {
	margin-bottom: 0.5rem;
}
#shipping_method input[type="radio"] {
	margin-right: 0.5rem;
	accent-color: var(--tc-green);
}
.woocommerce-shipping-destination {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	margin-top: 0.5rem;
}
.woocommerce-shipping-calculator {
	margin-top: 1rem;
	text-align: left;
}
.shipping-calculator-button {
	color: var(--tc-green);
	font-size: 0.9rem;
	text-decoration: none;
	font-weight: 500;
}

.order-total .tc-cart-total-label {
	font-size: 1.15rem;
	color: var(--tc-text);
	font-weight: 600;
	align-self: center;
}
.order-total .tc-cart-total-value {
	font-size: 1.5rem;
	color: var(--tc-green);
	font-weight: 600 !important;
}
.order-total .tc-cart-total-value strong {
	font-weight: inherit;
}

/* Checkout Button */
.wc-proceed-to-checkout {
	margin-top: 1rem;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 54px !important;
	background: var(--tc-orange) !important;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 1.1rem !important;
	border-radius: var(--tc-radius-md) !important;
	transition: background 0.2s !important;
	border: none !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--tc-green) !important;
}

/* -------------------------------------
 * MINI CART / DRAWER REDESIGN
 * ------------------------------------- */

.tc-cart-drawer__title {
	font-weight: 600 !important;
}

.tc-drawer-cart-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tc-drawer-cart-item {
	display: flex;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--tc-border);
}
.tc-drawer-cart-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.tc-drawer-cart-item__img {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: var(--tc-radius-sm);
	border: 1px solid var(--tc-border);
	overflow: hidden;
	background: var(--tc-bg-soft);
}
.tc-drawer-cart-item__img img {
	width: 100% !important;
	height: 100% !important ;
	object-fit: cover;
	display: block;
}

.tc-drawer-cart-item__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.tc-drawer-cart-item__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.5rem;
}

.tc-drawer-cart-item__title {
	font-size: 0.95rem;
	font-weight: 500 !important;
	color: var(--tc-text);
	text-decoration: none;
	line-height: 1.3;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tc-drawer-cart-item__title:hover {
	color: var(--tc-green);
}

.tc-drawer-cart-item__remove {
	color: var(--tc-text-muted);
	display: flex;
	padding: 0.25rem;
	margin: -0.25rem -0.25rem 0 0;
	transition: color 0.2s;
}
.tc-drawer-cart-item__remove:hover {
	color: #ef4444;
}

.tc-drawer-cart-item__meta {
	font-size: 0.8rem;
	color: var(--tc-text-muted);
	margin-top: 0.25rem;
}
.tc-drawer-cart-item__meta p {
	margin: 0;
}

.tc-drawer-cart-item__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 0.5rem;
}

.tc-drawer-cart-item__price {
	font-weight: 600 !important;
	font-size: 1rem;
	color: var(--tc-text);
}

.tc-drawer-cart-item__qty .tc-quantity-wrapper {
	height: 32px;
	width: 100px;
}

.tc-drawer-cart-item__qty .tc-qty-btn {
	width: 28px;
}
.tc-drawer-cart-item__qty .tc-qty-input {
	font-size: 0.9rem;
}

/* Drawer Footer */
.tc-drawer-cart-footer {
	margin-top: auto;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	flex-shrink: 0; /* Prevent squishing */
	background: var(--tc-surface);
	position: relative;
	z-index: 10;
}

.tc-drawer-cart-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px dashed var(--tc-border);
	font-size: 1.05rem;
	font-weight: 500 !important;
	color: var(--tc-text);
	margin-bottom: 1rem;
}
.tc-drawer-cart-total strong {
	font-weight: 500 !important;
}
.tc-drawer-cart-total .amount {
	color: var(--tc-green);
	font-size: 1.15rem;
	font-weight: 600 !important;
}

.tc-drawer-cart-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.woocommerce-mini-cart__buttons.tc-drawer-cart-buttons a.button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 48px !important;
	border-radius: var(--tc-radius-md) !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	transition: all 0.2s !important;
	border: 1px solid transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1 !important;
}
.woocommerce-mini-cart__buttons.tc-drawer-cart-buttons a.button:not(.checkout) {
	background: var(--tc-surface) !important;
	color: var(--tc-text) !important;
	border-color: var(--tc-border) !important;
}
.woocommerce-mini-cart__buttons.tc-drawer-cart-buttons a.button:not(.checkout):hover {
	border-color: var(--tc-green) !important;
	color: var(--tc-green) !important;
	background: #fff !important;
}
.woocommerce-mini-cart__buttons.tc-drawer-cart-buttons a.button.checkout {
	background: var(--tc-green) !important;
	color: #fff !important;
}
.woocommerce-mini-cart__buttons.tc-drawer-cart-buttons a.button.checkout:hover {
	opacity: 0.9 !important;
}

/* Empty State */
.tc-drawer-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem 1rem;
	color: var(--tc-text-muted);
}
.tc-drawer-cart-empty svg {
	margin-bottom: 1rem;
	color: var(--tc-border);
}

/* -------------------------------------
 * CHECKOUT PAGE REDESIGN
 * ------------------------------------- */

.tc-checkout-page-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 2rem 0;
	align-items: start;
}
@media (min-width: 992px) {
	.tc-checkout-page-wrapper {
		grid-template-columns: 1.5fr 1fr;
		gap: 3rem;
	}
}

/* Main Forms (Left Column) */
.tc-checkout-main {
	min-width: 0;
}
.tc-checkout-sidebar {
	min-width: 0;
}

.tc-checkout-main h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tc-text);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--tc-border);
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 768px) {
	.woocommerce-billing-fields__field-wrapper,
	.woocommerce-shipping-fields__field-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.form-row-first, 
	.form-row-last {
		grid-column: span 1;
	}
	.form-row-wide {
		grid-column: span 2;
	}
}

.woocommerce form .form-row-first, 
.woocommerce form .form-row-last,
.woocommerce form .form-row-wide {
	width: 100% !important;
	float: none !important;
}

.woocommerce form .form-row {
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
}
.woocommerce form .form-row label {
	font-size: 0.9rem;
	font-weight: 500 !important;
	color: var(--tc-text-muted) !important;
	margin-bottom: 0.5rem;
}
.woocommerce form .form-row label abbr.required {
	color: #ef4444 !important;
	text-decoration: none !important;
	border: none !important;
}
.woocommerce form .form-row .woocommerce-input-wrapper {
	width: 100% !important;
	display: block !important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100% !important;
	height: 48px !important;
	border: 1px solid var(--tc-border) !important;
	border-radius: var(--tc-radius-md) !important;
	padding: 0 1rem !important;
	font-family: inherit !important;
	font-size: 1rem !important;
	color: var(--tc-text) !important;
	background: #fff !important;
	transition: all 0.2s !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
}
.woocommerce form .form-row textarea {
	height: auto !important;
	min-height: 100px !important;
	padding: 1rem !important;
	resize: vertical !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	outline: none !important;
	border-color: var(--tc-green) !important;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

/* Select2 / Custom Selects Override */
.select2-container--default .select2-selection--single {
	height: 48px !important;
	border: 1px solid var(--tc-border) !important;
	border-radius: var(--tc-radius-md) !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 1rem !important;
	background: #fff !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 46px !important;
	padding: 0 !important;
	color: var(--tc-text) !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 46px !important;
	right: 10px !important;
}
.select2-container--open .select2-selection--single {
	border-color: var(--tc-green) !important;
}

/* Checkboxes & Radios */
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
	border-color: var(--tc-green) !important;
}
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
	border-color: #ef4444 !important;
}

.woocommerce-account-fields,
.woocommerce-shipping-fields {
	margin-top: 2rem;
}

/* Sidebar (Right Column) */
/* (Styles merged above into .tc-checkout-sidebar) */
.tc-checkout-sidebar__inner {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 1.5rem;
	word-break: break-word;
}
.tc-checkout-sidebar__title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--tc-border);
	color: var(--tc-text);
}

/* Order Review Table */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
	width: 100% !important;
	border-collapse: collapse !important;
	margin-bottom: 1.5rem !important;
	border: none !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
	padding: 1rem 0 !important;
	border-top: none !important;
	border-bottom: 1px dashed var(--tc-border) !important;
	text-align: left !important;
	vertical-align: top !important;
	background: transparent !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th {
	font-weight: 500 !important;
	color: var(--tc-text-muted) !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
	text-align: right !important;
	font-weight: 500 !important;
	color: var(--tc-text) !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name {
	font-weight: 500 !important;
	color: var(--tc-text) !important;
	text-align: left !important;
	padding-right: 1rem !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name strong {
	font-weight: 500 !important;
	color: var(--tc-text-muted) !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-total,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .shipping td {
	font-weight: 600 !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .order-total th {
	font-size: 1.15rem !important;
	color: var(--tc-text) !important;
	padding-top: 1.25rem !important;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .order-total td,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .order-total strong {
	font-size: 1.25rem !important;
	color: var(--tc-green) !important;
	font-weight: 600 !important;
	padding-top: 1.25rem !important;
}

/* Payment Section */
.woocommerce #payment {
	background: #fff !important;
	border: 1px solid var(--tc-border) !important;
	border-radius: var(--tc-radius-md) !important;
	padding: 1.25rem !important;
}
.woocommerce #payment ul.payment_methods {
	list-style: none !important;
	margin: 0 0 1rem !important;
	padding: 0 !important;
	border-bottom: none !important;
}
.woocommerce #payment ul.payment_methods li {
	margin-bottom: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	border-bottom: 1px dashed var(--tc-border) !important;
}
.woocommerce #payment ul.payment_methods li:last-child {
	border-bottom: none !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
.woocommerce #payment ul.payment_methods li input[type="radio"] {
	margin-right: 0.5rem !important;
	accent-color: var(--tc-green) !important;
}
.woocommerce #payment ul.payment_methods li label {
	font-weight: 500 !important;
	color: var(--tc-text) !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
}
.woocommerce #payment ul.payment_methods li label img {
	margin-left: 0.5rem !important;
}
.woocommerce #payment div.payment_box {
	background: var(--tc-bg-soft) !important;
	padding: 1rem !important;
	border-radius: var(--tc-radius-sm) !important;
	font-size: 0.9rem !important;
	color: var(--tc-text-muted) !important;
	margin-top: 0.75rem !important;
	position: relative !important;
	box-shadow: none !important;
}
.woocommerce #payment div.payment_box::before {
	content: '' !important;
	display: block !important;
	border: 8px solid transparent !important;
	border-bottom-color: var(--tc-bg-soft) !important;
	position: absolute !important;
	top: -16px !important;
	left: 1.5rem !important;
}

.woocommerce-terms-and-conditions-wrapper {
	margin: 1.5rem 0 !important;
	font-size: 0.85rem !important;
	color: var(--tc-text-muted) !important;
	line-height: 1.5 !important;
}
.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
	accent-color: var(--tc-green) !important;
	margin-right: 0.5rem !important;
}
.woocommerce-terms-and-conditions-wrapper label.checkbox {
	font-weight: 500 !important;
	display: flex !important;
	align-items: flex-start !important;
}
.woocommerce-terms-and-conditions-checkbox-text {
	display: inline-block !important;
	margin-top: -2px !important;
}

.woocommerce #place_order {
	width: 100% !important;
	height: 54px !important;
	background: var(--tc-green) !important;
	color: #fff !important;
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	border: none !important;
	border-radius: var(--tc-radius-md) !important;
	cursor: pointer !important;
	transition: opacity 0.2s !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	float: none !important;
}
.woocommerce #place_order:hover {
	opacity: 0.9 !important;
}

/* -------------------------------------
 * THANK YOU PAGE (ORDER RECEIVED) REDESIGN
 * ------------------------------------- */

/* Hide the default page title on the Thank You page */
.tc-entry-card:has(.tc-thankyou-page-wrapper) .tc-entry-title {
	display: none;
}

.tc-thankyou-page-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 2rem 0;
}

/* 2-Column Grid for Thank You Page */
.tc-thankyou-columns-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}
@media (min-width: 992px) {
	.tc-thankyou-columns-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

/* Success Banner */
.tc-thankyou-success-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1rem 3rem 1rem;
	margin-bottom: 0;
}
.tc-thankyou-success-icon {
	color: var(--tc-green);
	margin-bottom: 1rem;
	background: rgba(34, 197, 94, 0.1);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tc-thankyou-success-text h2 {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--tc-text);
	margin: 0 0 0.5rem 0;
}
.tc-thankyou-success-text p {
	font-size: 1.1rem;
	color: var(--tc-text-muted);
	margin: 0;
}

/* Overview Grid */
.tc-thankyou-overview-container {
	background: var(--tc-bg-soft);
	border-radius: var(--tc-radius-lg);
	padding: 2rem;
	margin-bottom: 2.5rem;
}
.tc-thankyou-overview-grid {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 576px) {
	.tc-thankyou-overview-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}
.tc-thankyou-overview-grid li {
	display: flex;
	flex-direction: column;
	border-right: none;
	padding-right: 0;
}
.tc-thankyou-overview-grid .tc-overview-label {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.25rem;
}
.tc-thankyou-overview-grid .tc-overview-value {
	font-size: 1.1rem;
	font-weight: 600 !important;
	color: var(--tc-text) !important;
}

/* Order Details Override */
.tc-thankyou-order-details-container {
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 2rem;
}
.woocommerce-order-details__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tc-text);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--tc-border);
}

/* Order Items */
.tc-order-details-wrapper {
	display: flex;
	flex-direction: column;
}
.tc-order-item {
	display: flex;
	align-items: flex-start;
	padding: 1rem 0;
	border-bottom: 1px dashed var(--tc-border);
	gap: 1rem;
}
.tc-order-item-image {
	width: 64px;
	height: 64px;
	border-radius: var(--tc-radius-sm);
	overflow: hidden;
	background: var(--tc-bg-soft);
	flex-shrink: 0;
}
.tc-order-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tc-order-item-details {
	flex: 1;
	min-width: 0;
}
.tc-order-item-name {
	font-weight: 500;
	color: var(--tc-text);
	margin-bottom: 0.25rem;
}
.tc-order-item-name a {
	color: inherit;
	text-decoration: none;
}
.tc-order-item-meta {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
}
.tc-order-item-purchase-note {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	background: var(--tc-bg-soft);
	padding: 0.5rem;
	border-radius: var(--tc-radius-sm);
	color: var(--tc-text-muted);
}
.tc-order-item-totals {
	text-align: right;
	flex-shrink: 0;
}
.tc-order-item-qty {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
	margin-bottom: 0.25rem;
}
.tc-order-item-subtotal {
	font-weight: 600;
	color: var(--tc-text);
}

/* Totals Summary */
.tc-order-details-totals {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 1.5rem;
}
.tc-order-totals-list {
	width: 100%;
	max-width: 300px;
}
.tc-order-total-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	font-size: 0.95rem;
}
.tc-order-total-row.order_total {
	font-size: 1.1rem;
	padding-top: 1rem;
	margin-top: 0.5rem;
	border-top: 1px solid var(--tc-border);
}
.tc-order-total-row.order_total .tc-order-total-value {
	color: var(--tc-green);
}
.tc-order-total-label {
	color: var(--tc-text-muted);
}
.tc-order-total-value {
	font-weight: 600;
	color: var(--tc-text);
}

/* Customer Addresses */
.tc-customer-details-card {
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	padding: 1.5rem;
	margin-top: 2rem;
}
.tc-customer-details-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	list-style: none;
	color: var(--tc-text);
}
.tc-customer-details-summary::-webkit-details-marker {
	display: none;
}
.tc-customer-details-accordion[open] .tc-accordion-icon {
	transform: rotate(180deg);
}
.tc-accordion-icon {
	transition: transform 0.2s ease;
	color: var(--tc-text-muted);
}
.tc-customer-details-content {
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px dashed var(--tc-border);
}
.tc-customer-addresses-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 576px) {
	.tc-customer-addresses-grid.has-shipping {
		grid-template-columns: repeat(2, 1fr);
	}
}
.tc-address-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--tc-text);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px dashed var(--tc-border);
}
.tc-address-block {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}
.tc-address-icon {
	color: var(--tc-green);
	background: rgba(34, 197, 94, 0.1);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.tc-address-content {
	font-style: normal;
	font-size: 0.95rem;
	color: var(--tc-text-muted);
	line-height: 1.6;
}
.tc-address-content::first-line {
	font-weight: 600;
	color: var(--tc-text);
	font-size: 1.05rem;
}
.tc-address-contacts {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-left: calc(36px + 1rem); /* Align with text */
}
.tc-address-contact {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--tc-text-muted);
	margin: 0;
}
.tc-address-contact svg {
	color: var(--tc-text-muted);
}
.tc-thankyou-order-details-container h2 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tc-text);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--tc-border);
}

/* -------------------------------------
 * BULK ORDER PAGE
 * ------------------------------------- */
.tc-bulk-order-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0;
}
.tc-bulk-order-header {
	margin-bottom: 2rem;
	text-align: center;
}
.tc-bulk-order-header h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--tc-text);
}
.tc-bulk-order-header p {
	color: var(--tc-text-muted);
	font-size: 1.1rem;
}
.tc-bulk-order-table-wrap {
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	overflow: visible;
	margin-bottom: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.tc-bulk-order-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}
.tc-bulk-order-table th {
	background: var(--tc-bg-soft);
	padding: 1rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--tc-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 1px solid var(--tc-border);
}
.tc-bulk-order-table td {
	padding: 1rem;
	vertical-align: middle;
	border-bottom: 1px solid var(--tc-border);
}
.tc-bulk-order-table tbody tr:last-child td {
	border-bottom: none;
}
.tc-bulk-order-table tfoot td {
	padding: 1.5rem 1rem;
	background: var(--tc-bg-soft);
	border-top: 2px solid var(--tc-border);
}
.tc-col-index { width: 50px; text-align: center; color: var(--tc-text-muted); }
.tc-col-product { width: 30%; }
.tc-col-variation { width: 20%; }
.tc-col-price { width: 15%; font-weight: 500; }
.tc-col-qty { width: 130px; }
.tc-col-subtotal { width: 15%; font-weight: 600; color: var(--tc-text); }
.tc-col-action { width: 50px; text-align: center; }

.tc-search-wrapper {
	position: relative;
}
.tc-bulk-search-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	font-size: 1rem;
	transition: all 0.2s ease;
}
.tc-bulk-search-input:focus {
	outline: none;
	border-color: var(--tc-green);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.tc-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	z-index: 50;
	max-height: 300px;
	overflow-y: auto;
	display: none;
	margin-top: 0.5rem;
}
.tc-search-loading, .tc-search-no-results {
	padding: 1rem;
	color: var(--tc-text-muted);
	text-align: center;
	font-size: 0.9rem;
}
.tc-search-results ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tc-search-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--tc-border);
	cursor: pointer;
	transition: background 0.2s ease;
}
.tc-search-item:last-child {
	border-bottom: none;
}
.tc-search-item:hover {
	background: var(--tc-bg-soft);
}
.tc-search-item-img {
	width: 40px;
	height: 40px;
	border-radius: var(--tc-radius-sm);
	overflow: hidden;
	background: var(--tc-bg-soft);
	margin-right: 1rem;
	flex-shrink: 0;
}
.tc-search-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tc-search-item-info {
	flex: 1;
}
.tc-search-item-name {
	font-weight: 500;
	color: var(--tc-text);
	margin-bottom: 0.25rem;
}
.tc-search-item-price {
	font-size: 0.85rem;
	color: var(--tc-text-muted);
}

/* Custom Select Dropdown */
.tc-custom-select {
	position: relative;
	width: 100%;
}
.tc-custom-select-trigger {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	font-size: 0.95rem;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	user-select: none;
	transition: all 0.2s ease;
}
.tc-custom-select-trigger svg {
	width: 16px;
	height: 16px;
	color: var(--tc-text-muted);
	transition: transform 0.2s ease;
}
.tc-custom-select.open .tc-custom-select-trigger {
	border-color: var(--tc-green);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.tc-custom-select.open .tc-custom-select-trigger svg {
	transform: rotate(180deg);
}
.tc-custom-select.disabled .tc-custom-select-trigger {
	background: var(--tc-bg-soft);
	cursor: not-allowed;
	color: var(--tc-text-muted);
}
.tc-custom-select-options {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	z-index: 60;
	max-height: 250px;
	overflow-y: auto;
	display: none;
}
.tc-custom-select.open .tc-custom-select-options {
	display: block;
}
.tc-custom-option {
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background 0.2s ease;
}
.tc-custom-option:hover {
	background: var(--tc-bg-soft);
	color: var(--tc-green);
}

.tc-bulk-qty-wrapper {
	display: flex;
	align-items: center;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	overflow: hidden;
	width: 100%;
}
.tc-bulk-qty-btn {
	background: #f9f9f9;
	border: none;
	width: 32px;
	height: 38px;
	display: flex;
	align-items: center;
	border-radius: 0%;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	color: var(--tc-text);
	transition: background 0.2s ease;
}
.tc-bulk-qty-btn:hover:not(:disabled) {
	background: #eee;
}
.tc-bulk-qty-btn:disabled {
	color: var(--tc-text-muted);
	cursor: not-allowed;
	background: #f1f1f1;
}
.tc-bulk-qty {
	width: calc(100% - 64px);
	padding: 0;
	border: none;
	border-left: 1px solid var(--tc-border);
	border-right: 1px solid var(--tc-border);
	text-align: center;
	font-size: 0.95rem;
	height: 38px;
	border-radius: 0;
}
.tc-bulk-qty:focus {
	outline: none;
}
.tc-bulk-qty:disabled {
	background: var(--tc-bg-soft);
	cursor: not-allowed;
}
/* Hide number input spinners */
.tc-bulk-qty::-webkit-outer-spin-button,
.tc-bulk-qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.tc-bulk-qty[type=number] {
	-moz-appearance: textfield;
}
.tc-bulk-remove-row {
	background: none;
	border: none;
	color: #ef4444;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.25rem;
	line-height: 1;
	border-radius: var(--tc-radius-sm);
	transition: all 0.2s ease;
}
.tc-bulk-remove-row:hover {
	background: #fef2f2;
}

.tc-bulk-order-total-label {
	text-align: right;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tc-text);
}
.tc-bulk-order-total-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tc-green);
}
.tc-bulk-order-actions {
	text-align: right;
	margin-bottom: 2rem;
}
#tc-bulk-order-add-to-cart {
	padding: 1rem 3rem;
	font-size: 1.1rem;
}
#tc-bulk-order-messages {
	margin-bottom: 2rem;
}
.tc-error-row {
	background-color: #fef2f2 !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.tc-bulk-order-table-wrap {
		border: none;
		box-shadow: none;
		background: transparent;
	}
	.tc-bulk-order-table, 
	.tc-bulk-order-table thead, 
	.tc-bulk-order-table tbody, 
	.tc-bulk-order-table th, 
	.tc-bulk-order-table td, 
	.tc-bulk-order-table tr { 
		display: block; 
	}
	.tc-bulk-order-table thead tr { 
		display: none; 
	}
	.tc-bulk-order-table tbody tr {
		background: #fff;
		border: 1px solid var(--tc-border);
		border-radius: var(--tc-radius-lg);
		margin-bottom: 1.5rem;
		padding: 1rem;
		position: relative;
		box-shadow: 0 2px 4px rgba(0,0,0,0.02);
	}
	.tc-bulk-order-table td { 
		border: none;
		padding: 0.5rem 0;
		position: relative;
		width: 100% !important;
	}
	.tc-col-index {
		display: none !important;
	}
	.tc-col-action {
		position: absolute;
		top: 1rem;
		right: 1rem;
		padding: 0 !important;
		width: auto !important;
	}
	.tc-col-price, .tc-col-subtotal {
		display: flex !important;
		justify-content: space-between;
		align-items: center;
	}
	.tc-col-price::before {
		content: "Price:";
		font-weight: 600;
		color: var(--tc-text-muted);
	}
	.tc-col-subtotal::before {
		content: "Subtotal:";
		font-weight: 600;
		color: var(--tc-text-muted);
	}
	.tc-bulk-order-table tfoot td {
		display: flex !important;
		justify-content: space-between;
		align-items: center;
		padding: 1rem !important;
		background: #fff;
		border: 1px solid var(--tc-border);
		border-radius: var(--tc-radius-lg);
	}
	.tc-bulk-order-total-label {
		text-align: left;
		font-size: 1.1rem;
	}
	.tc-bulk-order-total-value {
		font-size: 1.25rem;
	}
}
.tc-thankyou-order-details-container table {
	margin-bottom: 0 !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	width: 100%;
}

.page-id-10012 {
	overflow-x: hidden;
}
/* -------------------------------------
 * AUTHENTICATION PAGES (LOGIN / REGISTER)
 * ------------------------------------- */
.tc-auth-page {
	padding: 4rem 0;
	background-color: var(--tc-background);
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
}
.tc-auth-wrapper {
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
}
.tc-auth-card {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-xl);
	padding: 3rem 2.5rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.tc-auth-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.tc-auth-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--tc-text);
}
.tc-auth-subtitle {
	color: var(--tc-text-muted);
	margin: 0;
}
.tc-auth-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.tc-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.tc-form-group label {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--tc-text);
}
.tc-form-group label .required {
	color: var(--tc-primary);
}
.tc-input {
	padding: 0.875rem 1rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-lg);
	font-family: inherit;
	font-size: 1rem;
	color: var(--tc-text);
	transition: all 0.2s ease;
	background: var(--tc-surface);
	width: 100%;
}
.tc-input:focus {
	outline: none;
	border-color: var(--tc-primary);
	box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.1);
}
.tc-input-prefix-wrapper {
	display: flex;
	align-items: stretch;
}
.tc-input-prefix {
	display: flex;
	align-items: center;
	padding: 0 1rem;
	background: var(--tc-background);
	border: 1px solid var(--tc-border);
	border-right: none;
	border-radius: var(--tc-radius-lg) 0 0 var(--tc-radius-lg);
	font-weight: 600;
	color: var(--tc-text-muted);
}
.tc-input-prefix-wrapper .tc-input {
	border-radius: 0 var(--tc-radius-lg) var(--tc-radius-lg) 0;
}
.tc-auth-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
}
.tc-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	color: var(--tc-text-muted);
}
.tc-auth-link {
	color: var(--tc-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}
.tc-auth-link:hover {
	color: var(--tc-primary-hover);
}
.tc-auth-link-bold {
	font-weight: 600;
}
.tc-btn-block {
	width: 100%;
	height: 52px;
	position: relative;
	margin-top: 0.5rem;
}
.tc-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: tc-spin 1s ease-in-out infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
}
@keyframes tc-spin {
	to { transform: rotate(360deg); }
}
.tc-auth-notice {
	padding: 1rem;
	border-radius: var(--tc-radius-lg);
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 0.5rem;
}
.tc-error-notice {
	background: rgba(220, 38, 38, 0.05);
	color: #dc2626;
	border: 1px solid rgba(220, 38, 38, 0.2);
}
.tc-success-notice {
	background: rgba(16, 185, 129, 0.05);
	color: #10b981;
	border: 1px solid rgba(16, 185, 129, 0.2);
}
.tc-auth-footer {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--tc-border);
	color: var(--tc-text-muted);
}

/* ==========================================================================
   TaazaPay Subscription Page
   ========================================================================== */

.tc-taazapay-page {
	background-color: var(--tc-bg);
	color: var(--tc-text);
	font-family: inherit;
}

.tc-taazapay-container {
	width: min(calc(100% - 2rem), var(--tc-content-width));
	margin: 0 auto;
}

.tc-section-title {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-align: center;
}

/* Hero Section */
.tc-taazapay-hero {
	background-color: var(--tc-text);
	background-image: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.85)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=1600');
	background-size: cover;
	background-position: center;
	color: var(--tc-surface);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}
.tc-taazapay-hero .tc-taazapay-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
@media (max-width: 991px) {
	.tc-taazapay-hero .tc-taazapay-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
}
.tc-taazapay-hero-content h1 {
	font-size: 2.5rem;
	font-weight: 600;
	margin: 0 0 1rem;
	line-height: 1.2;
	color: var(--tc-surface);
}
.tc-taazapay-hero-content p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}
.tc-taazapay-hero-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
	.tc-taazapay-hero-actions {
		justify-content: center;
		flex-direction: column;
	}
}
.tc-taazapay-hero-actions .button {
	padding: 0.875rem 1.5rem;
	font-weight: 600;
	border-radius: var(--tc-radius-md);
	text-align: center;
	transition: background-color 0.2s;
}
.tc-taazapay-hero-actions .button-primary {
	background-color: var(--tc-orange);
	color: var(--tc-surface);
}
.tc-taazapay-hero-actions .button-primary:hover {
	background-color: var(--tc-green);
}
.tc-taazapay-hero-actions .button-secondary {
	background-color: transparent;
	color: var(--tc-surface);
	border: 2px solid var(--tc-surface);
}
.tc-taazapay-hero-actions .button-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Trust Chips */
.tc-taazapay-trust-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
@media (max-width: 991px) {
	.tc-taazapay-trust-chips {
		justify-content: center;
	}
}
.tc-taazapay-chip {
	background: rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Hero Visual Card */
.tc-taazapay-hero-visual {
	display: flex;
	justify-content: center;
}
.tc-taazapay-hero-card {
	background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: var(--tc-radius-xl);
	padding: 2rem;
	width: 100%;
	max-width: 320px;
	aspect-ratio: 1.58 / 1;
	display: flex;
	align-items: flex-end;
}
.tc-taazapay-hero-card-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.tc-taazapay-hero-logo {
	font-weight: 600;
	font-size: 1.25rem;
}
.tc-taazapay-hero-balance {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: right;
}
.tc-taazapay-hero-balance small {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	opacity: 0.8;
}

/* How It Works */
.tc-taazapay-how-it-works {
	padding: 4rem 0;
	background-color: var(--tc-surface);
}
.tc-taazapay-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
@media (max-width: 991px) {
	.tc-taazapay-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.tc-taazapay-steps {
		grid-template-columns: 1fr;
	}
}
.tc-taazapay-step {
	text-align: center;
}
.tc-taazapay-step-icon {
	width: 48px;
	height: 48px;
	background-color: var(--tc-bg-soft);
	color: var(--tc-green);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	border: 1px solid var(--tc-border);
}
.tc-taazapay-step h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
}
.tc-taazapay-step p {
	font-size: 0.875rem;
	color: var(--tc-text-muted);
	margin: 0;
}

/* Plan Cards */
.tc-taazapay-plans-section {
	padding: 4rem 0;
	background-color: var(--tc-bg-soft);
}
.tc-taazapay-plans {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}
@media (max-width: 1199px) {
	.tc-taazapay-plans {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.tc-taazapay-plans {
		grid-template-columns: 1fr;
	}
}
.tc-taazapay-plan-card {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: 24px;
	padding: 1.5rem;
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.tc-taazapay-plan-card-featured {
	border-color: var(--tc-green);
	box-shadow: var(--tc-shadow-sm);
}
.tc-taazapay-plan-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--tc-orange);
	color: var(--tc-surface);
	padding: 0.25rem 1rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
}
.tc-taazapay-plan-media {
	height: 170px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 575px) {
	.tc-taazapay-plan-media {
		height: 140px;
	}
}
.tc-taazapay-plan-image {
	max-height: 100%;
	width: auto;
	object-fit: contain;
}
.tc-taazapay-plan-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.tc-taazapay-plan-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 0.25rem;
}
.tc-taazapay-plan-subtitle {
	font-size: 0.875rem;
	color: var(--tc-text-muted);
	margin-bottom: 1rem;
}
.tc-taazapay-plan-amount {
	font-size: 2rem;
	font-weight: 600;
	color: var(--tc-green);
	line-height: 1;
}
.tc-taazapay-plan-limit-note {
	font-size: 0.75rem;
	color: var(--tc-text-muted);
	margin-bottom: 1.5rem;
	display: block;
	margin-top: 0.25rem;
}
.tc-taazapay-plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
	font-size: 0.875rem;
	text-align: left;
}
.tc-taazapay-plan-features li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--tc-border);
}
.tc-taazapay-plan-features li:last-child {
	border-bottom: none;
}
.tc-taazapay-plan-note {
	font-size: 0.875rem;
	color: var(--tc-text-muted);
	margin-bottom: 1.5rem;
	margin-top: auto;
}
.tc-taazapay-plan-card .tc-plan-btn {
	width: 100%;
	padding: 0.875rem;
	border-radius: var(--tc-radius-md);
	font-weight: 600;
	text-align: center;
	background-color: var(--tc-orange);
	color: var(--tc-surface);
	transition: background-color 0.2s;
	display: block;
}
.tc-taazapay-plan-card .tc-plan-btn:hover {
	background-color: var(--tc-green);
}

/* Compare Plans Table */
.tc-taazapay-compare {
	padding: 4rem 0;
	background-color: var(--tc-surface);
}
.tc-taazapay-table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
}
.tc-taazapay-table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	text-align: left;
}
.tc-taazapay-table th,
.tc-taazapay-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--tc-border);
}
.tc-taazapay-table th {
	background-color: var(--tc-bg-soft);
	font-weight: 600;
	position: sticky;
	left: 0;
	z-index: 1;
}
.tc-taazapay-table th:first-child,
.tc-taazapay-table td:first-child {
	font-weight: 600;
	background-color: var(--tc-bg-soft);
	position: sticky;
	left: 0;
	z-index: 2;
}

/* Eligibility */
.tc-taazapay-eligibility {
	padding: 4rem 0;
	background-color: var(--tc-bg-soft);
	text-align: center;
}
.tc-taazapay-subtitle {
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--tc-text-muted);
}
.tc-taazapay-eligibility-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.tc-taazapay-eligibility-card {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	padding: 1rem 1.5rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.tc-check {
	color: var(--tc-green);
	font-weight: bold;
}

/* Terms Section */
.tc-taazapay-terms {
	padding: 4rem 0;
	background-color: var(--tc-surface);
}
.tc-taazapay-terms-box {
	background: var(--tc-bg-soft);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	padding: 2rem;
}
.tc-taazapay-terms-box h2 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.tc-taazapay-terms-box ul {
	margin: 0;
	padding-left: 1.5rem;
	color: var(--tc-text-muted);
	font-size: 0.875rem;
}
.tc-taazapay-terms-box li {
	margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.tc-taazapay-faq-section {
	padding: 4rem 0;
	background-color: var(--tc-bg-soft);
}
.tc-taazapay-faq {
	max-width: 800px;
	margin: 0 auto;
}
.tc-taazapay-accordion-item {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	margin-bottom: 1rem;
	overflow: hidden;
}
.tc-taazapay-accordion-header {
	width: 100%;
	text-align: left;
	padding: 1.25rem 1.5rem;
	background: none;
	border-radius: 0%;
	border: none;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--tc-text);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tc-taazapay-accordion-icon {
	width: 24px;
	height: 24px;
	position: relative;
}
.tc-taazapay-accordion-icon::before,
.tc-taazapay-accordion-icon::after {
	content: '';
	position: absolute;
	background-color: var(--tc-green);
	transition: transform 0.3s;
}
.tc-taazapay-accordion-icon::before {
	top: 11px;
	left: 4px;
	width: 16px;
	height: 2px;
}
.tc-taazapay-accordion-icon::after {
	top: 4px;
	left: 11px;
	width: 2px;
	height: 16px;
}
.tc-taazapay-accordion-header[aria-expanded="true"] .tc-taazapay-accordion-icon::after {
	transform: rotate(90deg);
}
.tc-taazapay-accordion-content {
	padding: 0 1.5rem 1.25rem;
	color: var(--tc-text-muted);
}
.tc-taazapay-accordion-content[hidden] {
	display: none;
}

/* Final CTA */
.tc-taazapay-cta {
	padding: 5rem 0;
	background-color: var(--tc-green-dark);
	color: var(--tc-surface);
	text-align: center;
}
.tc-taazapay-cta h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--tc-surface);
}
.tc-taazapay-cta p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}
.tc-taazapay-cta-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
}
@media (max-width: 575px) {
	.tc-taazapay-cta-actions {
		flex-direction: column;
	}
}
.tc-taazapay-cta-actions .button {
	padding: 0.875rem 2rem;
	font-weight: 600;
	border-radius: var(--tc-radius-md);
	transition: background-color 0.2s;
}
.tc-taazapay-cta-actions .button-primary {
	background-color: var(--tc-orange);
	color: var(--tc-surface);
}
.tc-taazapay-cta-actions .button-primary:hover {
	background-color: var(--tc-green);
}
.tc-taazapay-cta-actions .button-secondary {
	background-color: transparent;
	color: var(--tc-surface);
	border: 2px solid var(--tc-surface);
}
.tc-taazapay-cta-actions .button-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   TaazaCart Memberships Page
   ========================================================================== */

.tc-membership-page {
	font-family: "Avenir Next", "Segoe UI", sans-serif;
	color: var(--tc-text);
}

/* 1. Hero Section */
.tc-membership-hero {
	background: var(--tc-bg-soft);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}
.tc-membership-hero__inner {
	background-color: var(--tc-text);
	background-image: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.85)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=1600');
	background-size: cover;
	background-position: center;
	border-radius: var(--tc-radius-xl);
	padding: 3rem 2rem;
	color: var(--tc-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: var(--tc-shadow-lg);
}
.tc-membership-hero__content {
	max-width: 700px;
}
.tc-membership-hero__content h1 {
	color: var(--tc-surface);
	font-size: 2.5rem;
	margin: 0.5rem 0 1rem;
	font-weight: 600;
}
.tc-membership-hero__subheadline {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1rem;
}
.tc-membership-hero__highlight {
	font-size: 1.125rem;
	color: var(--tc-orange);
	margin-bottom: 2rem;
}
.tc-membership-hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.tc-membership-hero__btn-primary {
	background-color: var(--tc-orange) !important;
	color: var(--tc-surface) !important;
	border: none !important;
	padding: 0.8rem 2rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
}
.tc-membership-hero__btn-secondary {
	background-color: transparent !important;
	color: var(--tc-surface) !important;
	border: 2px solid var(--tc-surface) !important;
	padding: 0.8rem 2rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
}

/* 2. Chips */
.tc-membership-chips {
	padding: 2rem 0;
}
.tc-membership-chips__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.tc-membership-chip {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--tc-green-dark);
	box-shadow: var(--tc-shadow-sm);
}

/* 3. Cards */
.tc-membership-plans {
	padding: 3rem 0;
}
.tc-membership-plans__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
.tc-membership-card {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tc-membership-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tc-shadow-md);
}
.tc-membership-card--highlight {
	border-color: var(--tc-orange);
	box-shadow: 0 0 0 1px var(--tc-orange);
}
.tc-membership-card--premium {
	border-color: var(--tc-text);
}
.tc-membership-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--tc-orange);
	color: var(--tc-surface);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	text-transform: uppercase;
	z-index: 2;
}
.tc-membership-badge--premium {
	background: var(--tc-text);
}
.tc-membership-card-media {
	background: var(--tc-bg-soft);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--tc-border);
	height: 220px;
}
.tc-membership-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tc-membership-card__content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.tc-membership-card-label {
	font-size: 0.75rem;
	color: var(--tc-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}
.tc-membership-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0.25rem 0 1rem;
	color: var(--tc-text);
}
.tc-membership-card__price .amount {
	font-size: 2rem;
	font-weight: 700;
	color: var(--tc-green-dark);
}
.tc-membership-card__ideal {
	font-size: 0.875rem;
	color: var(--tc-text-muted);
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}
.tc-membership-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex: 1;
}
.tc-membership-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--tc-text);
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.tc-membership-features li svg {
	color: var(--tc-green);
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.tc-membership-card__action {
	margin-top: auto;
}
.tc-membership-card__btn {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	border-radius: 999px !important;
	padding: 0.8rem !important;
	font-weight: 600 !important;
}
.tc-membership-card--highlight .tc-membership-card__btn {
	background-color: var(--tc-orange) !important;
	color: var(--tc-surface) !important;
}
.tc-membership-card--premium .tc-membership-card__btn {
	background-color: var(--tc-text) !important;
	color: var(--tc-surface) !important;
}

/* 4. Compare Table */
.tc-membership-compare {
	padding: 3rem 0;
	background: var(--tc-bg-soft);
}
.tc-membership-compare__wrapper {
	overflow-x: auto;
	margin-top: 2rem;
	background: var(--tc-surface);
	border-radius: var(--tc-radius-lg);
	box-shadow: var(--tc-shadow-sm);
	border: 1px solid var(--tc-border);
}
.tc-membership-compare__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}
.tc-membership-compare__table th,
.tc-membership-compare__table td {
	padding: 1rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid var(--tc-border);
}
.tc-membership-compare__table th {
	background: var(--tc-bg-soft);
	font-weight: 600;
	color: var(--tc-text);
}
.tc-membership-compare__table td {
	color: var(--tc-text-muted);
	font-size: 0.95rem;
}
.tc-membership-compare__table tr td:first-child {
	font-weight: 500;
	color: var(--tc-text);
}

/* 5. How It Works */
.tc-membership-steps-section {
	padding: 4rem 0;
}
.tc-membership-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
.tc-membership-step {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	padding: 2rem;
	border-radius: var(--tc-radius-lg);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tc-membership-step__number {
	width: 48px;
	height: 48px;
	background: var(--tc-green-dark);
	color: var(--tc-surface);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.tc-membership-step p {
	font-weight: 500;
	color: var(--tc-text);
	margin: 0;
	line-height: 1.4;
}

/* 6. Notes */
.tc-membership-notes {
	padding: 2rem 0;
}
.tc-membership-notes__inner {
	background: var(--tc-bg-soft);
	border: 1px solid var(--tc-border);
	padding: 2rem;
	border-radius: var(--tc-radius-lg);
}
.tc-membership-notes__inner h3 {
	font-size: 1.125rem;
	margin: 0 0 1rem 0;
}
.tc-membership-notes__inner ul {
	margin: 0;
	padding-left: 1.5rem;
	color: var(--tc-text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* 7. FAQ */
.tc-membership-faq {
	padding: 4rem 0;
}
.tc-membership-faq__list {
	max-width: 800px;
	margin: 2rem auto 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.tc-membership-faq__item {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	overflow: hidden;
}
.tc-membership-faq__header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-weight: 600;
	font-size: 1rem;
	color: var(--tc-text);
	cursor: pointer;
}
.tc-membership-faq__icon {
	color: var(--tc-text-muted);
	transition: transform 0.2s ease;
	display: flex;
	align-items: center;
}
.tc-membership-faq__header[aria-expanded="true"] .tc-membership-faq__icon {
	transform: rotate(180deg);
}
.tc-membership-faq__content {
	padding: 0 1.5rem 1.25rem;
	color: var(--tc-text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}
.tc-membership-faq__content p {
	margin: 0;
}

/* 8. CTA */
.tc-membership-cta {
	background: var(--tc-green-dark);
	padding: 4rem 0;
	color: var(--tc-surface);
	text-align: center;
}
.tc-membership-cta__inner {
	max-width: 600px;
	margin: 0 auto;
}
.tc-membership-cta__inner h2 {
	color: var(--tc-surface);
	font-size: 2rem;
	margin: 0 0 1rem;
}
.tc-membership-cta__inner p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
}
.tc-membership-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.tc-membership-cta__btn-primary {
	background-color: var(--tc-orange) !important;
	color: var(--tc-surface) !important;
	border: none !important;
	padding: 0.8rem 2rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
}
.tc-membership-cta__btn-secondary {
	background-color: transparent !important;
	color: var(--tc-surface) !important;
	border: 2px solid var(--tc-surface) !important;
	padding: 0.8rem 2rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
}

/* Responsive */
@media (max-width: 991px) {
	.tc-membership-plans__grid,
	.tc-membership-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.tc-membership-hero__inner {
		padding: 2rem 1rem;
	}
	.tc-membership-hero__content h1 {
		font-size: 2rem;
	}
	.tc-membership-plans__grid,
	.tc-membership-steps {
		grid-template-columns: 1fr;
	}
	.tc-membership-hero__actions,
	.tc-membership-cta__actions {
		flex-direction: column;
	}
	.tc-membership-hero__actions .button,
	.tc-membership-cta__actions .button {
		width: 100%;
	}
	.tc-membership-compare__wrapper {
		margin-inline: -1.5rem;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
}

/* Custom Page Overrides */
.page-template-template-taaza-pay-subscription .tc-main,
.page-template-template-taazacart-memberships .tc-main {
	padding-top: 0 !important;
}

/* ==========================================================================
   Product Variation Modal
   ========================================================================== */

.tc-product-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tc-product-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.tc-product-card--active {
	z-index: 9999;
	position: relative;
	box-shadow: var(--tc-shadow-lg);
}

.tc-variation-modal {
	position: fixed;
	z-index: 10000;
	background: var(--tc-surface);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
	box-shadow: var(--tc-shadow-lg);
}

.tc-variation-modal.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Desktop Popover Style */
@media (min-width: 768px) {
	.tc-variation-modal {
		width: 400px;
		max-height: 85vh;
		border-radius: var(--tc-radius-lg);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(0.95);
	}
	.tc-variation-modal.is-visible {
		transform: translate(-50%, -50%) scale(1);
	}
}

/* Mobile Bottom Sheet Style */
@media (max-width: 767px) {
	.tc-variation-modal {
		bottom: 0;
		left: 0;
		width: 100%;
		max-height: 90vh;
		border-radius: var(--tc-radius-xl) var(--tc-radius-xl) 0 0;
		transform: translateY(100%);
	}
	.tc-variation-modal.is-visible {
		transform: translateY(0);
	}
}

.tc-variation-modal__inner {
	display: flex;
	flex-direction: column;
	max-height: 100%;
	overflow: hidden;
}

.tc-variation-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--tc-border);
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	position: relative;
}

.tc-variation-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--tc-text-muted);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
	z-index: 2;
}

.tc-variation-close:hover {
	color: var(--tc-text);
}

.tc-variation-header__media {
	width: 70px;
	height: 70px;
	border-radius: var(--tc-radius-sm);
	background: var(--tc-bg-soft);
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tc-variation-header__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tc-variation-header__info {
	flex: 1;
	padding-right: 2rem;
}

.tc-variation-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--tc-text);
	line-height: 1.3;
}

.tc-variation-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tc-green-dark);
}

.tc-variation-price del {
	color: var(--tc-text-muted);
	font-weight: 400;
	font-size: 0.9rem;
	margin-left: 0.5rem;
}

.tc-variation-body {
	padding: 1.5rem;
	overflow-y: auto;
	flex: 1;
}

.tc-variation-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.tc-variation-option {
	background: var(--tc-bg-soft);
	border: 1px solid var(--tc-border);
	padding: 0.6rem 1.2rem;
	border-radius: var(--tc-radius-md);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--tc-text);
	cursor: pointer;
	transition: all 0.2s ease;
}

.tc-variation-option:hover:not(.tc-variation-option--disabled) {
	border-color: var(--tc-green);
	color: var(--tc-green-dark);
}

.tc-variation-option--selected {
	background: var(--tc-green-dark);
	border-color: var(--tc-green-dark);
	color: var(--tc-surface);
}

.tc-variation-option--selected:hover:not(.tc-variation-option--disabled) {
	color: var(--tc-surface);
}

.tc-variation-option--disabled {
	opacity: 0.5;
	cursor: not-allowed;
	text-decoration: line-through;
	background: var(--tc-bg-soft);
}

.tc-variation-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.tc-quantity-stepper {
	display: inline-flex;
	align-items: center;
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	overflow: hidden;
}

.tc-quantity-btn {
	background: none;
	border: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--tc-text);
	cursor: pointer;
	transition: background 0.2s ease;
}

.tc-quantity-btn:hover:not(:disabled) {
	background: var(--tc-bg-soft);
}

.tc-quantity-btn:disabled {
	color: var(--tc-border);
	cursor: not-allowed;
}

.tc-quantity-input {
	width: 50px;
	height: 40px;
	border: none;
	border-left: 1px solid var(--tc-border);
	border-right: 1px solid var(--tc-border);
	text-align: center;
	font-weight: 600;
	color: var(--tc-text);
	-moz-appearance: textfield;
}

.tc-quantity-input::-webkit-outer-spin-button,
.tc-quantity-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.tc-variation-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--tc-border);
	background: var(--tc-surface);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tc-variation-message {
	font-size: 0.875rem;
	color: var(--tc-danger);
	text-align: center;
}

.tc-variation-message.tc-success {
	color: var(--tc-green-dark);
}

button.tc-modal-add-button {
	width: 100%;
	padding: 1rem !important;
	font-weight: 600 !important;
	font-size: 1.125rem !important;
	border-radius: var(--tc-radius-md) !important;
	background: var(--tc-orange) !important;
	color: var(--tc-surface) !important;
	border: none !important;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease !important;
}

button.tc-modal-add-button:hover:not(:disabled) {
	background: var(--tc-orange-warm);
}

button.tc-modal-add-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Spinner for loading variations */
.tc-variation-loader {
	display: flex;
	justify-content: center;
	padding: 2rem;
	color: var(--tc-green);
}

/* Button Loading State */
.tc-card-add-button.is-loading,
.tc-modal-add-button.is-loading {
	color: transparent !important;
	position: relative !important;
	pointer-events: none !important;
}

.tc-card-add-button.is-loading {
	background: var(--tc-green) !important;
	border-color: var(--tc-green) !important;
}

.tc-card-add-button.is-loading::after,
.tc-modal-add-button.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	border: 2px solid #ffffff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: tc-spin 1s linear infinite;
	display: block !important;
}

/* ==========================================================================
   Static Pages (About, FAQ, Contact)
   ========================================================================== */

/* Shared Hero */
.tc-about-hero,
.tc-faq-hero,
.tc-contact-hero {
	background: var(--tc-surface);
	border-radius: var(--tc-radius-xl);
	padding: 3rem 2rem;
	text-align: center;
	margin-bottom: 2rem;
	box-shadow: var(--tc-shadow-sm);
	border: 1px solid var(--tc-border);
}

.tc-about-hero__content h1,
.tc-faq-hero h1,
.tc-contact-hero h1 {
	color: var(--tc-green-dark);
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.tc-about-hero__headline,
.tc-faq-hero__subheadline,
.tc-contact-hero__headline {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tc-text);
	max-width: 800px;
	margin: 0 auto 0.5rem;
}

.tc-about-hero__intro,
.tc-contact-hero__subheadline {
	font-size: 1.1rem;
	color: var(--tc-text-muted);
	max-width: 700px;
	margin: 0 auto;
}

/* Shared Cards */
.tc-about-card {
	background: var(--tc-surface);
	border-radius: var(--tc-radius-lg);
	padding: 2rem;
	box-shadow: var(--tc-shadow-sm);
	border: 1px solid var(--tc-border);
	margin-bottom: 1.5rem;
}

.tc-about-card h2,
.tc-about-card h3 {
	color: var(--tc-green-dark);
	margin-top: 0;
	margin-bottom: 1rem;
}

.tc-about-promise {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--tc-orange-warm);
	border-left: 4px solid var(--tc-orange);
	padding-left: 1.5rem;
	margin: 1.5rem 0;
}

.tc-about-promise small {
	font-size: 0.9rem;
	color: var(--tc-text-muted);
}

.tc-about-card ul {
	padding-left: 1.2rem;
	margin-bottom: 1rem;
}

.tc-about-card ul li {
	margin-bottom: 0.5rem;
	color: var(--tc-text-muted);
}

.tc-about-card p {
	color: var(--tc-text-muted);
	line-height: 1.6;
	margin-bottom: 1rem;
}

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

/* CTA Sections */
.tc-about-cta__actions,
.tc-faq-cta__actions,
.tc-contact-cta__actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	justify-content: center;
}

.tc-about-cta__card,
.tc-faq-cta__card,
.tc-contact-cta__card {
	text-align: center;
}

.tc-button-outline {
	background: transparent;
	border: 2px solid var(--tc-orange);
	color: var(--tc-orange);
}
.tc-button-outline:hover {
	background: var(--tc-orange);
	color: var(--tc-surface);
}

/* FAQ Page */
.tc-faq-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
	justify-content: center;
}

.tc-faq-chip {
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	color: var(--tc-text-muted);
	font-weight: 500;
	transition: all 0.2s ease;
	text-decoration: none;
}

.tc-faq-chip:hover {
	border-color: var(--tc-green);
	color: var(--tc-green-dark);
	background: var(--tc-bg-soft);
}

.tc-faq-category-block {
	margin-bottom: 2.5rem;
}

.tc-faq-category-title {
	font-size: 1.5rem;
	color: var(--tc-green-dark);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--tc-border);
}

.tc-faq-item {
	background: var(--tc-surface);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-md);
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.tc-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--tc-text);
}

.tc-faq-question:hover {
	background: var(--tc-bg-soft);
}

.tc-faq-icon {
	color: var(--tc-orange);
	transition: transform 0.2s ease;
}

.tc-faq-question[aria-expanded="true"] .tc-faq-icon {
	transform: rotate(180deg);
}

.tc-faq-answer {
	border-top: 1px solid var(--tc-border);
}

.tc-faq-answer-inner {
	padding: 1.25rem;
	color: var(--tc-text-muted);
	line-height: 1.6;
}

.tc-faq-answer[hidden] {
	display: none;
}

/* Contact Page */
.tc-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.tc-contact-support-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
	justify-content: center;
}

.tc-contact-badge {
	padding: 0.5rem 1rem;
	background: var(--tc-bg-soft);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	color: var(--tc-text-muted);
	font-weight: 500;
	font-size: 0.9rem;
}

.tc-contact-form-intro {
	margin-bottom: 1.5rem;
}

.tc-contact-note-admin {
	color: var(--tc-orange);
	margin-bottom: 1.5rem;
}

.tc-static-contact-form {
	max-width: 800px;
	margin: 0 auto;
}

.tc-form-row {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
}

.tc-form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-bottom: 1.25rem;
}

.tc-form-group label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--tc-text);
}

.tc-form-group label .optional {
	font-weight: 400;
	color: var(--tc-text-muted);
	font-size: 0.85rem;
}

.tc-input,
.tc-select,
.tc-textarea {
	padding: 0.75rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius-sm);
	background: var(--tc-surface);
	color: var(--tc-text);
	font-size: 1rem;
	transition: border-color 0.2s ease;
}

.tc-input:focus,
.tc-select:focus,
.tc-textarea:focus {
	border-color: var(--tc-green);
	outline: none;
}

.tc-input:disabled,
.tc-select:disabled,
.tc-textarea:disabled {
	background: var(--tc-bg-soft);
	cursor: not-allowed;
	opacity: 0.7;
}

.tc-contact-submit {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
}

.tc-contact-official-details {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--tc-border);
	text-align: center;
	color: var(--tc-text-muted);
	font-style: italic;
}

.tc-contact-note {
	text-align: center;
	color: var(--tc-text-muted);
	margin: 2rem 0;
	font-size: 0.95rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.tc-about-hero,
	.tc-faq-hero,
	.tc-contact-hero {
		padding: 2rem 1rem;
	}
	
	.tc-about-hero__content h1,
	.tc-faq-hero h1,
	.tc-contact-hero h1 {
		font-size: 2rem;
	}
	
	.tc-form-row {
		flex-direction: column;
		gap: 0;
	}

	.tc-about-cta__actions,
	.tc-faq-cta__actions,
	.tc-contact-cta__actions {
		flex-direction: column;
	}
}
