/* Tân Vinh Mỹ WooCommerce presentation — CMS product experience */
:root {
	--tvm-product-type-caption: 0.75rem;
	--tvm-product-type-supporting: var(--tvm-type-supporting, 0.875rem);
	--tvm-product-type-body: 1rem;
	--tvm-product-type-subheading: 1.25rem;
}

body.single-product,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account {
	background: #fff;
	color: var(--tvm-ink);
	font-family: var(--tvm-body);
	font-size: var(--tvm-product-type-body);
}

.tvm-product-detail,
.tvm-product-detail *,
.tvm-product-archive,
.tvm-product-archive * {
	box-sizing: border-box;
}

.tvm-product-detail {
	background: #fff;
	color: var(--tvm-ink);
	overflow: clip;
	padding-bottom: 18px;
}

.tvm-product-detail [hidden] { display: none !important; }

.tvm-product-detail > .woocommerce-notices-wrapper,
.tvm-product-detail > .woocommerce-error,
.tvm-product-detail > .woocommerce-message,
.tvm-product-detail > .woocommerce-info {
	margin-inline: auto;
	max-width: 1200px;
	width: calc(100% - 48px);
}

.tvm-product-detail .woocommerce-message,
.tvm-product-detail .woocommerce-info,
.tvm-product-detail .woocommerce-error {
	align-items: center;
	background: #faf7f3;
	border: 1px solid #e7ded5;
	border-top-color: var(--tvm-button);
	color: var(--tvm-copy);
	display: flex;
	font-size: var(--tvm-product-type-supporting);
	justify-content: space-between;
	margin-bottom: 18px;
	padding: 13px 16px;
}

.tvm-product-detail .woocommerce-message .button,
.tvm-product-detail .woocommerce-info .button {
	background: var(--tvm-button);
	border-radius: 6px;
	color: #fff;
	font-size: var(--tvm-product-type-supporting);
	order: 2;
	padding: 9px 14px;
}

.tvm-product-breadcrumb {
	min-height: 52px;
	overflow-x: auto;
	scrollbar-width: none;
}

.tvm-product-breadcrumb ol {
	align-items: center;
	display: flex;
	font-size: var(--tvm-product-type-supporting);
	gap: 0;
	list-style: none;
	margin: 0;
	min-height: 52px;
	padding: 0;
	white-space: nowrap;
}

.tvm-product-breadcrumb li {
	align-items: center;
	color: #77706a;
	display: flex;
}

.tvm-product-breadcrumb li:not(:last-child)::after {
	color: #a69d95;
	content: "›";
	font-size: 17px;
	line-height: 1;
	margin: 0 9px;
}

.tvm-product-breadcrumb a {
	color: #4b4540;
	text-decoration: none;
}

.tvm-product-hero {
	align-items: start;
	display: grid;
	gap: clamp(26px, 3vw, 42px);
	grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
}

.tvm-product-gallery {
	display: grid;
	gap: 14px;
	grid-template-columns: 86px minmax(0, 1fr);
	min-width: 0;
}

.tvm-product-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.tvm-product-gallery__thumb {
	background: #f7f3ef;
	border: 1px solid transparent;
	border-radius: 7px;
	cursor: pointer;
	display: block;
	height: 78px;
	overflow: hidden;
	padding: 0;
	transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
	width: 86px;
}

.tvm-product-gallery__thumb img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tvm-product-gallery__thumb.is-active,
.tvm-product-gallery__thumb:hover,
.tvm-product-gallery__thumb:focus-visible {
	border-color: #a86b33;
	box-shadow: 0 0 0 2px rgba(168, 107, 51, 0.1);
	outline: none;
}

.tvm-product-gallery__stage {
	aspect-ratio: 1.08;
	background: #f4f0eb;
	border-radius: 9px;
	min-height: 390px;
	overflow: hidden;
	position: relative;
}

.tvm-product-gallery__stage > .tvm-product-gallery__main {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: opacity 160ms ease-out;
	width: 100%;
}

.tvm-product-gallery__sale,
.tvm-product-summary__discount {
	align-items: center;
	background: #f1e4d7;
	border-radius: 6px;
	color: #8a4f1c;
	display: inline-flex;
	font-size: var(--tvm-product-type-caption);
	font-weight: 700;
	height: 28px;
	justify-content: center;
	padding: 0 10px;
}

.tvm-product-gallery__sale {
	left: 15px;
	position: absolute;
	top: 15px;
	z-index: 2;
}

.tvm-product-gallery__arrow,
.tvm-product-gallery__expand {
	align-items: center;
	background: rgba(255, 255, 255, 0.95);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(36, 27, 20, 0.12);
	color: #6d4825;
	cursor: pointer;
	display: flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	position: absolute;
	transition: background-color 160ms ease-out, color 160ms ease-out;
	width: 38px;
}

.tvm-product-gallery__arrow {
	top: 50%;
	transform: translateY(-50%);
}

.tvm-product-gallery__arrow--previous { left: 14px; }
.tvm-product-gallery__arrow--next { right: 14px; }
.tvm-product-gallery__expand { bottom: 14px; right: 14px; }

.tvm-product-gallery__arrow:hover,
.tvm-product-gallery__arrow:focus-visible,
.tvm-product-gallery__expand:hover,
.tvm-product-gallery__expand:focus-visible {
	background: var(--tvm-button);
	color: #fff;
	outline: none;
}

.tvm-product-gallery__arrow:disabled,
.tvm-quantity-stepper button:disabled,
.tvm-related-products__arrow:disabled {
	cursor: default;
	opacity: 0.32;
}

.tvm-product-lightbox button:focus-visible,
.tvm-related-products__arrow:focus-visible,
.tvm-product-summary__secondary-actions button:focus-visible {
	outline: 2px solid var(--tvm-bronze, #9b5b22);
	outline-offset: 3px;
}

.tvm-product-summary {
	min-width: 0;
	padding-top: 0;
}

.tvm-product-summary h1 {
	color: #1e1915;
	font-family: var(--tvm-display);
	font-size: clamp(1.8125rem, 2.2vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.13;
	margin: -3px 0 9px;
	text-wrap: balance;
}

.tvm-product-summary__sku {
	color: #5e5751;
	font-size: var(--tvm-product-type-supporting);
	margin: 0 0 7px;
}

.tvm-product-summary__sku strong { color: #29231f; }

.tvm-product-summary__rating {
	align-items: center;
	display: flex;
	font-size: var(--tvm-product-type-supporting);
	gap: 9px;
	margin-bottom: 8px;
}

.tvm-product-summary__rating .star-rating {
	color: #a45f25;
	font-size: var(--tvm-product-type-supporting);
	letter-spacing: 1px;
	margin: 0;
}

.tvm-product-summary__rating a {
	color: #5d554e;
	text-decoration: none;
}

.tvm-product-summary__price-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 9px 13px;
	margin-bottom: 9px;
}

.tvm-product-summary__price {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	font-family: var(--tvm-display);
	gap: 9px;
}

.tvm-product-summary__price .price,
.tvm-product-summary__price > .woocommerce-Price-amount,
.tvm-product-summary__price ins {
	color: #201a16;
	font-size: clamp(1.5rem, 1.8vw, 1.75rem);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.tvm-product-summary__price del {
	color: var(--tvm-muted);
	font-family: var(--tvm-body);
	font-size: var(--tvm-product-type-supporting);
	font-weight: 500;
	order: 2;
}

.tvm-product-summary__price ins { order: 1; }

.tvm-product-summary__excerpt {
	color: #57504a;
	font-size: var(--tvm-product-type-body);
	line-height: 1.65;
}

.tvm-product-summary__excerpt p { margin: 0; }

.tvm-product-benefits {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 15px 0 0;
	padding: 0;
}

.tvm-product-benefits li {
	align-items: flex-start;
	display: flex;
	gap: 9px;
	min-width: 0;
}

.tvm-product-benefits i {
	color: #a45f25;
	font-size: 23px;
	line-height: 1;
	margin-top: 1px;
	width: 28px;
}

.tvm-product-benefits span { min-width: 0; }
.tvm-product-benefits strong,
.tvm-product-benefits small { display: block; }
.tvm-product-benefits strong { color: #332b25; font-size: var(--tvm-product-type-supporting); line-height: 1.35; }
.tvm-product-benefits small { color: #777069; font-size: var(--tvm-product-type-caption); line-height: 1.4; margin-top: 2px; }

.tvm-product-summary__rule {
	background: #9b5b22;
	height: 2px;
	margin: 18px 0 14px;
	width: 32px;
}

.tvm-product-summary__purchase .stock.in-stock {
	color: #3b7350;
	display: none;
	font-size: var(--tvm-product-type-supporting);
	margin: 5px 0 10px;
}

.tvm-variations { display: grid; gap: 5px; }

.tvm-variation-row {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 74px minmax(0, 1fr);
}

.tvm-variation-row__label,
.tvm-quantity-row__label {
	color: #2f2924;
	font-size: var(--tvm-product-type-supporting);
	font-weight: 700;
	line-height: 30px;
}

.tvm-variation-row__options {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.tvm-option-pill {
	background: #fff;
	border: 1px solid #ded6cf;
	border-radius: 6px;
	color: #4b443e;
	cursor: pointer;
	font-family: var(--tvm-body);
	font-size: var(--tvm-product-type-supporting);
	font-weight: 500;
	line-height: 1.25;
	min-height: 30px;
	padding: 4px 6px;
	transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out, opacity 150ms ease-out;
	white-space: nowrap;
}

.tvm-option-pill:hover,
.tvm-option-pill:focus-visible {
	border-color: #a8672f;
	outline: none;
}

.tvm-option-pill.is-selected {
	background: #fffaf5;
	border-color: #9c5c24;
	color: #8a4e1a;
	font-weight: 700;
}

.tvm-option-pill:disabled,
.tvm-option-pill.is-disabled {
	background: #f5f3f1;
	color: #aaa39d;
	cursor: not-allowed;
	opacity: 0.55;
	text-decoration: line-through;
}

.tvm-native-variation-select {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.tvm-variation-form .reset_variations {
	color: #8b5727;
	display: none !important;
	font-size: var(--tvm-product-type-caption);
	margin: 8px 0 0 84px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tvm-product-detail .single_variation {
	font-size: var(--tvm-product-type-supporting);
	min-height: 0;
}

.tvm-product-detail .single_variation .woocommerce-variation-price { display: none; }
.tvm-product-detail .single_variation .woocommerce-variation-description p { color: #706860; margin: 8px 0; }

.tvm-quantity-row {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 74px minmax(0, 1fr);
	margin-top: 10px;
}

.tvm-quantity-row__label { line-height: 34px; }

.tvm-quantity-stepper {
	align-items: center;
	border: 1px solid #ded6cf;
	border-radius: 6px;
	display: inline-grid;
	grid-template-columns: 32px 40px 32px;
	height: 34px;
	overflow: hidden;
	width: max-content;
}

.tvm-quantity-stepper > button {
	align-items: center;
	background: #fff;
	border: 0;
	color: #6f655c;
	cursor: pointer;
	display: flex;
	font-size: 18px;
	height: 100%;
	justify-content: center;
	padding: 0;
}

.tvm-quantity-stepper > button:hover,
.tvm-quantity-stepper > button:focus-visible { background: #faf6f2; color: #7f4a1d; outline: none; }
.tvm-quantity-stepper .quantity { height: 100%; margin: 0 !important; width: 40px; }
.tvm-quantity-stepper .qty {
	-moz-appearance: textfield;
	appearance: textfield;
	background: #fff;
	border: 0;
	border-left: 1px solid #eee7e0;
	border-radius: 0;
	border-right: 1px solid #eee7e0;
	box-shadow: none;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 40px;
}
.tvm-quantity-stepper .qty::-webkit-inner-spin-button,
.tvm-quantity-stepper .qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.tvm-purchase-actions__buttons {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin-top: 14px;
}

.tvm-purchase-actions__buttons .single_add_to_cart_button,
.tvm-consult-product {
	align-items: center;
	border: 1px solid var(--tvm-button) !important;
	border-radius: 6px !important;
	display: inline-flex !important;
	font-family: var(--tvm-body) !important;
	font-size: var(--tvm-product-type-supporting) !important;
	font-weight: 700 !important;
	gap: 8px;
	height: 40px;
	justify-content: center;
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 13px !important;
	text-decoration: none !important;
	transition: background-color 160ms ease-out, color 160ms ease-out !important;
	width: 100%;
}

.tvm-purchase-actions__buttons .single_add_to_cart_button {
	background: var(--tvm-button) !important;
	color: #fff !important;
}

.tvm-purchase-actions__buttons .single_add_to_cart_button:hover,
.tvm-purchase-actions__buttons .single_add_to_cart_button:focus-visible { background: var(--tvm-button-hover) !important; }
.tvm-purchase-actions__buttons .single_add_to_cart_button.disabled { cursor: not-allowed; opacity: 0.5; }
.tvm-consult-product { background: #fff; color: #8b511e; }
.tvm-consult-product:hover,
.tvm-consult-product:focus-visible { background: #fff8f1; color: #75491d; }

.tvm-product-summary__secondary-actions {
	display: flex;
	gap: 34px;
	margin-top: 8px;
}

.tvm-product-summary__secondary-actions button {
	align-items: center;
	background: transparent;
	border: 0;
	color: #61584f;
	cursor: pointer;
	display: inline-flex;
	font-size: var(--tvm-product-type-supporting);
	gap: 8px;
	padding: 5px 0;
}

.tvm-product-summary__secondary-actions button i { color: #a46025; font-size: 15px; }
.tvm-product-summary__secondary-actions button[aria-pressed="true"] { color: #8a4e1a; font-weight: 700; }
.tvm-product-summary__status { color: #7d4b21; font-size: var(--tvm-product-type-supporting); margin: 4px 0 0; min-height: 0; }
.tvm-product-summary__status:empty { display: none; }

.tvm-product-assurance {
	background: #fcfaf8;
	border: 1px solid #e8e1da;
	border-radius: 9px;
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 24px;
	min-height: 68px;
	padding: 12px 22px;
}

.tvm-product-assurance > div {
	align-items: center;
	display: flex;
	gap: 12px;
	min-width: 0;
	padding: 5px 12px;
}

.tvm-product-assurance i { color: #a46127; font-size: 22px; width: 28px; }
.tvm-product-assurance strong,
.tvm-product-assurance small { display: block; }
.tvm-product-assurance strong { color: #332c26; font-size: var(--tvm-product-type-supporting); line-height: 1.35; }
.tvm-product-assurance small { color: #706861; font-size: var(--tvm-product-type-caption); line-height: 1.4; margin-top: 3px; }

.tvm-product-tabs { margin-top: 30px; }

.tvm-product-tabs__list {
	border-bottom: 1px solid #e3ddd7;
	display: flex;
	gap: clamp(28px, 5vw, 64px);
	overflow-x: auto;
	scrollbar-width: none;
}

.tvm-product-tabs__list button {
	background: transparent;
	border: 0;
	color: #2e2823;
	cursor: pointer;
	font-family: var(--tvm-body);
	font-size: var(--tvm-product-type-supporting);
	font-weight: 700;
	height: 44px;
	padding: 0;
	position: relative;
	text-transform: uppercase;
	white-space: nowrap;
}

.tvm-product-tabs__list button::after {
	background: #9e5d25;
	bottom: -1px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease-out;
	width: 100%;
}

.tvm-product-tabs__list button.is-active::after { transform: scaleX(1); }
.tvm-product-tabs__list button:focus,
.tvm-product-tabs__list button:focus-visible {
	background: transparent !important;
	color: #8a4e1a;
	outline: none;
}

.tvm-product-tabs__list button:focus-visible {
	box-shadow: 0 0 0 2px rgba(158, 93, 37, 0.24);
}

.tvm-product-tabs__panel {
	color: #4f4842;
	font-size: var(--tvm-product-type-body);
	line-height: 1.65;
	padding: 22px 0 12px;
}

.tvm-product-tabs__panel[hidden] { display: none; }
.tvm-product-tabs__panel h2 {
	color: #2c251f;
	font-family: var(--tvm-display);
	font-size: var(--tvm-product-type-subheading);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 8px;
	text-wrap: balance;
}

.tvm-product-description-grid {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.8fr);
}

.tvm-product-description-copy { max-width: 65ch; }
.tvm-product-description-copy p { margin: 0 0 10px; }
.tvm-product-description-copy ul { list-style: none; margin: 12px 0 0; padding: 0; }
.tvm-product-description-copy li { margin: 6px 0; padding-left: 22px; position: relative; }
.tvm-product-description-copy li::before { color: #a06127; content: "✓"; font-weight: 800; left: 2px; position: absolute; top: 0; }

.tvm-product-spec-card {
	background: #faf7f3;
	border: 1px solid #eee7e0;
	border-radius: 8px;
	margin: 0;
	padding: 17px 20px;
}

.tvm-product-spec-card > div {
	align-items: start;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(112px, 0.65fr) minmax(0, 1fr);
	padding: 7px 0;
}

.tvm-product-spec-card dt { color: #302923; font-size: var(--tvm-product-type-supporting); font-weight: 700; }
.tvm-product-spec-card dt i { color: #a15d24; font-size: 16px; margin-right: 10px; width: 18px; }
.tvm-product-spec-card dd { color: #625b54; font-size: var(--tvm-product-type-supporting); margin: 0; }

.tvm-product-spec-table { border: 1px solid #ebe4dd; border-radius: 8px; margin: 0; overflow: hidden; }
.tvm-product-spec-table > div { display: grid; grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr); }
.tvm-product-spec-table > div + div { border-top: 1px solid #ebe4dd; }
.tvm-product-spec-table dt,
.tvm-product-spec-table dd { margin: 0; padding: 11px 15px; }
.tvm-product-spec-table dt { background: #faf7f3; color: #332c26; font-weight: 700; }

.tvm-related-products { margin: 35px 0 24px; }
.tvm-related-products > header { align-items: center; display: flex; gap: 14px; justify-content: center; margin-bottom: 18px; }
.tvm-related-products > header span { background: #e5ded7; height: 1px; width: 26px; }
.tvm-related-products h2 {
	color: #28211c;
	font-family: var(--tvm-display);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	text-wrap: balance;
	text-transform: uppercase;
}

.tvm-related-products__carousel { margin-inline: 24px; position: relative; }
.tvm-related-products__viewport { overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; }
.tvm-related-products__viewport::-webkit-scrollbar { display: none; }
.tvm-related-products__viewport > ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.tvm-related-products__viewport > ul > li { flex: 0 0 calc((100% - 72px) / 5); min-width: 0; scroll-snap-align: start; }
.tvm-related-products__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #e5ddd5;
	border-radius: 50%;
	color: #8b541f;
	cursor: pointer;
	display: flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 47%;
	transform: translateY(-50%);
	width: 38px;
	z-index: 3;
}
.tvm-related-products__arrow--previous { left: -48px; }
.tvm-related-products__arrow--next { right: -48px; }
.tvm-related-products__arrow:disabled { opacity: 0.3; }

.tvm-product-consultation {
	align-items: center;
	background-color: #27231f;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	min-height: 78px;
	overflow: hidden;
	padding: 16px 46px 16px 35px;
	position: relative;
}

.tvm-product-consultation::before { background: rgba(29, 26, 23, 0.85); content: ""; inset: 0; position: absolute; }
.tvm-product-consultation > * { position: relative; z-index: 1; }
.tvm-product-consultation h2 { font-family: var(--tvm-display); font-size: 1.5rem; font-weight: 700; line-height: 1.2; margin: 0 0 5px; text-wrap: balance; }
.tvm-product-consultation p { color: #e5ddd4; font-size: var(--tvm-product-type-supporting); line-height: 1.55; margin: 0; }
.tvm-product-consultation > a {
	align-items: center;
	background: #8b571f;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: var(--tvm-product-type-supporting);
	font-weight: 600;
	gap: 16px;
	height: 42px;
	justify-content: center;
	min-width: 166px;
	padding: 0 18px;
	text-decoration: none;
}

.tvm-product-lightbox {
	background: #171513;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
	color: #fff;
	height: min(86vh, 860px);
	margin: auto;
	max-height: 900px;
	max-width: 1300px;
	padding: 28px 70px;
	width: min(92vw, 1300px);
}
.tvm-product-lightbox::backdrop { background: rgba(18, 15, 12, 0.84); }
.tvm-product-lightbox[open] { align-items: center; display: flex; justify-content: center; }
.tvm-product-lightbox img { display: block; max-height: 100%; max-width: 100%; object-fit: contain; }
.tvm-product-lightbox__close,
.tvm-product-lightbox__arrow { align-items: center; background: #fff; border: 0; border-radius: 50%; color: #70471f; cursor: pointer; display: flex; height: 42px; justify-content: center; padding: 0; position: absolute; width: 42px; }
.tvm-product-lightbox__close { right: 16px; top: 16px; }
.tvm-product-lightbox__arrow { top: 50%; transform: translateY(-50%); }
.tvm-product-lightbox__arrow--previous { left: 14px; }
.tvm-product-lightbox__arrow--next { right: 14px; }

/* Product archive */
.tvm-product-archive { background: #fff; color: var(--tvm-ink); }
.tvm-product-archive__hero { align-items: end; background-color: #29231e; background-position: center 48%; background-size: cover; display: grid; min-height: 305px; position: relative; }
.tvm-product-archive__hero-shade { background: rgba(28, 23, 19, 0.68); inset: 0; position: absolute; }
.tvm-product-archive__hero-inner { color: #fff; padding-bottom: 46px; position: relative; }
.tvm-product-archive__breadcrumb { align-items: center; display: flex; font-size: var(--tvm-product-type-supporting); gap: 9px; margin-bottom: 25px; }
.tvm-product-archive__breadcrumb a { color: #fff; text-decoration: none; }
.tvm-product-archive__breadcrumb i { font-size: 8px; opacity: 0.7; }
.tvm-product-archive__eyebrow { color: #d8b181 !important; font-size: var(--tvm-product-type-caption) !important; font-weight: 700; letter-spacing: 0.12em; margin: 0 0 8px !important; text-transform: uppercase; }
.tvm-product-archive__hero h1 { font-family: var(--tvm-display); font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 12px; text-wrap: balance; }
.tvm-product-archive__hero p { color: #eee8e2; font-size: var(--tvm-product-type-body); line-height: 1.6; margin: 0; max-width: 65ch; }
.tvm-product-archive__body { padding-bottom: 28px; padding-top: 30px; }
.tvm-product-categories { display: flex; gap: 9px; margin-bottom: 24px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.tvm-product-categories a { align-items: center; background: #fff; border: 1px solid #e4ddd6; border-radius: 999px; color: #514942; display: inline-flex; flex: 0 0 auto; font-size: var(--tvm-product-type-supporting); gap: 7px; min-height: 38px; padding: 0 15px; text-decoration: none; }
.tvm-product-categories a span { color: var(--tvm-muted); font-size: var(--tvm-product-type-caption); }
.tvm-product-categories a.is-active,
.tvm-product-categories a:hover,
.tvm-product-categories a:focus-visible { background: #75491d; border-color: #75491d; color: #fff; outline: none; }
.tvm-product-categories a.is-active span,
.tvm-product-categories a:hover span { color: #fff; }
.tvm-product-archive__toolbar { align-items: center; border-bottom: 1px solid #ece6df; display: flex; justify-content: space-between; margin-bottom: 24px; padding-bottom: 13px; }
.tvm-product-archive__toolbar .woocommerce-result-count { color: #706860; font-size: var(--tvm-product-type-supporting); margin: 0; }
.tvm-product-archive__toolbar .woocommerce-ordering { margin: 0; }
.tvm-product-archive__toolbar select { background: #fff; border: 1px solid #ded6cf; border-radius: 6px; color: #4f4740; font-size: var(--tvm-product-type-supporting); min-height: 38px; padding: 0 34px 0 12px; }
.tvm-product-archive__grid { display: grid; gap: 24px 18px; grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.tvm-product-archive__grid > li { min-width: 0; }
.tvm-product-archive__pagination { margin-top: 34px; }
.tvm-product-archive__pagination ul.page-numbers { border: 0; display: flex; gap: 8px; justify-content: center; margin: 0; }
.tvm-product-archive__pagination ul.page-numbers li { border: 0; }
.tvm-product-archive__pagination .page-numbers a,
.tvm-product-archive__pagination .page-numbers span { align-items: center; border: 1px solid #e2dad2; border-radius: 50%; color: #6e4a28; display: flex; height: 38px; justify-content: center; padding: 0; width: 38px; }
.tvm-product-archive__pagination .page-numbers .current { background: #75491d; border-color: #75491d; color: #fff; }
.tvm-product-archive__empty { background: #faf7f3; border: 1px solid #ebe4dd; border-radius: 10px; padding: 60px 24px; text-align: center; }
.tvm-product-archive__empty i { color: #a3652c; font-size: 36px; }

/* Woo cart, checkout and account use the same visual system. */
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-account .site-main { margin-inline: auto; max-width: 1200px; min-height: 55vh; padding: 48px 24px; }
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title { font-family: var(--tvm-display); }
body.woocommerce-cart .wc-block-components-button,
body.woocommerce-checkout .wc-block-components-button,
body.woocommerce-account .woocommerce-button { background: #75491d !important; border-radius: 6px !important; color: #fff !important; }

@media (max-width: 1080px) {
	.tvm-product-hero { gap: 28px; grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr); }
	.tvm-product-gallery { gap: 12px; grid-template-columns: 78px minmax(0, 1fr); }
	.tvm-product-gallery__thumb { height: 70px; width: 78px; }
	.tvm-product-gallery__stage { min-height: 370px; }
	.tvm-product-benefits { gap: 8px; }
	.tvm-product-benefits i { font-size: 20px; width: 24px; }
	.tvm-product-assurance { padding-inline: 10px; }
	.tvm-product-assurance > div { padding-inline: 8px; }
	.tvm-product-archive__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	.tvm-product-hero { grid-template-columns: 1fr; }
	.tvm-product-gallery { grid-template-columns: 1fr; }
	.tvm-product-gallery__stage { grid-row: 1; min-height: 0; }
	.tvm-product-gallery__thumbs { flex-direction: row; grid-row: 2; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
	.tvm-product-gallery__thumb { flex: 0 0 82px; height: 72px; width: 82px; }
	.tvm-product-summary { padding-top: 4px; }
	.tvm-product-assurance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tvm-product-description-grid { gap: 24px; grid-template-columns: 1fr; }
	.tvm-related-products__viewport > ul > li { flex-basis: calc((100% - 36px) / 3); }
	.tvm-product-archive__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	.tvm-product-detail .tvm-container,
	.tvm-product-archive .tvm-container { width: calc(100% - 32px); }
	.tvm-product-breadcrumb { min-height: 46px; }
	.tvm-product-breadcrumb ol { min-height: 46px; }
	.tvm-product-gallery__stage { aspect-ratio: 1.03; border-radius: 8px; }
	.tvm-product-gallery__arrow { height: 42px; width: 42px; }
	.tvm-product-summary h1 { font-size: 1.8125rem; margin-top: 0; }
	.tvm-product-benefits { grid-template-columns: 1fr; }
	.tvm-product-benefits li { align-items: center; }
	.tvm-product-summary__rule { margin-block: 20px 16px; }
	.tvm-variation-row { gap: 7px; grid-template-columns: 1fr; }
	.tvm-variation-row__label,
	.tvm-quantity-row__label { line-height: 1.4; }
	.tvm-option-pill { min-height: 44px; }
	.tvm-variation-form .reset_variations { margin-left: 0; }
	.tvm-quantity-row { align-items: start; grid-template-columns: 1fr; }
	.tvm-quantity-stepper { height: 44px; grid-template-columns: 42px 48px 42px; }
	.tvm-quantity-stepper .quantity,
	.tvm-quantity-stepper .qty { width: 48px; }
	.tvm-purchase-actions__buttons { grid-template-columns: 1fr; }
	.tvm-purchase-actions__buttons .single_add_to_cart_button,
	.tvm-consult-product { height: 48px; font-size: var(--tvm-product-type-supporting) !important; }
	.tvm-product-assurance { margin-top: 30px; padding: 10px 7px; }
	.tvm-product-assurance > div { min-height: 64px; }
	.tvm-product-tabs { margin-top: 24px; }
	.tvm-product-tabs__list { gap: 30px; margin-right: -16px; padding-right: 16px; }
	.tvm-product-tabs__list button { height: 48px; }
	.tvm-product-spec-card > div { grid-template-columns: 1fr; gap: 3px; }
	.tvm-related-products h2 { font-size: var(--tvm-product-type-subheading); }
	.tvm-related-products__carousel { margin: 0; }
	.tvm-related-products__viewport { margin-right: -16px; padding-right: 16px; scroll-snap-type: x mandatory; }
	.tvm-related-products__viewport > ul { gap: 12px; }
	.tvm-related-products__viewport > ul > li { flex-basis: min(44vw, 185px); }
	.tvm-related-products__arrow { display: none; }
	.tvm-product-consultation { align-items: flex-start; flex-direction: column; gap: 15px; padding: 22px; }
	.tvm-product-consultation > a { min-height: 44px; width: 100%; }
	.tvm-product-lightbox { height: 88vh; padding: 60px 12px; width: 96vw; }
	.tvm-product-lightbox__arrow { bottom: 12px; top: auto; transform: none; }
	.tvm-product-lightbox__arrow--previous { left: calc(50% - 52px); }
	.tvm-product-lightbox__arrow--next { right: calc(50% - 52px); }
	.tvm-product-archive__hero { min-height: 300px; }
	.tvm-product-archive__hero-inner { padding-bottom: 35px; }
	.tvm-product-archive__hero h1 { font-size: 2.25rem; }
	.tvm-product-archive__toolbar { align-items: flex-start; flex-direction: column; gap: 12px; }
	.tvm-product-archive__toolbar .woocommerce-ordering,
	.tvm-product-archive__toolbar select { width: 100%; }
	.tvm-product-archive__grid { gap: 18px 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
	.tvm-product-gallery__thumb { flex-basis: 72px; height: 64px; width: 72px; }
	.tvm-product-assurance { grid-template-columns: 1fr; }
	.tvm-product-assurance > div { min-height: 56px; }
	.tvm-product-summary__secondary-actions { justify-content: space-between; }
	.tvm-product-spec-table > div { grid-template-columns: 1fr; }
	.tvm-product-spec-table dd { padding-top: 3px; }
}

@media (prefers-reduced-motion: reduce) {
	.tvm-product-gallery__main,
	.tvm-related-products__viewport,
	.tvm-option-pill { scroll-behavior: auto; transition: none; }
}
