/* Tea Store — Tea House design recreation
   Accent: #7fbf00 | Orange: #fb9f38 | Text: #383838 */

:root {
	--th-accent: #7fbf00;
	--th-accent-dark: #6fa700;
	--th-orange: #fb9f38;
	--th-text: #383838;
	--th-text-muted: #5e5e5e;
	--th-text-light: #949494;
	--th-dark: #1e1d22;
	--th-dark-2: #2b2b2b;
	--th-border: #eaeaea;
	--th-white: #ffffff;
	--th-container: 1170px;
	--th-font: "Open Sans", sans-serif;
	--th-font-head: "Montserrat", "Open Sans", sans-serif;
}

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

html {
	font-size: 15px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--th-font);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.867;
	letter-spacing: 0.5px;
	color: var(--th-text-muted);
	background: var(--th-white);
	-webkit-font-smoothing: antialiased;
}

body.th-body {
	width: 100%;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--th-accent);
	text-decoration: none;
	transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

a:hover {
	color: var(--th-accent-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--th-font);
	font-weight: 700;
	color: var(--th-text);
	line-height: 1.2;
	margin: 0 0 0.5em;
	letter-spacing: 0.5px;
}

h1 { font-size: 3.2em; }
h2 { font-size: 2.8em; }
h3 { font-size: 2em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.15em; }
h6 { font-size: 0.9em; font-weight: 600; letter-spacing: 1px; text-transform: lowercase; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.th-container {
	width: 100%;
	max-width: var(--th-container);
	margin: 0 auto;
	padding: 0 15px;
}

.th-page-wrap {
	width: 100%;
	max-width: none;
	background: var(--th-white);
	box-shadow: none;
	min-height: 100vh;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ---------- Buttons ---------- */
.th-btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--th-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--th-white) !important;
	background: var(--th-accent);
	border: none;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.th-btn:hover {
	background: var(--th-accent-dark);
}

.th-btn--outline {
	background: transparent;
	color: var(--th-white) !important;
	border: 2px solid var(--th-white);
}

.th-btn--outline:hover {
	background: var(--th-accent);
	border-color: var(--th-accent);
}

.th-btn--dark {
	background: var(--th-dark);
}

.th-link-more {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--th-accent);
	border-bottom: 1px solid transparent;
}

.th-link-more:hover {
	border-bottom-color: var(--th-accent);
}

/* ---------- Section titles ---------- */
.th-section {
	padding: 90px 0;
	position: relative;
}

.th-section--sm {
	padding: 70px 0;
}

.th-section--dark {
	background: var(--th-dark);
	color: #b8b8b8;
}

.th-section--dark h2,
.th-section--dark h3,
.th-section--dark .th-title-accent {
	color: var(--th-white);
}

.th-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 400;
	font-style: italic;
	color: var(--th-text-light);
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.th-section--dark .th-eyebrow {
	color: #949494;
}

.th-title {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.th-title em,
.th-title i,
.th-title-accent {
	font-style: italic;
	font-weight: 300;
	color: var(--th-accent);
	text-transform: none;
}

.th-divider {
	display: block;
	width: 100%;
	max-width: 200px;
	height: 12px;
	margin: 18px auto 28px;
	background: url("../images/divider.png") center / contain no-repeat;
}

.th-divider--left {
	margin-left: 0;
}

.th-lead {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--th-text-muted);
	max-width: 720px;
	margin: 0 auto 40px;
}

.th-text-center { text-align: center; }
.th-text-left { text-align: left; }

/* ---------- Top bar ---------- */
.th-topbar {
	background: var(--th-dark);
	color: #b8b8b8;
	font-size: 13px;
	padding: 10px 0;
}

.th-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.th-topbar__menu {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.th-topbar__menu a {
	color: #b8b8b8;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.th-topbar__menu a:hover,
.th-topbar__menu .current-menu-item > a {
	color: var(--th-accent);
}

.th-topbar__right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.th-topbar__phone {
	color: var(--th-white);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.th-topbar__phone:hover {
	color: var(--th-accent);
}

.th-topbar__cart {
	color: #b8b8b8;
	display: flex;
	align-items: center;
	gap: 6px;
}

.th-topbar__cart:hover {
	color: var(--th-accent);
}

.th-topbar__cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 50%;
	background: var(--th-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

/* ---------- Header ---------- */
.th-header {
	background: var(--th-white);
	border-bottom: 1px solid #dedede;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: box-shadow 0.3s ease;
}

.th-header.is-scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.th-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	padding: 16px 0;
	gap: 40px;
	position: relative;
}

.th-header__brand {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 36px;
	min-width: 0;
}

.th-logo {
	flex-shrink: 0;
}

.th-logo img {
	display: block;
	max-height: 42px;
	max-width: 175px;
	width: auto;
}

.th-logo__text {
	font-family: var(--th-font-head);
	font-size: 28px;
	font-weight: 700;
	color: var(--th-text);
	line-height: 1.1;
}

.th-logo__text span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: var(--th-text-light);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 4px;
}

.th-nav,
.th-nav ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 29px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation {
	min-width: 0;
}

.th-nav a {
	color: var(--th-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.25px;
	text-transform: none;
	position: relative;
	padding: 2px 0;
}

.th-nav a::after {
	display: none;
}

.th-nav a:hover,
.th-nav .current-menu-item > a,
.th-nav .current_page_item > a {
	color: #d4a64a;
}

.th-nav__mobile-actions {
	display: none;
}

.th-header__actions {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.th-header__phone,
.th-header__cart {
	display: flex;
	align-items: center;
	min-height: 45px;
	color: var(--th-text);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.25px;
	white-space: nowrap;
}

.th-header__phone {
	padding-right: 32px;
}

.th-header__cart {
	gap: 4px;
	padding-left: 31px;
	border-left: 1px solid var(--th-border);
	background: none;
	border-top: none;
	border-right: none;
	border-bottom: none;
	cursor: pointer;
	font: inherit;
}

.th-header__phone:hover,
.th-header__cart:hover {
	color: var(--th-accent);
}

.th-header__action-icon {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	border: none;
	border-radius: 50%;
	background: var(--th-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.th-header__cart-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--th-dark);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

.th-header__cart-badge.is-empty,
.th-header__cart-badge[hidden] {
	display: none;
}

.th-header__action-icon svg {
	display: block;
	width: 16px;
	height: 16px;
	padding: 0;
	fill: currentColor;
	stroke: none;
}

.th-header__action-icon--cart {
	background: var(--th-orange);
	color: #fff;
}

.th-lang-switcher {
	position: relative;
	margin-right: 16px;
	padding-right: 16px;
	border-right: 1px solid var(--th-border);
}

.th-lang-switcher__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 4px 2px;
	border: none;
	background: transparent;
	color: var(--th-text);
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.6px;
	cursor: pointer;
}

.th-lang-switcher__toggle:hover,
.th-lang-switcher.is-open .th-lang-switcher__toggle {
	color: var(--th-accent);
}

.th-lang-switcher__flag {
	display: block;
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.th-lang-switcher__caret {
	width: 10px;
	height: 7px;
	display: block;
	transition: transform 0.2s ease;
}

.th-lang-switcher.is-open .th-lang-switcher__caret {
	transform: rotate(180deg);
}

.th-lang-switcher__list {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 120;
	min-width: 180px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--th-border);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.th-lang-switcher__list[hidden] {
	display: none;
}

.th-lang-switcher__option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 10px;
	color: var(--th-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.th-lang-switcher__option:hover,
.th-lang-switcher__option.is-active {
	background: #f7f7f7;
	color: var(--th-accent);
}

.th-lang-switcher__name {
	flex: 1 1 auto;
	min-width: 0;
}

.th-lang-switcher__option .th-lang-switcher__code {
	color: var(--th-text-light);
	font-size: 11px;
	letter-spacing: 0.5px;
}

.th-lang-switcher__option.is-active .th-lang-switcher__code,
.th-lang-switcher__option:hover .th-lang-switcher__code {
	color: var(--th-accent);
}

/* Legacy plain links (unused) */
.th-header__lang {
	display: none;
}

.th-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	width: 40px;
	height: 40px;
	position: relative;
}

.th-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--th-text);
	margin: 5px auto;
	transition: 0.3s;
}

/* ---------- Hero slider ---------- */
.th-hero {
	position: relative;
	overflow: hidden;
	height: 560px;
	max-height: 80vh;
	background: #1a1a1a;
	cursor: grab;
	user-select: none;
	touch-action: pan-y;
}

.th-hero.is-dragging {
	cursor: grabbing;
}

.th-hero__slides {
	position: relative;
	height: 100%;
}

.th-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: stretch;
	box-sizing: border-box;
	padding: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.9s ease, visibility 0.9s ease;
}

.th-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.th-hero__band {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	z-index: 1;
	background: rgba(127, 191, 0, 0.78);
	pointer-events: none;
}

.th-hero__panel {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--th-container);
	height: 100%;
	margin: 0 auto;
	padding: 0 15px;
	color: #fff;
	background: none;
	overflow: hidden;
}

.th-hero__content {
	box-sizing: border-box;
	width: 50%;
	max-width: 50%;
	min-width: 0;
	padding: 0;
	overflow-wrap: break-word;
	word-break: break-word;
}

.th-hero__eyebrow {
	margin: 0 0 10px;
	font-size: clamp(0.92rem, 1.6vw, 1.05rem);
	font-weight: 400;
	letter-spacing: 0.4px;
	text-transform: lowercase;
	color: rgba(255, 255, 255, 0.92);
}

.th-hero__title {
	margin: 0 0 14px;
	font-size: clamp(1.35rem, 2.4vw, 2.2rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	overflow-wrap: break-word;
}

.th-hero__text {
	margin: 0 0 22px;
	font-size: clamp(0.86rem, 1.35vw, 0.95rem);
	line-height: 1.6;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 100%;
}

.th-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	background: #fff;
	color: var(--th-text) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	border: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.th-hero__btn:hover {
	background: var(--th-dark);
	color: #fff !important;
	transform: translateY(-1px);
}

.th-hero__nav {
	position: absolute;
	left: max(15px, calc((100vw - var(--th-container)) / 2 + 15px));
	bottom: 22px;
	z-index: 5;
	display: flex;
	gap: 10px;
	max-width: min(50%, calc(100% - 32px));
}

.th-hero__dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.th-hero__dot.is-active,
.th-hero__dot:hover {
	background: #fff;
	border-color: #fff;
}

.th-hero__arrows {
	display: none;
}

/* ---------- Contact intro ---------- */
.th-section.th-contact-intro {
	padding-top: 40px;
	padding-bottom: 60px;
	background: #fff;
}

.th-contact-intro .th-intro-text__lead {
	margin-bottom: 0;
}

/* ---------- Home blog ---------- */
.th-section.th-home-blog {
	padding: 90px 0 48px;
	background: #fff;
}

.th-home-blog .th-intro-text__lead {
	margin-bottom: 48px;
}

.th-home-blog__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 1170px;
	margin: 0 auto;
}

.th-home-blog__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 0;
}

.th-home-blog__row--alt {
	direction: rtl;
}

.th-home-blog__row--alt > * {
	direction: ltr;
}

.th-home-blog__panel {
	display: flex;
	align-items: center;
	height: 100%;
	min-height: 0;
	background: linear-gradient(135deg, #7fbf00 0%, #6fa700 100%);
	color: #fff;
	padding: 40px clamp(24px, 4vw, 52px);
}

.th-home-blog__content {
	max-width: 460px;
}

.th-home-blog__title {
	margin: 0 0 14px;
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	font-weight: 700;
	line-height: 1.25;
}

.th-home-blog__title a {
	color: #fff;
}

.th-home-blog__title a:hover {
	opacity: 0.9;
}

.th-home-blog__excerpt {
	margin: 0 0 22px;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

.th-home-blog__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 22px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.th-home-blog__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.th-home-blog__meta-item svg {
	width: 14px;
	height: 14px;
	display: block;
	flex-shrink: 0;
}

.th-home-blog__more {
	color: #fff;
	font-weight: 700;
	letter-spacing: 1px;
}

.th-home-blog__more:hover {
	opacity: 0.85;
	color: #fff;
}

.th-home-blog__media {
	display: block;
	overflow: hidden;
	background: #111;
	aspect-ratio: 3 / 2;
	min-height: 0;
}

.th-home-blog__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.th-home-blog__row:hover .th-home-blog__media img {
	transform: scale(1.04);
}

.th-home-blog__actions {
	margin-top: 48px;
}

.th-btn--orange {
	background: var(--th-orange);
	color: #fff !important;
}

.th-btn--orange:hover {
	background: #e88920;
}

/* ---------- Home events band ---------- */
.th-events-band {
	position: relative;
	padding: 100px 0;
	background-color: var(--th-dark);
	background-image: url("../images/footer_bg.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}

.th-events-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 22, 0.82);
}

.th-events-band .th-container {
	position: relative;
	z-index: 1;
}

.th-events-band__header {
	margin-bottom: 48px;
}

.th-events-band__eyebrow {
	margin: 0 0 12px;
	font-size: 0.95rem;
	letter-spacing: 0.4px;
	text-transform: lowercase;
	color: rgba(255, 255, 255, 0.7);
}

.th-events-band__title {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.th-events-band__title strong {
	display: inline;
	font-weight: 700;
	color: #fff;
}

.th-events-band__title span {
	display: inline;
	font-weight: 400;
}

.th-events-band__lead {
	margin: 18px auto 0;
	max-width: 640px;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
}

.th-events-band__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: start;
}

.th-events-band__item {
	position: relative;
	display: block;
	line-height: 0;
	overflow: hidden;
}

.th-events-band__item img {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

.th-events-band__item:hover img {
	opacity: 0.88;
}

.th-events-band__item.is-past img {
	filter: grayscale(1);
}

.th-events-band__item.is-past::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(40, 40, 40, 0.55);
	z-index: 1;
	pointer-events: none;
}

.th-events-band__status {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	text-align: center;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	pointer-events: none;
}

.th-events-band__all {
	margin: 40px 0 0;
}

.th-events-band__all .th-link-more {
	color: #fff;
}

.th-events-band__all .th-link-more:hover {
	color: var(--th-accent);
}

.th-events-band__empty {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
}

.th-events-band__empty .th-link-more {
	margin-top: 12px;
	display: inline-block;
	color: #fff;
}

/* ---------- Event registration form ---------- */
.th-event-booking__title {
	margin: 0 0 18px;
	font-size: 1.25rem;
}

.th-event-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 20px;
}

.th-event-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--th-text-muted);
}

.th-event-form__field--full {
	grid-column: 1 / -1;
}

.th-event-form__field input,
.th-event-form__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--th-border);
	background: #fff;
	font-family: var(--th-font);
	font-size: 14px;
	font-weight: 400;
	color: var(--th-text);
	outline: none;
}

.th-event-form__field input:focus,
.th-event-form__field textarea:focus {
	border-color: var(--th-accent);
}

.th-btn--sm {
	padding: 11px 22px;
	font-size: 11px;
}

/* ---------- Intro text ---------- */
.th-intro-text {
	padding-top: 80px;
	padding-bottom: 100px;
}

.th-intro-text__eyebrow {
	margin: 0 0 14px;
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-transform: lowercase;
	color: var(--th-text-light);
}

.th-intro-text__title {
	margin: 0 0 22px;
	font-size: clamp(1.55rem, 3.2vw, 2.35rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--th-text-muted);
}

.th-intro-text__title strong {
	display: inline;
	font-weight: 700;
	color: var(--th-text);
}

.th-intro-text__title span {
	display: inline;
	font-weight: 400;
}

.th-intro-text__lead {
	margin: 0 auto;
	max-width: 760px;
	font-size: 0.98rem;
	line-height: 1.85;
	color: var(--th-text-muted);
}

/* ---------- Home categories ---------- */
.th-home-cats {
	padding-top: 90px;
	padding-bottom: 90px;
	background: #f5f5f5;
}

.th-home-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 48px;
}

.th-home-cat {
	text-align: center;
}

.th-home-cat__media {
	display: block;
	width: 200px;
	height: 200px;
	margin: 0 auto 28px;
	border-radius: 50%;
	overflow: hidden;
	background: #111;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.th-home-cat__media:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.th-home-cat__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.th-home-cat__title {
	margin: 0 0 12px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--th-text);
}

.th-home-cat__title a {
	color: var(--th-text);
}

.th-home-cat__title a:hover {
	color: var(--th-accent);
}

.th-home-cat__text {
	margin: 0 auto 18px;
	max-width: 280px;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--th-text-muted);
}

.th-home-cat__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--th-accent);
}

.th-home-cat__link span {
	font-size: 16px;
	line-height: 1;
	transform: translateY(-1px);
}

.th-home-cat__link:hover {
	color: var(--th-accent-dark);
}

/* ---------- Intro / about teaser ---------- */
.th-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.th-intro__image {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 420px;
}

.th-intro__content .th-title {
	text-align: left;
	font-size: 2.2rem;
}

.th-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.th-feature {
	text-align: center;
	padding: 10px;
}

.th-feature__icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 22px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--th-border);
	transition: border-color 0.3s;
}

.th-feature:hover .th-feature__icon {
	border-color: var(--th-accent);
}

.th-feature__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.th-feature__title {
	font-size: 1.15rem;
	margin-bottom: 12px;
}

.th-feature__title a {
	color: var(--th-text);
}

.th-feature__title a:hover {
	color: var(--th-accent);
}

.th-feature__text {
	font-size: 0.95rem;
	margin-bottom: 16px;
}

/* ---------- Video / guide ---------- */
.th-guide {
	background: url("../images/tea-bg2.jpg") center / cover no-repeat;
	position: relative;
	color: #fff;
	text-align: center;
	padding: 120px 0;
}

.th-guide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(30, 29, 34, 0.72);
}

.th-guide .th-container {
	position: relative;
	z-index: 1;
}

.th-guide .th-title,
.th-guide .th-eyebrow {
	color: #fff;
}

.th-guide .th-title-accent {
	color: var(--th-accent);
}

.th-play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid #fff;
	color: #fff;
	font-size: 28px;
	margin: 30px 0 20px;
	transition: background 0.3s, border-color 0.3s;
}

.th-play:hover {
	background: var(--th-accent);
	border-color: var(--th-accent);
	color: #fff;
}

/* ---------- Featured article ---------- */
.th-article-feature {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 0;
	align-items: stretch;
	background: #f8f8f8;
}

.th-article-feature__media {
	min-height: 420px;
	background-size: cover;
	background-position: center;
}

.th-article-feature__body {
	padding: 70px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ---------- Products ---------- */
.th-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 40px;
}

.th-product-card {
	text-align: center;
	background: #fff;
	transition: box-shadow 0.3s;
}

.th-product-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.th-product-card__image {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f4f4f4;
}

.th-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.th-product-card:hover .th-product-card__image img {
	transform: scale(1.05);
}

.th-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--th-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.th-product-card__badge--oos {
	background: #949494;
}

.th-product-card__body {
	padding: 18px 14px 24px;
}

.th-product-card__title {
	font-size: 1rem;
	margin-bottom: 8px;
}

.th-product-card__title a {
	color: var(--th-text);
}

.th-product-card__title a:hover {
	color: var(--th-accent);
}

.th-product-card__price {
	color: var(--th-accent);
	font-weight: 700;
	font-size: 0.95rem;
}

.th-product-card__price del {
	color: #b8b8b8;
	font-weight: 400;
	margin-right: 6px;
}

/* ---------- Workshops ---------- */
.th-workshops {
	background: url("../images/tea-bg3.jpg") center / cover no-repeat;
	position: relative;
	padding: 100px 0;
}

.th-workshops::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.92);
}

.th-workshops .th-container {
	position: relative;
	z-index: 1;
}

.th-workshops-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.th-workshop-card {
	background: #fff;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.th-workshop-card__date {
	background: var(--th-accent);
	color: #fff;
	text-align: center;
	padding: 18px 10px;
	min-width: 90px;
}

.th-workshop-card__date-day {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}

.th-workshop-card__date-year {
	font-size: 12px;
	opacity: 0.9;
}

.th-workshop-card__row {
	display: flex;
	gap: 0;
}

.th-workshop-card__content {
	padding: 22px 24px;
	flex: 1;
}

.th-workshop-card__title {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.th-workshop-card__title a {
	color: var(--th-text);
}

.th-workshop-card__meta {
	font-size: 12px;
	color: var(--th-text-light);
	margin-bottom: 12px;
}

/* ---------- Blog cards ---------- */
.th-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.th-blog-archive--events .th-blog-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.th-blog-card {
	background: #fff;
}

.th-blog-card__image {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #eee;
}

.th-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.th-blog-card:hover .th-blog-card__image img {
	transform: scale(1.06);
}

.th-blog-card__body {
	padding: 24px 0 10px;
}

.th-blog-card__title {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.th-blog-card__title a {
	color: var(--th-text);
}

.th-blog-card__title a:hover {
	color: var(--th-accent);
}

.th-blog-card__excerpt {
	font-size: 0.95rem;
	margin-bottom: 14px;
}

.th-blog-card__meta {
	font-size: 12px;
	color: var(--th-text-light);
	margin-bottom: 14px;
}

.th-event-card {
	display: grid;
	grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.1fr);
	gap: 18px;
	align-items: stretch;
}

.th-event-card .th-blog-card__image {
	position: relative;
	aspect-ratio: 3 / 4;
	margin: 0;
	background: #eee;
	overflow: hidden;
}

.th-event-card .th-blog-card__image a {
	display: block;
	position: relative;
	height: 100%;
}

.th-event-card .th-blog-card__image img {
	height: 100%;
	object-fit: cover;
	display: block;
	width: 100%;
}

.th-event-card.is-past .th-blog-card__image img {
	filter: grayscale(1);
}

.th-event-card.is-past .th-blog-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(40, 40, 40, 0.55);
	z-index: 1;
	pointer-events: none;
}

.th-event-card__status {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	text-align: center;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	pointer-events: none;
}

.th-event-card .th-blog-card__body {
	padding: 4px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.th-event-card .th-blog-card__title {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.th-event-card .th-blog-card__excerpt {
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.th-event-card .th-blog-card__meta {
	margin-bottom: 8px;
}

.th-event-card .th-event-terms {
	margin: 0 0 12px;
	font-size: 0.9rem;
}

.th-event-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding-top: 4px;
}

.th-event-card.is-past .th-event-card__actions .th-btn {
	opacity: 0.55;
	pointer-events: none;
}

/* ---------- Testimonials ---------- */
.th-testimonials {
	background: url("../images/testimonials_bg.jpg") center / cover no-repeat;
	position: relative;
	padding: 100px 0;
	color: #fff;
}

.th-testimonials::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(30, 29, 34, 0.78);
}

.th-testimonials .th-container {
	position: relative;
	z-index: 1;
}

.th-testimonials .th-title,
.th-testimonials .th-eyebrow {
	color: #fff;
}

.th-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 50px;
}

.th-testimonial {
	text-align: center;
}

.th-testimonial__avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 22px;
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.th-testimonial__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.th-testimonial__text {
	font-style: italic;
	font-size: 0.95rem;
	line-height: 1.8;
	color: #d0d0d0;
	margin-bottom: 20px;
}

.th-testimonial__name {
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.th-testimonial__role {
	font-size: 12px;
	color: var(--th-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ---------- Contact band ---------- */
.th-contact-band {
	background: url("../images/tea-bg4.jpg") center / cover no-repeat;
	position: relative;
	padding: 90px 0;
}

.th-contact-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.94);
}

.th-contact-band .th-container {
	position: relative;
	z-index: 1;
}

.th-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.th-contact-card {
	text-align: center;
}

.th-contact-card__image {
	margin-bottom: 18px;
	overflow: hidden;
}

.th-contact-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.th-contact-card__value {
	font-size: 0.95rem;
	color: var(--th-text);
	line-height: 1.6;
}

.th-contact-card__value a {
	color: var(--th-text);
}

.th-contact-card__value a:hover {
	color: var(--th-accent);
}

/* ---------- Location (form + map) ---------- */
.th-location {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 520px;
	background: var(--th-dark);
}

.th-location__form-panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 56px 40px;
	background: var(--th-accent);
}

.th-location__form-inner {
	width: 100%;
	max-width: 420px;
}

.th-location__notice {
	margin: 0 0 18px;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-align: center;
	background: rgba(255, 255, 255, 0.92);
}

.th-location__notice--success {
	color: #3d6b12;
}

.th-location__notice--error {
	color: #a33a2c;
}

.th-location-form__fields {
	padding: 22px 20px;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(2px);
}

.th-location-form__field {
	position: relative;
	display: block;
	margin-bottom: 12px;
}

.th-location-form__field:last-child {
	margin-bottom: 0;
}

.th-location-form__field input,
.th-location-form__field textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 14px 36px 14px 16px;
	border: none;
	border-radius: 0;
	background: #fff;
	color: var(--th-text);
	font-family: var(--th-font);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.3px;
	line-height: 1.4;
	outline: none;
	resize: vertical;
	transition: box-shadow 0.2s ease;
}

.th-location-form__field textarea {
	min-height: 120px;
	padding-top: 14px;
}

.th-location-form__field input::placeholder,
.th-location-form__field textarea::placeholder {
	color: #9a9a9a;
	opacity: 1;
}

.th-location-form__field input:focus,
.th-location-form__field textarea:focus {
	box-shadow: inset 0 0 0 2px var(--th-accent);
}

.th-location-form__required {
	position: absolute;
	top: 14px;
	right: 14px;
	color: #b0b0b0;
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
}

.th-location-form__field--message .th-location-form__required {
	top: 16px;
}

.th-location-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.th-location-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 18px;
	padding: 16px 24px;
	border: none;
	background: #fff;
	color: var(--th-text);
	font-family: var(--th-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.th-location-form__submit svg {
	width: 14px;
	height: 14px;
	display: block;
}

.th-location-form__submit:hover {
	background: var(--th-dark);
	color: #fff;
	transform: translateY(-1px);
}

.th-location__map {
	position: relative;
	min-height: 520px;
	line-height: 0;
	overflow: hidden;
}

.th-location__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
}

@media (max-width: 992px) {
	.th-location {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.th-location__form-panel {
		padding: 48px 24px;
	}

	.th-location__map,
	.th-location__map iframe {
		min-height: 360px;
	}
}

@media (max-width: 768px) {
	.th-location__form-panel {
		padding: 40px 18px;
	}

	.th-location__map,
	.th-location__map iframe {
		min-height: 300px;
	}
}

/* ---------- Footer ---------- */
.th-footer {
	--th-footer-bg-image: url("../images/footer_bg.jpg");
	background-color: var(--th-dark);
	background-image: var(--th-footer-bg-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	padding: 70px 0 56px;
	position: relative;
	text-align: center;
}

.th-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 22, 0.82);
}

.th-footer .th-container {
	position: relative;
	z-index: 1;
}

.th-footer__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	max-width: 560px;
	margin: 0 auto;
}

.th-footer__logo {
	display: inline-block;
	line-height: 0;
}

.th-footer__logo img {
	display: block;
	max-height: 72px;
	width: auto;
	margin: 0 auto;
}

.th-footer__divider {
	display: block;
	width: 220px;
	max-width: 60%;
	border: none;
	border-top: 1px dashed rgba(255, 255, 255, 0.28);
	height: 0;
}

.th-footer__legal {
	position: relative;
	padding: 8px 0 4px;
}

.th-footer__copy {
	position: relative;
	z-index: 1;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 10px;
}

.th-footer__links {
	position: relative;
	z-index: 1;
}

.th-footer__links a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.2px;
	text-transform: none;
}

.th-footer__links a:hover {
	color: var(--th-accent);
}

.th-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 4px;
}

.th-footer__social a {
	color: #fff;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
	transition: color 0.25s ease, opacity 0.25s ease;
}

.th-footer__social a:hover {
	color: var(--th-accent);
	opacity: 1;
}

.th-footer__social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.th-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1000;
	width: 42px;
	height: 42px;
	padding: 0;
	border: none;
	background: #d4a64a;
	color: #0a0a0a;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, transform 0.2s ease;
}

.th-to-top:hover {
	background: #f5cd79;
	transform: translateY(-2px);
}

.th-to-top svg {
	width: 18px;
	height: 18px;
	display: block;
}

/* ---------- Mini cart drawer ---------- */
.th-mini-cart {
	position: fixed;
	inset: 0;
	z-index: 1200;
	pointer-events: none;
	visibility: hidden;
}

.th-mini-cart.is-open {
	pointer-events: auto;
	visibility: visible;
}

.th-mini-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 22, 0.45);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.th-mini-cart.is-open .th-mini-cart__overlay {
	opacity: 1;
}

.th-mini-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(100%, 400px);
	height: 100%;
	background: #fff;
	color: var(--th-text);
	box-shadow: -18px 0 48px rgba(0, 0, 0, 0.12);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	outline: none;
}

.th-mini-cart.is-open .th-mini-cart__panel {
	transform: translateX(0);
}

.th-mini-cart__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 28px 20px;
	border-bottom: 1px solid var(--th-border);
}

.th-mini-cart__heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.th-mini-cart__title {
	margin: 0;
	font-family: var(--th-font-head);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--th-text);
}

.th-mini-cart__count {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: var(--th-text-light);
}

.th-mini-cart__close {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	margin: -6px -6px 0 0;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--th-text);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease, transform 0.2s ease;
}

.th-mini-cart__close:hover {
	color: var(--th-accent);
	transform: rotate(90deg);
}

.th-mini-cart__close svg {
	width: 18px;
	height: 18px;
	display: block;
}

.th-mini-cart__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 8px 28px;
	-webkit-overflow-scrolling: touch;
}

.th-mini-cart__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.th-mini-cart__item {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--th-border);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.th-mini-cart__item.is-removing {
	opacity: 0;
	transform: translateX(12px);
	pointer-events: none;
}

.th-mini-cart__item:last-child {
	border-bottom: none;
}

.th-mini-cart__thumb {
	width: 72px;
	height: 72px;
	overflow: hidden;
	background: #f5f5f5;
}

.th-mini-cart__thumb a,
.th-mini-cart__thumb img,
.th-mini-cart__thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.th-mini-cart__info {
	min-width: 0;
}

.th-mini-cart__name {
	display: block;
	margin: 0 0 8px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--th-text);
}

.th-mini-cart__name:hover {
	color: var(--th-accent);
}

.th-mini-cart__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: var(--th-text-muted);
}

.th-mini-cart__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--th-border);
	background: #fff;
}

.th-mini-cart__qty-btn {
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--th-text);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.th-mini-cart__qty-btn:hover:not(:disabled) {
	color: var(--th-accent);
	background: #f7f7f7;
}

.th-mini-cart__qty-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.th-mini-cart__qty-input {
	width: 36px;
	height: 30px;
	padding: 0;
	border: none;
	border-left: 1px solid var(--th-border);
	border-right: 1px solid var(--th-border);
	background: transparent;
	color: var(--th-text);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
}

.th-mini-cart__qty-input::-webkit-outer-spin-button,
.th-mini-cart__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.th-mini-cart__price {
	font-weight: 700;
	color: var(--th-text);
}

.th-mini-cart__price del {
	color: var(--th-text-light);
	font-weight: 400;
	margin-right: 4px;
}

.th-mini-cart__remove {
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--th-text-light);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.th-mini-cart__remove:hover {
	color: var(--th-text);
}

.th-mini-cart__remove svg {
	width: 14px;
	height: 14px;
	display: block;
}

.th-mini-cart__empty {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 280px;
	padding: 24px 0;
}

.th-mini-cart__empty-title {
	margin: 0 0 8px;
	font-family: var(--th-font-head);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--th-text);
}

.th-mini-cart__empty-text {
	margin: 0 0 22px;
	max-width: 260px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--th-text-muted);
}

.th-mini-cart__footer {
	padding: 20px 28px 28px;
	border-top: 1px solid var(--th-border);
	background: #fafafa;
}

.th-mini-cart__footer[hidden] {
	display: none;
}

.th-mini-cart__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	font-size: 0.95rem;
	color: var(--th-text-muted);
}

.th-mini-cart__total strong {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--th-text);
}

.th-mini-cart__checkout {
	display: flex;
	width: 100%;
	justify-content: center;
}

body.th-mini-cart-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.th-mini-cart__panel {
		width: 100%;
	}

	.th-mini-cart__header,
	.th-mini-cart__body,
	.th-mini-cart__footer {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	.th-footer {
		padding: 56px 0 48px;
	}

	.th-to-top {
		right: 16px;
		bottom: 16px;
		width: 38px;
		height: 38px;
	}
}

/* ---------- Page title / breadcrumbs ---------- */
.th-page-title {
	background: url("../images/breadcrumbs_bg.jpg") center / cover no-repeat;
	position: relative;
	padding: 70px 0 60px;
	text-align: left;
	color: #fff;
}

.th-page-title::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(30, 29, 34, 0.65);
}

.th-page-title .th-container {
	position: relative;
	z-index: 1;
}

.th-page-title h1 {
	color: #fff;
	font-size: 2.8rem;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.th-breadcrumbs {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
}

.th-breadcrumbs a {
	color: rgba(255, 255, 255, 0.75);
}

.th-breadcrumbs a:hover {
	color: var(--th-accent);
}

.th-breadcrumbs span {
	margin: 0 8px;
	opacity: 0.5;
}

/* ---------- About page ---------- */
.th-about-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.th-about-list {
	margin: 24px 0 0;
}

.th-about-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	color: var(--th-text-muted);
}

.th-about-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 10px;
	background: var(--th-accent);
	border-radius: 50%;
}

.th-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.th-team-card {
	text-align: center;
}

.th-team-card__photo {
	aspect-ratio: 1;
	overflow: hidden;
	margin-bottom: 20px;
	background: #eee;
}

.th-team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.th-team-card:hover .th-team-card__photo img {
	transform: scale(1.05);
}

.th-team-card__name {
	font-size: 1.2rem;
	margin-bottom: 4px;
}

.th-team-card__role {
	font-size: 13px;
	color: var(--th-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 14px;
}

/* ---------- Shop / WooCommerce ---------- */
.th-shop-layout {
	display: flex;
	flex-direction: column;
	gap: 36px;
	padding: 48px 0 90px;
}

.th-shop-toolbar {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 16px 18px;
	background: #f7f7f7;
	border: 1px solid var(--th-border);
}

.th-shop-cats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.th-shop-toolbar__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	width: 100%;
	padding-top: 14px;
	border-top: 1px solid var(--th-border);
}

.th-product-search {
	position: relative;
	flex: 1 1 280px;
	min-width: 200px;
	max-width: 420px;
}

.th-product-search__icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	color: var(--th-text-light);
	pointer-events: none;
}

.th-product-search__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.th-product-search .search-field {
	width: 100%;
	height: 42px;
	padding: 0 14px 0 38px;
	border: 1px solid var(--th-border);
	border-radius: 999px;
	background: #fff;
	font-family: var(--th-font);
	font-size: 0.9rem;
	color: var(--th-text);
	outline: none;
	transition: border-color 0.2s ease;
}

.th-product-search .search-field:focus {
	border-color: var(--th-accent);
}

.th-shop-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--th-border);
	color: var(--th-text-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2px;
	line-height: 1.2;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.th-shop-tag:hover,
.th-shop-tag.is-active {
	background: var(--th-accent);
	border-color: var(--th-accent);
	color: #fff;
}

.th-price-filter {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	margin-left: auto;
}

.th-price-filter__fields {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

.th-price-filter__fields label {
	margin: 0;
}

.th-price-filter input[type="number"] {
	width: 78px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--th-border);
	border-radius: 999px;
	background: #fff;
	font-family: var(--th-font);
	font-size: 0.85rem;
	color: var(--th-text);
	outline: none;
	text-align: center;
	-moz-appearance: textfield;
}

.th-price-filter input[type="number"]::-webkit-outer-spin-button,
.th-price-filter input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.th-price-filter input[type="number"]:focus {
	border-color: var(--th-accent);
}

.th-price-filter__sep {
	color: var(--th-text-light);
	flex-shrink: 0;
}

.th-price-filter__btn {
	height: 42px;
	padding: 0 18px;
	border: none;
	border-radius: 999px;
	background: var(--th-accent);
	color: #fff;
	font-family: var(--th-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
}

.th-price-filter__btn:hover {
	background: var(--th-accent-dark);
}

.th-shop-featured-filter {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.th-shop-featured-filter a {
	color: var(--th-text-muted);
	font-size: 0.95rem;
}

.th-shop-featured-filter .is-active a,
.th-shop-featured-filter a:hover {
	color: var(--th-accent);
}

.th-shop-featured-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.th-shop-featured-item {
	display: flex;
	gap: 12px;
	align-items: center;
	color: inherit;
}

.th-shop-featured-item__img {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	overflow: hidden;
	background: #f4f4f4;
}

.th-shop-featured-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.th-shop-featured-item__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.th-shop-featured-item__title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--th-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.35;
}

.th-shop-featured-item__price {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--th-accent);
}

.th-shop-main .woocommerce-result-count,
.th-shop-main .woocommerce-ordering {
	display: none !important;
}

.th-shop-clear {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--th-text-muted);
	white-space: nowrap;
}

.th-shop-clear:hover {
	color: var(--th-accent);
}

.th-shop-pagination,
.th-shop-main .woocommerce-pagination {
	clear: both;
	display: flex;
	justify-content: center;
	margin: 40px 0 0;
	width: 100%;
}

.th-shop-pagination ul,
.th-shop-main .woocommerce-pagination ul {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	float: none !important;
	list-style: none;
}

.th-shop-pagination ul li,
.th-shop-main .woocommerce-pagination ul li {
	float: none !important;
	border: none !important;
	margin: 0 !important;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 0 !important;
	align-items: stretch;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce ul.products li.th-loop-card {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	text-align: center;
	padding: 0;
	background: #fff;
	display: flex !important;
	flex-direction: column;
	height: 100%;
	position: relative;
}

.th-loop-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f4f4f4;
	flex-shrink: 0;
}

.th-loop-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.th-loop-card__media img,
.woocommerce ul.products li.product img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
}

.th-loop-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 10px 8px 12px;
	min-height: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.th-loop-card__title {
	font-size: 0.92rem !important;
	font-weight: 700;
	line-height: 1.3;
	padding: 0 !important;
	margin: 0 0 6px !important;
	color: var(--th-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 0;
}

.th-loop-card__title a {
	color: var(--th-text);
}

.th-loop-card__title a:hover {
	color: var(--th-accent);
}

.th-loop-card__meta {
	min-height: 0;
	margin-bottom: 4px;
}

.th-loop-card__meta .star-rating {
	margin: 0 auto;
}

.woocommerce ul.products li.product .price,
.th-loop-card__price {
	color: var(--th-accent);
	font-weight: 700;
	font-size: 0.92rem;
	margin: auto 0 10px !important;
	min-height: 0;
}

.th-loop-card__actions {
	margin-top: auto;
	min-height: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.th-loop-card__actions .button,
.woocommerce ul.products li.product .button {
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
	background: var(--th-accent) !important;
	color: #fff !important;
	border-radius: 6px !important;
	border: none !important;
	font-size: 11px !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 18px !important;
	line-height: 1.3 !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--th-accent-dark) !important;
	color: #fff !important;
}

.woocommerce span.onsale {
	position: absolute;
	background: rgba(232, 145, 48, 0.88) !important;
	color: #fff !important;
	border-radius: 6px !important;
	line-height: 1.3 !important;
	min-height: auto !important;
	min-width: auto !important;
	padding: 5px 10px !important;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.4px;
	left: auto !important;
	right: 10px !important;
	top: 10px !important;
	z-index: 2;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 30px;
}

.woocommerce nav.woocommerce-pagination ul {
	border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none !important;
	margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	aspect-ratio: 1 / 1;
	padding: 0 !important;
	border-radius: 50%;
	line-height: 1 !important;
	background: #f4f4f4;
	color: var(--th-text);
	box-sizing: border-box;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--th-accent) !important;
	color: #fff !important;
}

/* ---------- Single product ---------- */
.th-single-product {
	padding: 20px 20px 90px;
}

.th-product__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 40px;
}

.th-product__gallery {
	position: relative;
	min-width: 0;
}

.th-product__gallery > .onsale {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	margin: 0;
}

.th-product__gallery .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	position: relative;
	opacity: 1 !important;
	overflow: hidden;
}

.th-product__gallery .woocommerce-product-gallery__wrapper {
	margin: 0;
	overflow: hidden;
}

.th-product__gallery .woocommerce-product-gallery__image {
	margin: 0;
	background: #f4f4f4;
	overflow: hidden;
}

.th-product__gallery .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.th-product__gallery .flex-viewport {
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.th-product__gallery .flex-viewport.is-dragging {
	cursor: grabbing;
}

.th-product__gallery .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	list-style: none;
	overflow: visible;
	max-height: none;
}

.th-product__gallery .flex-control-thumbs li {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.th-product__gallery .flex-control-thumbs img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	opacity: 0.55;
	cursor: pointer;
	display: block;
	transition: opacity 0.2s ease;
}

.th-product__gallery .flex-control-thumbs img.flex-active,
.th-product__gallery .flex-control-thumbs img:hover {
	opacity: 1;
}

.th-product__gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 9;
}

.th-product__summary {
	float: none !important;
	width: 100% !important;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.th-product__summary .product_title {
	margin: 0;
	font-size: clamp(1.4rem, 2.2vw, 1.85rem);
	line-height: 1.25;
}

.th-product__summary .price {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--th-accent);
}

.th-product__summary .woocommerce-product-details__short-description {
	margin: 0;
	line-height: 1.6;
}

.th-product__summary .cart {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px;
}

.th-product__summary .cart.variations_form {
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 18px;
	padding: 18px;
	border: 1px solid var(--th-border);
	background: #fafafa;
}

.th-product__summary .quantity .qty {
	min-height: 48px;
	width: 72px;
	border: 1px solid var(--th-border);
	border-radius: 0;
	text-align: center;
	font-family: var(--th-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--th-text);
	background: var(--th-white);
	appearance: textfield;
	-moz-appearance: textfield;
}

.th-product__summary .quantity .qty::-webkit-outer-spin-button,
.th-product__summary .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.th-product__summary .variations {
	margin: 0;
	width: 100%;
	border-collapse: collapse;
}

.th-product__summary .variations tbody,
.th-product__summary .variations tr,
.th-product__summary .variations td,
.th-product__summary .variations th {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: transparent;
	text-align: left;
	vertical-align: top;
}

.th-product__summary .variations tr + tr {
	margin-top: 14px;
}

.th-product__summary .variations th.label {
	margin: 0 0 8px;
}

.th-product__summary .variations th.label label {
	display: block;
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--th-text-light);
}

.th-product__summary .variations td.value {
	position: relative;
}

.th-product__summary .variations select {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 10px 40px 10px 14px;
	border: 1px solid var(--th-border);
	border-radius: 0;
	background-color: var(--th-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%383838' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
	font-family: var(--th-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--th-text);
	line-height: 1.4;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

.th-product__summary .variations select:hover,
.th-product__summary .variations select:focus {
	border-color: var(--th-accent);
	outline: none;
}

.th-product__summary .variations .reset_variations {
	display: inline-block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: var(--th-text-light);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.th-product__summary .variations .reset_variations:hover {
	color: var(--th-accent-dark);
}

.th-product__summary .single_variation_wrap {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.th-product__summary .woocommerce-variation {
	min-height: 0;
}

.th-product__summary .woocommerce-variation-description:empty,
.th-product__summary .woocommerce-variation-price:empty,
.th-product__summary .woocommerce-variation-availability:empty {
	display: none;
}

.th-product__summary .woocommerce-variation-description {
	font-size: 14px;
	line-height: 1.55;
	color: var(--th-text-muted);
}

.th-product__summary .woocommerce-variation-price .price {
	margin: 0;
	font-size: 1.35rem;
}

.th-product__summary .woocommerce-variation-availability .stock {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
}

.th-product__summary .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
}

.th-product__summary .woocommerce-variation-add-to-cart .quantity {
	margin: 0;
	flex: 0 0 auto;
}

.th-product__summary .woocommerce-variation-add-to-cart .single_add_to_cart_button,
.th-product__summary .cart .single_add_to_cart_button {
	flex: 1 1 160px;
	min-height: 48px;
	margin: 0 !important;
	padding: 12px 22px !important;
	border-radius: 0 !important;
	font-size: 12px !important;
	letter-spacing: 1.5px;
}

.th-product__summary .woocommerce-variation-add-to-cart .single_add_to_cart_button.disabled,
.th-product__summary .woocommerce-variation-add-to-cart .single_add_to_cart_button.wc-variation-selection-needed {
	opacity: 0.55;
	cursor: not-allowed;
}

.th-product__summary .product_meta {
	display: none;
}

.th-product__bottom {
	margin-top: 8px;
}

.th-product__bottom .woocommerce-tabs {
	margin: 0 0 40px;
}

.th-product__bottom .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	border-bottom: 1px solid var(--th-border);
}

.th-product__bottom .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}

.th-product__bottom .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 10px 0;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--th-text-light);
}

.th-product__bottom .woocommerce-tabs ul.tabs li.active a,
.th-product__bottom .woocommerce-tabs ul.tabs li a:hover {
	color: var(--th-accent);
}

.th-product__bottom .woocommerce-tabs .panel {
	margin: 0;
	padding: 0;
	line-height: 1.7;
}

.th-product__bottom .woocommerce-tabs .panel h2 {
	margin: 0 0 14px;
	font-size: 1.15rem;
}

.th-product__bottom .woocommerce-tabs .panel table,
.th-product__bottom .woocommerce-product-attributes {
	width: 100%;
	max-width: 720px;
	margin: 0;
	border-collapse: collapse;
	border: 1px solid var(--th-border);
	background: var(--th-white);
}

.th-product__bottom .woocommerce-tabs .panel table th,
.th-product__bottom .woocommerce-tabs .panel table td,
.th-product__bottom .woocommerce-product-attributes th,
.th-product__bottom .woocommerce-product-attributes td {
	padding: 12px 16px;
	border: 1px solid var(--th-border);
	text-align: left;
	vertical-align: top;
	font-size: 14px;
	line-height: 1.55;
	letter-spacing: 0.3px;
}

.th-product__bottom .woocommerce-tabs .panel table th,
.th-product__bottom .woocommerce-product-attributes th {
	width: 34%;
	font-weight: 700;
	color: var(--th-text);
	background: #f7f7f7;
}

.th-product__bottom .woocommerce-tabs .panel table td,
.th-product__bottom .woocommerce-product-attributes td,
.th-product__bottom .woocommerce-product-attributes-item__value p {
	margin: 0;
	font-weight: 400;
	color: var(--th-text-muted);
	text-align: left;
}

.th-product__bottom .woocommerce-product-attributes-item:nth-child(even) td {
	background: #fafafa;
}

@media (max-width: 600px) {
	.th-product__bottom .woocommerce-tabs .panel table,
	.th-product__bottom .woocommerce-product-attributes,
	.th-product__bottom .woocommerce-product-attributes tbody,
	.th-product__bottom .woocommerce-product-attributes tr,
	.th-product__bottom .woocommerce-product-attributes th,
	.th-product__bottom .woocommerce-product-attributes td {
		display: block;
		width: 100%;
	}

	.th-product__bottom .woocommerce-product-attributes tr {
		border-bottom: 1px solid var(--th-border);
	}

	.th-product__bottom .woocommerce-product-attributes tr:last-child {
		border-bottom: 0;
	}

	.th-product__bottom .woocommerce-tabs .panel table th,
	.th-product__bottom .woocommerce-product-attributes th {
		border-bottom: 0;
		padding-bottom: 4px;
	}

	.th-product__bottom .woocommerce-tabs .panel table td,
	.th-product__bottom .woocommerce-product-attributes td {
		border-top: 0;
		padding-top: 4px;
	}
}

.th-product__bottom .related > h2,
.th-product__bottom .upsells > h2 {
	margin: 0 0 24px;
	font-size: 1.35rem;
	text-align: center;
}

.th-sidebar .widget {
	margin-bottom: 36px;
}

.th-sidebar .widget-title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--th-border);
}

.th-pagination {
	display: flex;
	gap: 8px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.th-pagination a,
.th-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: #f4f4f4;
	color: var(--th-text);
	font-weight: 600;
}

.th-pagination .current,
.th-pagination a:hover {
	background: var(--th-accent);
	color: #fff;
}

.th-event-terms {
	margin: 0 0 14px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--th-orange);
}

.th-event-terms--lg {
	font-size: 1.05rem;
	margin-bottom: 20px;
}

.th-event-single {
	padding: 28px 0 48px;
	max-width: 1170px;
}

.th-event-article {
	margin: 0;
}

.th-event-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 40px;
	align-items: start;
}

.th-event-single__media {
	position: sticky;
	top: 100px;
}

.th-event-single__image {
	margin: 0;
	overflow: hidden;
	background: transparent;
}

.th-event-single__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.th-event-single__content {
	min-width: 0;
}

.th-event-single__meta {
	margin-bottom: 16px;
}

.th-event-booking {
	margin-top: 28px;
	padding: 24px;
	border: 1px solid var(--th-border);
	background: #faf9f7;
}

.th-form-notice-slot:empty {
	display: none;
}

.th-form-notice-slot {
	margin-bottom: 14px;
}

@media (max-width: 900px) {
	.th-event-single__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.th-event-single__media {
		position: static;
	}
}

.th-event-card .th-blog-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

/* ---------- Content area default ---------- */
.th-content {
	padding: 28px 0 48px;
}

.site-main {
	margin: 0;
}

/* Hide underscore defaults that conflict */
.site-header .site-branding,
.site-header .main-navigation,
#colophon .site-info {
	/* overridden by th-* components */
}

/* Soften Underscores defaults that conflict with Tea House layout */
body.th-body #page {
	width: 100%;
	margin: 0;
	max-width: none;
}

body.th-body .widget-area,
body.th-body .widget {
	font-size: 0.95rem;
}

body.th-body .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

body.th-body .widget li {
	padding: 6px 0;
	border-bottom: 1px solid var(--th-border);
}

body.th-body .search-form {
	display: flex;
	gap: 0;
}

body.th-body .search-form .search-field {
	flex: 1;
	border: 1px solid var(--th-border);
	padding: 10px 14px;
	font-family: inherit;
}

body.th-body .search-form .search-submit {
	background: var(--th-accent);
	color: #fff;
	border: none;
	padding: 10px 16px;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
}

.woocommerce-breadcrumb {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, 0.75);
}



/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.th-header__inner {
		padding-inline: 28px;
	}

	.th-header__phone {
		padding-right: 20px;
	}

	.th-header__cart {
		padding-left: 20px;
	}

	.th-blog-archive--events .th-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.th-features,
	.th-products-grid,
	.th-workshops-grid,
	.th-blog-grid,
	.th-events-band__grid,
	.th-testimonials-grid,
	.th-contact-grid,
	.th-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.th-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.th-shop-layout,
	.th-intro,
	.th-about-hero,
	.th-article-feature,
	.th-product__top {
		grid-template-columns: 1fr;
	}

	.th-shop-toolbar__row {
		flex-direction: column;
		align-items: stretch;
	}

	.th-product-search,
	.th-price-filter {
		flex: 1 1 auto;
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: 0;
	}

	.th-price-filter {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.th-events-band__grid {
		grid-template-columns: 1fr;
	}

	.th-home-blog__row,
	.th-home-blog__row--alt {
		grid-template-columns: 1fr;
		direction: ltr;
	}

	.th-home-blog__media {
		order: -1;
	}

	.th-hero {
		height: 520px;
		max-height: none;
	}

	.th-hero__band {
		width: 58%;
	}

	.th-hero__panel {
		padding: 0 15px;
	}

	.th-hero__content {
		width: 55%;
		max-width: 55%;
	}

	.th-hero__nav {
		left: 15px;
		bottom: 18px;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.th-product__gallery .flex-control-thumbs {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 768px) {
	.th-header__inner {
		min-height: 88px;
		padding: 14px 20px;
		position: relative;
	}

	.th-header__brand {
		gap: 0;
	}

	.th-header__actions {
		display: flex;
		gap: 0;
		margin-left: auto;
		margin-right: 8px;
	}

	.th-header__phone {
		display: none;
	}

	.th-lang-switcher {
		margin-right: 10px;
		padding-right: 10px;
	}

	.th-header__cart {
		display: none;
	}

	.th-header__cart-total {
		display: none;
	}

	.th-menu-toggle {
		display: block;
		margin-left: auto;
		position: relative;
		z-index: 1102;
	}

	.main-navigation {
		position: static;
	}

	.th-nav {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 1100;
		width: 100%;
		height: 100%;
		height: 100dvh;
		box-sizing: border-box;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		margin: 0;
		padding: calc(88px + 12px) 24px 28px;
		background: #fff;
		box-shadow: none;
		overflow: hidden;
	}

	.th-nav ul {
		display: none;
	}

	.th-nav.is-open {
		display: flex;
	}

	.th-nav li {
		border-bottom: 1px solid var(--th-border);
		width: 100%;
		flex: 0 0 auto;
	}

	.th-nav a {
		display: block;
		padding: 16px 0;
		font-size: 1.05rem;
	}

	.th-nav a::after {
		display: none;
	}

	.th-nav__mobile-actions {
		display: flex;
		flex-direction: column;
		gap: 4px;
		margin-top: auto;
		padding: 20px 0 0;
		border-bottom: none !important;
	}

	.th-nav__mobile-actions .th-header__phone,
	.th-nav__mobile-actions .th-header__cart {
		display: flex !important;
		align-items: center;
		width: 100%;
		padding: 14px 0;
		border: none;
		margin: 0;
		background: transparent;
		color: var(--th-text);
		font: inherit;
		text-align: left;
		cursor: pointer;
	}

	.th-nav__mobile-actions .th-header__cart-total {
		display: inline !important;
		margin-left: 8px;
	}

	body.th-nav-open {
		overflow: hidden;
	}

	body.th-nav-open .th-header {
		z-index: 1102;
	}

	.th-home-blog {
		padding-inline: 20px;
	}

	.th-home-blog__list {
		padding-inline: 0;
		max-width: 100%;
		margin: 0 20px;
	}

	.th-home-blog__panel {
		padding: 28px 20px;
	}

	.th-home-blog__row {
		overflow: hidden;
	}

	.th-blog-archive--events .th-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.th-event-card {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 14px;
	}

	.th-event-single,
	.th-content {
		padding: 16px 12px 28px;
	}

	.th-single-product {
		padding: 16px 16px 48px;
	}

	.th-product__bottom .related.products,
	.th-product__bottom .upsells.products {
		padding-inline: 0;
	}

	.th-features,
	.th-products-grid,
	.th-workshops-grid,
	.th-blog-grid,
	.th-events-band__grid,
	.th-testimonials-grid,
	.th-contact-grid,
	.th-team-grid {
		grid-template-columns: 1fr;
	}

	.th-event-form__grid {
		grid-template-columns: 1fr;
	}

	.th-home-cats__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.th-title {
		font-size: 1.8rem;
	}

	.th-hero {
		height: 480px;
	}

	.th-hero__band {
		width: 100%;
	}

	.th-hero__panel {
		padding: 0 15px;
	}

	.th-hero__content {
		width: 100%;
		max-width: 100%;
	}

	.th-hero__nav {
		left: 15px;
	}

	.th-section {
		padding: 60px 0;
	}

	.th-section.th-home-blog {
		padding: 60px 0 28px;
	}

	.th-section.th-contact-intro {
		padding-top: 28px;
		padding-bottom: 48px;
	}

	.th-article-feature__body {
		padding: 40px 24px;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr !important;
	}

	.th-workshop-card__row {
		flex-direction: column;
	}
}

/* ---------- Telegram bot landing ---------- */
body.th-bot-standalone {
	margin: 0;
	background: var(--th-dark);
}

body.th-bot-standalone .th-to-top {
	display: none;
}

.th-bot-landing {
	margin: 0;
	min-height: 100vh;
}

.th-bot-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 20px;
	background-color: var(--th-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	color: #fff;
}

.th-bot-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 22, 0.82);
}

.th-bot-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
}

.th-bot-hero__logo {
	display: inline-block;
	margin: 0 auto 32px;
	line-height: 0;
}

.th-bot-hero__logo img {
	display: block;
	max-height: 56px;
	width: auto;
	margin: 0 auto;
}

.th-bot-hero__title {
	margin: 0 0 16px;
	font-size: clamp(1.9rem, 6vw, 2.6rem);
	line-height: 1.15;
	color: #fff;
	text-transform: none;
}

.th-bot-hero__text {
	margin: 0 auto 28px;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.th-bot-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.th-bot-btn {
	width: 100%;
	padding: 18px 24px;
	font-size: 14px;
	border-radius: 4px;
	text-align: center;
}

.th-bot-btn--primary {
	background: #d4a64a !important;
	color: #0a0a0a !important;
}

.th-bot-btn--primary:hover {
	background: linear-gradient(135deg, #d4a64a 0%, #f5cd79 100%) !important;
	color: #0a0a0a !important;
}

.th-bot-btn--secondary {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.85);
}

.th-bot-btn--secondary:hover {
	background: #d4a64a;
	color: #0a0a0a !important;
	border-color: #d4a64a;
}

@media (min-width: 640px) {
	.th-bot-hero__actions {
		flex-direction: row;
	}

	.th-bot-btn {
		flex: 1;
	}
}

/* ---------- Checkout / Cart ---------- */
body.woocommerce-checkout .th-content,
body.woocommerce-cart .th-content {
	padding-top: 48px;
	padding-bottom: 96px;
}

body.woocommerce-checkout .entry-content--wc > .woocommerce,
body.woocommerce-cart .entry-content--wc > .woocommerce {
	margin: 0;
}

.th-checkout-coupon {
	margin: 0 0 28px;
}

.th-checkout-coupon__toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border: 1px dashed var(--th-border);
	background: #fafafa;
	color: var(--th-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.th-checkout-coupon__toggle span {
	color: #d4a64a;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	font-size: 11px;
}

.th-checkout-coupon__toggle:hover {
	border-color: #d4a64a;
	color: var(--th-text);
}

.th-checkout-coupon__form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
	padding: 16px;
	border: 1px solid var(--th-border);
	background: #fff;
}

.th-checkout-coupon__form .input-text {
	flex: 1 1 200px;
	min-height: 48px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--th-border);
	background: #fff;
	font-family: inherit;
	font-size: 14px;
}

.th-checkout-coupon__form .th-btn {
	flex: 0 0 auto;
	min-height: 48px;
	padding: 12px 22px;
}

.th-checkout {
	width: 100%;
}

.th-checkout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 40px;
	align-items: start;
}

.th-checkout__customer,
.th-checkout__summary-card {
	background: #fff;
	border: 1px solid var(--th-border);
	padding: 28px 28px 32px;
}

.th-checkout__summary-card {
	position: sticky;
	top: 100px;
	background: #faf9f7;
}

.th-checkout__summary-title,
.woocommerce-billing-fields > h3,
.woocommerce-additional-fields > h3 {
	margin: 0 0 22px;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--th-text);
	letter-spacing: 0.3px;
}

.woocommerce-billing-fields__field-wrapper,
.th-checkout__details .woocommerce-billing-fields {
	margin: 0;
}

.th-checkout .form-row {
	margin: 0 0 16px;
	padding: 0;
	width: 100% !important;
	float: none !important;
}

.th-checkout .form-row label {
	display: block;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--th-text);
}

.th-checkout .form-row .required {
	color: #c0524a;
	text-decoration: none;
}

.th-checkout .form-row .input-text,
.th-checkout .form-row input[type="text"],
.th-checkout .form-row input[type="tel"],
.th-checkout .form-row input[type="email"],
.th-checkout .form-row select,
.th-checkout .form-row textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	min-height: 48px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--th-border);
	border-radius: 0;
	background: #fff;
	color: var(--th-text);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.4;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.th-checkout .form-row .input-text:focus,
.th-checkout .form-row input:focus,
.th-checkout .form-row select:focus,
.th-checkout .form-row textarea:focus {
	outline: none;
	border-color: #d4a64a;
	box-shadow: 0 0 0 2px rgba(212, 166, 74, 0.2);
}

.th-checkout .form-row-wide {
	clear: both;
}

.th-checkout__note {
	margin: 8px 0 0;
	padding: 12px 14px;
	background: #faf9f7;
	border-left: 3px solid #d4a64a;
	font-size: 13px;
	line-height: 1.55;
	color: var(--th-text-muted);
}

.th-checkout .woocommerce-invalid .input-text {
	border-color: #c0524a;
}

.th-checkout .woocommerce-validated .input-text {
	border-color: var(--th-accent);
}

.th-checkout__review .shop_table {
	width: 100%;
	margin: 0 0 20px;
	border-collapse: collapse;
	border: 0;
}

.th-checkout__review .shop_table th,
.th-checkout__review .shop_table td {
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid var(--th-border);
	font-size: 14px;
	vertical-align: top;
	background: transparent;
}

.th-checkout__review .shop_table thead th {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--th-text-light);
}

.th-checkout__review .shop_table tfoot th {
	font-weight: 600;
	text-align: left;
	color: var(--th-text-muted);
}

.th-checkout__review .shop_table tfoot td,
.th-checkout__review .shop_table .product-total {
	text-align: right;
	font-weight: 700;
	color: var(--th-text);
}

.th-checkout__review .shop_table .product-name {
	padding-right: 16px;
	color: var(--th-text);
	font-weight: 600;
}

.th-checkout__review .shop_table .product-quantity {
	font-weight: 700;
	color: var(--th-text-muted);
}

.th-checkout__review .shop_table .order-total th,
.th-checkout__review .shop_table .order-total td {
	border-bottom: 0;
	padding-top: 18px;
	font-size: 1.05rem;
	color: var(--th-text);
}

.th-checkout__review .shop_table .order-total td {
	color: #d4a64a;
}

.th-checkout #payment {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.th-checkout #payment ul.payment_methods {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
}

.th-checkout #payment ul.payment_methods li {
	margin: 0 0 10px;
	padding: 12px 14px;
	border: 1px solid var(--th-border);
	background: #fff;
}

.th-checkout #payment ul.payment_methods li label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-weight: 600;
	color: var(--th-text);
	cursor: pointer;
}

.th-checkout #payment .payment_box {
	margin: 10px 0 0;
	padding: 12px;
	background: #f4f4f4;
	font-size: 13px;
	line-height: 1.5;
	color: var(--th-text-muted);
}

.th-checkout #payment .payment_box::before {
	display: none;
}

.th-checkout #payment div.form-row {
	margin: 0;
	padding: 0;
}

.th-checkout #place_order,
.th-checkout button#place_order {
	display: block;
	width: 100%;
	margin: 0;
	padding: 16px 24px;
	border: none;
	background: #d4a64a !important;
	color: #0a0a0a !important;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease;
}

.th-checkout #place_order:hover,
.th-checkout button#place_order:hover {
	background: #f5cd79 !important;
	color: #0a0a0a !important;
}

.th-checkout .woocommerce-privacy-policy-text,
.th-checkout .woocommerce-terms-and-conditions-wrapper {
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 1.55;
	color: var(--th-text-muted);
}

/* WooCommerce notices (global) */
.woocommerce-notices-wrapper,
.woocommerce-NoticeGroup {
	margin: 0 0 24px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-notice {
	list-style: none;
	margin: 0 0 16px;
	padding: 14px 18px;
	border: 1px solid var(--th-border);
	border-left: 3px solid var(--th-accent);
	background: #f7faf2;
	color: var(--th-text);
	font-size: 14px;
	line-height: 1.55;
	letter-spacing: 0.3px;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
	display: none;
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-notice a {
	font-weight: 700;
	color: var(--th-accent-dark);
	text-decoration: underline;
}

.woocommerce-error,
.woocommerce-notice--error {
	border-left-color: #c0524a;
	background: #fbf4f3;
}

.woocommerce-info,
.woocommerce-notice--info {
	border-left-color: #d4a64a;
	background: #faf9f7;
}

.woocommerce-message li,
.woocommerce-error li,
.woocommerce-info li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-message li + li,
.woocommerce-error li + li,
.woocommerce-info li + li {
	margin-top: 8px;
}

/* Hide empty shipping column leftovers */
.th-checkout .woocommerce-shipping-fields,
.th-checkout .woocommerce-additional-fields,
.th-checkout .col2-set .col-2:empty {
	display: none !important;
}

/* Cart page basics */
body.woocommerce-cart .woocommerce table.cart {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 28px;
}

body.woocommerce-cart .woocommerce table.cart th,
body.woocommerce-cart .woocommerce table.cart td {
	padding: 14px 10px;
	border-bottom: 1px solid var(--th-border);
	text-align: left;
	vertical-align: middle;
}

body.woocommerce-cart .cart_totals {
	max-width: 420px;
	margin-left: auto;
	padding: 24px;
	border: 1px solid var(--th-border);
	background: #faf9f7;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	text-align: center;
	background: #d4a64a !important;
	color: #0a0a0a !important;
}

@media (max-width: 900px) {
	.th-checkout__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.th-checkout__summary-card {
		position: static;
	}

	.th-checkout__customer,
	.th-checkout__summary-card {
		padding: 22px 18px 24px;
	}
}

/* ---------- Thank you / Order received ---------- */
body.woocommerce-order-received .th-content {
	padding-top: 48px;
	padding-bottom: 96px;
}

.th-thankyou {
	max-width: 820px;
	margin: 0 auto;
}

.th-thankyou__hero {
	margin: 0 0 28px;
	padding: 32px 28px;
	border: 1px solid var(--th-border);
	background: #faf9f7;
	text-align: center;
}

.th-thankyou__eyebrow {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #d4a64a;
}

.th-thankyou__heading {
	margin: 0 0 12px;
	font-size: clamp(1.4rem, 3vw, 1.85rem);
	line-height: 1.25;
	color: var(--th-text);
}

.th-thankyou__lead {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--th-text-muted);
}

.th-thankyou__overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.th-thankyou__overview li {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 16px 14px;
	border: 1px solid var(--th-border);
	background: #fff;
}

.th-thankyou__overview li span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--th-text-light);
}

.th-thankyou__overview li strong {
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--th-text);
	line-height: 1.35;
}

.th-thankyou__overview .total strong {
	color: #d4a64a;
}

.th-thankyou__customer,
.th-thankyou__body .woocommerce-order-details,
.th-thankyou__body .woocommerce-customer-details {
	margin: 0 0 24px;
	padding: 24px 26px;
	border: 1px solid var(--th-border);
	background: #fff;
}

.th-thankyou__section-title,
.th-thankyou__body .woocommerce-order-details__title,
.th-thankyou__body .woocommerce-column__title {
	margin: 0 0 18px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--th-text);
}

.th-thankyou__customer-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.th-thankyou__customer-list li {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.th-thankyou__customer-list span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--th-text-light);
}

.th-thankyou__customer-list strong {
	font-size: 0.98rem;
	color: var(--th-text);
}

.th-thankyou__body .shop_table,
.th-thankyou__body .woocommerce-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border: 0;
}

.th-thankyou__body .shop_table th,
.th-thankyou__body .shop_table td,
.th-thankyou__body .woocommerce-table th,
.th-thankyou__body .woocommerce-table td {
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid var(--th-border);
	background: transparent;
	font-size: 14px;
	vertical-align: top;
}

.th-thankyou__body .shop_table thead th,
.th-thankyou__body .woocommerce-table thead th {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--th-text-light);
}

.th-thankyou__body .shop_table tfoot th,
.th-thankyou__body .woocommerce-table tfoot th {
	text-align: left;
	font-weight: 600;
	color: var(--th-text-muted);
}

.th-thankyou__body .shop_table .product-total,
.th-thankyou__body .shop_table tfoot td,
.th-thankyou__body .woocommerce-table .product-total,
.th-thankyou__body .woocommerce-table tfoot td {
	text-align: right;
	font-weight: 700;
}

.th-thankyou__body .shop_table .order-total th,
.th-thankyou__body .shop_table .order-total td,
.th-thankyou__body .woocommerce-table .order-total th,
.th-thankyou__body .woocommerce-table .order-total td {
	border-bottom: 0;
	padding-top: 16px;
	font-size: 1.05rem;
	color: var(--th-text);
}

.th-thankyou__body .shop_table .order-total td,
.th-thankyou__body .woocommerce-table .order-total td {
	color: #d4a64a;
}

.th-thankyou__body .woocommerce-customer-details address {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	line-height: 1.7;
	color: var(--th-text-muted);
}

.th-thankyou__back {
	margin: 8px 0 0;
	text-align: center;
}

.th-thankyou__back .th-btn {
	background: #d4a64a;
	color: #0a0a0a !important;
}

.th-thankyou__back .th-btn:hover {
	background: #f5cd79;
}

.th-thankyou__panel--error {
	padding: 28px;
	border: 1px solid #f0c9c5;
	background: #fff7f6;
}

.th-thankyou__panel--error .th-thankyou__title {
	margin: 0 0 10px;
	font-size: 1.3rem;
	font-weight: 700;
	color: #c0524a;
}

.th-thankyou__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 0;
}

/* Hide default WC success notice duplicate if any leftover */
.th-thankyou .woocommerce-thankyou-order-received {
	display: none;
}

.th-thankyou .woocommerce-bacs-bank-details,
.th-thankyou .wc-bacs-bank-details-heading {
	margin-top: 0;
}

@media (max-width: 768px) {
	.th-thankyou__overview,
	.th-thankyou__customer-list {
		grid-template-columns: 1fr 1fr;
	}

	.th-thankyou__hero,
	.th-thankyou__customer,
	.th-thankyou__body .woocommerce-order-details,
	.th-thankyou__body .woocommerce-customer-details {
		padding: 22px 18px;
	}
}

@media (max-width: 520px) {
	.th-thankyou__overview,
	.th-thankyou__customer-list {
		grid-template-columns: 1fr;
	}
}
