/* stylelint-disable no-descending-specificity */

:root {
	--surface: #f6faff;
	--surface-lowest: #fff;
	--surface-low: #f0f4fa;
	--surface-container: #eaeef4;
	--surface-high: #e4e8ee;
	--surface-highest: #dee3e9;
	--surface-dim: #d6dae0;
	--on-surface: #171c20;
	--on-muted: #3e4850;
	--inverse-surface: #2c3135;
	--inverse-on-surface: #edf1f7;
	--outline: #6e7881;
	--outline-soft: #bec8d2;
	--primary: #006591;
	--primary-bright: #0ea5e9;
	--primary-soft: #c9e6ff;
	--secondary: #515f74;
	--secondary-soft: #d5e3fc;
	--tertiary: #8a5100;
	--tertiary-bright: #de8712;
	--success: #10b981;
	--shadow: 0 4px 20px rgba(23, 28, 32, 0.08);
	--radius: 8px;
	--radius-lg: 16px;
	--container: 1280px;
}

* {
	box-sizing: border-box;
}

body.ts-body {
	margin: 0;
	background: var(--surface);
	color: var(--on-surface);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

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

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

h1,
h2,
h3 {
	font-family: "Hanken Grotesk", Inter, sans-serif;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0;
}

h1 {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 800;
}

h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
}

h3 {
	font-size: 1.35rem;
	font-weight: 700;
}

p {
	margin: 0;
}

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

.container.narrow {
	max-width: 880px;
}

.site-header {
	backdrop-filter: blur(12px);
	background: rgba(246, 250, 255, 0.88);
	box-shadow: 0 1px 10px rgba(23, 28, 32, 0.08);
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 1000;
}

.wp-site-blocks > header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 1000;
}

body.admin-bar .site-header {
	top: 32px;
}

body.admin-bar .wp-site-blocks > header.wp-block-template-part {
	top: 32px;
}

@media (max-width: 782px) {

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

	body.admin-bar .wp-site-blocks > header.wp-block-template-part {
		top: 46px;
	}
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	height: 80px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 24px;
}

.brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
	font-weight: 800;
	min-width: max-content;
}

.brand-logo-link {
	align-items: center;
	display: inline-flex;
	height: 48px;
	line-height: 1;
	width: 176px;
}

.brand-logo {
	height: 48px !important;
	max-height: 48px;
	object-fit: contain;
	object-position: left center;
	width: 176px;
}

.brand-mark {
	align-items: center;
	background: var(--primary);
	border-radius: var(--radius);
	color: #fff;
	display: inline-flex;
	font-family: "Hanken Grotesk", Inter, sans-serif;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.custom-logo {
	max-height: 44px;
	width: auto;
}

.brand-name {
	color: var(--primary);
	font-family: "Hanken Grotesk", Inter, sans-serif;
	font-size: 1.5rem;
}

.primary-nav,
.primary-menu,
.header-actions {
	align-items: center;
	display: flex;
	gap: 24px;
}

.header-actions {
	gap: 12px;
}

.header-action-buttons,
.header-action-icons {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.header-action-icon {
	align-items: center;
	background: transparent;
	border-radius: var(--radius);
	color: var(--primary);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.header-action-icon:hover,
.header-action-icon:focus-visible {
	background: var(--surface-low);
	outline: none;
}

.header-action-icon:focus-visible {
	box-shadow: 0 0 0 3px var(--primary-soft);
}

.header-action-icon .material-symbols-outlined {
	font-size: 1.45rem;
}

.site-header .wp-block-woocommerce-customer-account,
.site-header .wc-block-mini-cart {
	display: none !important;
}

.header-search {
	align-items: center;
	display: inline-flex;
	margin: 0;
	position: relative;
}

.header-search__toggle,
.header-search .wp-block-search__button {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: var(--radius);
	color: var(--primary);
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 44px;
}

.header-search__toggle:hover,
.header-search__toggle:focus-visible,
.header-search .wp-block-search__button:hover,
.header-search .wp-block-search__button:focus-visible {
	background: var(--surface-low);
	outline: none;
}

.header-search__toggle:focus-visible,
.header-search .wp-block-search__button:focus-visible {
	box-shadow: 0 0 0 3px var(--primary-soft);
}

.header-search__input,
.header-search .wp-block-search__input {
	background: var(--surface-lowest);
	border: 2px solid var(--primary-soft);
	border-radius: var(--radius);
	box-shadow: 0 8px 20px rgba(23, 28, 32, 0.14);
	color: var(--on-surface);
	font: 600 0.95rem/1.2 Inter, sans-serif;
	height: 44px;
	margin: 0;
	opacity: 0;
	padding: 0 14px;
	pointer-events: none;
	position: absolute;
	right: 48px;
	top: 50%;
	transform: translateY(-50%) scaleX(0.94);
	transform-origin: right center;
	transition: opacity 160ms ease, transform 160ms ease, width 160ms ease;
	width: 0;
}

.header-search__input::placeholder,
.header-search .wp-block-search__input::placeholder {
	color: var(--on-muted);
	opacity: 0.8;
}

.header-search.is-open .header-search__input,
.header-search.wp-block-search.is-open .wp-block-search__input {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-50%) scaleX(1);
	width: min(240px, calc(100vw - 160px));
}

.header-search__input:focus,
.header-search .wp-block-search__input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-soft);
	outline: none;
}

.header-search.wp-block-search {
	display: inline-flex;
	flex-basis: auto;
	position: relative;
	width: 44px;
}

.header-search.wp-block-search .wp-block-search__inside-wrapper {
	border: 0;
	display: inline-flex;
	padding: 0;
	width: 44px;
}

.header-search.wp-block-search .wp-block-search__button {
	font-size: 0;
	min-width: 44px;
	order: 2;
}

.header-search.wp-block-search .wp-block-search__button svg {
	fill: currentColor;
	height: 22px;
	min-height: 22px;
	min-width: 22px;
	width: 22px;
}

.primary-menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li {
	display: inline-flex;
}

.nav-link,
.primary-menu a {
	color: var(--secondary);
	font-weight: 600;
}

.nav-link:hover,
.primary-menu a:hover {
	color: var(--primary);
}

.button,
button.button,
.added_to_cart,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button,
.wp-block-button__link {
	align-items: center;
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
	display: inline-flex;
	font: 700 0.95rem/1 Inter, sans-serif;
	gap: 8px;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover,
.wp-block-button__link:hover {
	transform: translateY(-1px);
}

.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button:not(.is-link),
.wp-block-button__link {
	background: var(--primary);
	color: #fff;
}

.product-card__actions .button-ghost,
.ts-product-box .button-primary,
.is-style-section-dark .button-primary {
	background: var(--success);
	color: #fff;
}

.woocommerce ul.products li.product.product-card .product-card__actions .button-ghost {
	background: var(--success);
	color: #fff;
}

.woocommerce ul.products li.product.product-card .product-card__actions .button-ghost:hover {
	background: #0f9f72;
	color: #fff;
}

.wc-block-components-button:not(.is-link):hover,
.wp-block-button__link:hover {
	background: #004f73;
	box-shadow: 0 10px 24px rgba(0, 101, 145, 0.22);
	color: #fff;
}

.wc-block-components-button:not(.is-link):focus-visible,
.wp-block-button__link:focus-visible {
	box-shadow: 0 0 0 3px var(--primary-soft);
	outline: 2px solid transparent;
}

.button-ghost {
	background: transparent;
	color: var(--primary);
}

.button-ghost:hover {
	background: var(--surface-low);
}

.button-small {
	min-height: 38px;
	padding: 10px 14px;
}

.wp-block-button.is-style-secondary .wp-block-button__link,
.button-secondary {
	background: var(--secondary);
	color: #fff;
}

.wp-block-button.is-style-ghost .wp-block-button__link,
.wp-block-button.is-style-ghost .wp-block-button__link:hover {
	background: transparent;
	color: var(--primary);
}

.wp-block-woocommerce-cart .wc-block-cart__submit,
.wp-block-woocommerce-cart .wc-block-cart__submit-container,
.wc-block-cart__submit,
.wc-block-cart__submit-container {
	margin-top: 32px;
	width: 100%;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button,
.wc-block-cart__submit-button {
	font-size: 1rem;
	font-weight: 800;
	min-height: 56px;
	width: 100%;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button::after,
.wc-block-cart__submit-button::after {
	content: "arrow_forward";
	font-family: "Material Symbols Outlined", sans-serif;
	font-size: 1.35rem;
	font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
	line-height: 1;
}

.material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
	line-height: 1;
}

.hero {
	overflow: hidden;
	padding: 88px 0 72px;
	position: relative;
	text-align: center;
}

.hero::before {
	background: radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.24), transparent 42%);
	content: "";
	inset: 0;
	position: absolute;
}

.hero__inner {
	position: relative;
	z-index: 1;
}

.eyebrow,
.post-badge {
	align-items: center;
	background: var(--secondary-soft);
	border-radius: 999px;
	color: #57657a;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 800;
	gap: 6px;
	letter-spacing: 0.04em;
	margin-bottom: 36px;
	padding: 8px 20px;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0 auto 24px;
	max-width: 820px;
}

.hero p {
	color: var(--on-muted);
	font-size: 1.125rem;
	margin: 0 auto 48px;
	max-width: 700px;
}

.hero-search,
.shop-search,
.newsletter-form {
	align-items: center;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(190, 200, 210, 0.55);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	display: flex;
	gap: 12px;
	margin: 0 auto;
	max-width: 720px;
	padding: 8px;
}

.hero-search input,
.shop-search input,
.newsletter-form input {
	background: transparent;
	border: 0;
	color: var(--on-surface);
	flex: 1;
	font: inherit;
	min-width: 0;
	outline: 0;
	padding: 14px 8px;
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 24px;
}

.hero-tags a,
.text-link {
	align-items: center;
	color: var(--primary);
	display: inline-flex;
	font-weight: 700;
	gap: 6px;
}

.category-band,
.shop-hero {
	background: var(--surface-lowest);
	padding: 48px 0;
}

.category-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 2fr 1fr 1fr;
}

.category-tile {
	border-radius: var(--radius-lg);
	color: #003751;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	overflow: hidden;
	padding: 48px;
	position: relative;
}

.category-tile > .material-symbols-outlined {
	font-size: 88px;
	opacity: 0.22;
	position: absolute;
	right: 24px;
	top: 24px;
}

.category-tile--large {
	background: var(--primary-bright);
}

.category-tile--secondary {
	background: var(--secondary-soft);
	color: #57657a;
}

.category-tile--tertiary {
	background: var(--tertiary-bright);
	color: #4d2b00;
}

.section {
	padding-bottom: 80px;
	padding-top: 80px;
}

.section-heading,
.shop-toolbar,
.product-card__footer {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.section-heading {
	margin-bottom: 48px;
}

.section-heading p {
	color: var(--on-muted);
	margin-top: 8px;
}

.product-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	width: 100%;
}

.woocommerce ul.products {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.shop-layout > .woocommerce {
	max-width: 100%;
	width: 100%;
}

.shop-layout .woocommerce ul.products.columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.woocommerce ul.products li.product {
	float: none;
	margin: 0;
	min-width: 0;
	width: auto;
}

.woocommerce ul.products.columns-3 li.product.product-card,
.woocommerce-page ul.products.columns-3 li.product.product-card {
	margin: 0;
	width: 100%;
}

.woocommerce ul.products li.product.product-card .button {
	display: inline-flex;
	margin-top: 0;
}

.product-card {
	background: var(--surface-lowest);
	border: 1px solid rgba(190, 200, 210, 0.42);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
	box-shadow: 0 10px 28px rgba(23, 28, 32, 0.12);
	transform: translateY(-2px);
}

.product-card__media {
	align-items: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--primary-soft), var(--surface-low));
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.product-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.product-card__media .material-symbols-outlined {
	color: var(--primary);
	font-size: 64px;
}

.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 24px;
}

.product-card__body h2,
.product-card__body h3 {
	font-size: 1.2rem;
	overflow-wrap: anywhere;
}

.product-card__body p {
	color: var(--on-muted);
	flex: 1;
}

.product-card__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.product-card__actions br {
	display: none;
}

.product-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.chip {
	background: #e0f2fe;
	border-radius: 999px;
	color: var(--primary);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	max-width: 100%;
	overflow-wrap: anywhere;
	padding: 5px 10px;
}

.product-rating {
	align-items: center;
	color: var(--tertiary-bright);
	display: flex;
	gap: 2px;
}

.product-rating span:last-child {
	color: var(--on-muted);
	font-size: 0.9rem;
	margin-left: 6px;
}

.star {
	font-size: 18px;
}

.star.filled {
	font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.partner-cta {
	background: var(--primary-bright);
	color: #003751;
	padding: 64px 0;
}

.partner-cta__inner {
	align-items: center;
	display: flex;
	gap: 32px;
	justify-content: space-between;
}

.partner-cta p {
	max-width: 680px;
}

.eyebrow-text {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.shop-hero__inner {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr) 360px;
	padding-top: 48px;
}

.shop-hero p {
	color: var(--on-muted);
	font-size: 1.125rem;
	margin-top: 16px;
	max-width: 680px;
}

.shop-hero__visual {
	align-items: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--primary-soft), #fff);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: center;
}

.shop-hero__visual .material-symbols-outlined {
	color: var(--primary);
	font-size: 96px;
}

.shop-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr);
	padding-bottom: 80px;
	padding-top: 80px;
}

.shop-sidebar,
.content-sidebar,
.product-meta-card,
.content-card {
	background: var(--surface-lowest);
	border: 1px solid rgba(190, 200, 210, 0.45);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.shop-sidebar,
.content-sidebar,
.product-meta-card {
	align-self: start;
	padding: 24px;
}

.shop-sidebar {
	box-shadow: none;
	margin-bottom: 8px;
	padding: 18px 20px;
}

.shop-sidebar .widget {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.shop-sidebar .widget + .widget {
	margin-top: 18px;
}

.shop-sidebar .sidebar-title,
.shop-sidebar .widget h2,
.shop-sidebar .widget h3 {
	flex: 0 0 auto;
	margin: 0;
}

.shop-sidebar .widget ul {
	align-items: center;
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 8px;
}

.shop-sidebar .widget li {
	margin: 0;
}

.shop-sidebar .widget a {
	background: var(--surface-low);
	border: 1px solid rgba(190, 200, 210, 0.7);
	border-radius: 999px;
	color: var(--secondary);
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 8px 12px;
}

.shop-sidebar .widget a:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.widget + .widget {
	margin-top: 32px;
}

.sidebar-title {
	color: var(--outline);
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

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

.widget li + li {
	margin-top: 10px;
}

.shop-toolbar {
	margin-bottom: 24px;
}

.shop-products {
	min-width: 0;
	width: 100%;
}

.shop-search {
	box-shadow: none;
	margin: 0;
	max-width: 420px;
	width: 100%;
}

.woocommerce-result-count {
	color: var(--on-muted);
	margin: 0 0 24px;
}

.woocommerce-ordering select {
	background: var(--surface-lowest);
	border: 1px solid var(--outline-soft);
	border-radius: var(--radius);
	color: var(--on-surface);
	font: inherit;
	padding: 11px 14px;
}

.woocommerce-pagination,
.wp-block-query-pagination,
.page-links,
.nav-links {
	margin-top: 72px;
}

.woocommerce-pagination ul,
.wp-block-query-pagination,
.page-links,
.nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span,
.wp-block-query-pagination a,
.wp-block-query-pagination span,
.page-links a,
.page-links span,
.nav-links a,
.nav-links span {
	align-items: center;
	background: var(--surface-low);
	border: 1px solid var(--outline-soft);
	border-radius: 10px;
	color: var(--secondary);
	display: inline-flex;
	font-size: 1.15rem;
	font-weight: 700;
	height: 58px;
	justify-content: center;
	min-width: 58px;
	padding: 0 12px;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.woocommerce-pagination a:hover,
.wp-block-query-pagination a:hover,
.page-links a:hover,
.nav-links a:hover {
	background: var(--surface-lowest);
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-1px);
}

.woocommerce-pagination .current,
.wp-block-query-pagination .current,
.wp-block-query-pagination [aria-current="page"],
.page-links .current,
.nav-links .current,
.nav-links [aria-current="page"] {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.woocommerce-pagination .prev,
.woocommerce-pagination .next,
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next,
.nav-links .prev,
.nav-links .next {
	background: var(--surface-low);
	color: var(--primary);
	font-size: 1.1rem;
}

.woocommerce-pagination .dots,
.wp-block-query-pagination .dots,
.page-links .dots,
.nav-links .dots {
	background: transparent;
	border-color: transparent;
	color: var(--outline);
	min-width: 26px;
	padding: 0;
}

.woocommerce nav.woocommerce-pagination ul {
	align-items: center;
	border: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	float: none;
	margin: 0;
	overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	align-items: center;
	background: var(--surface-low);
	border: 1px solid var(--outline-soft);
	border-radius: 10px;
	color: var(--secondary);
	display: inline-flex;
	font-size: 1.15rem;
	font-weight: 700;
	height: 58px;
	justify-content: center;
	line-height: 1;
	min-width: 58px;
	padding: 0 12px;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
	background: var(--surface-lowest);
	border-color: var(--primary);
	color: var(--primary);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li span.dots {
	background: transparent;
	border-color: transparent;
	color: var(--outline);
	min-width: 26px;
}

.product-detail {
	padding-bottom: 80px;
	padding-top: 48px;
}

.breadcrumbs {
	color: var(--on-muted);
	margin-bottom: 24px;
}

.breadcrumbs a {
	color: var(--primary);
	font-weight: 700;
}

.product-hero-card {
	background: var(--surface-lowest);
	border: 1px solid rgba(190, 200, 210, 0.45);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) 380px;
	margin-bottom: 48px;
	padding: 48px;
}

.product-hero-card__summary {
	display: flex;
	gap: 32px;
}

.product-icon {
	align-items: center;
	background: var(--surface-low);
	border-radius: var(--radius-lg);
	display: flex;
	flex: 0 0 128px;
	height: 128px;
	justify-content: center;
	overflow: hidden;
}

.product-icon .material-symbols-outlined {
	color: var(--primary);
	font-size: 64px;
}

.product-short-description {
	color: var(--on-muted);
	font-size: 1.125rem;
	margin: 18px 0;
	max-width: 760px;
}

.product-rating--large {
	margin: 12px 0;
}

.buy-box {
	background: var(--surface-low);
	border: 1px solid rgba(190, 200, 210, 0.3);
	border-radius: var(--radius-lg);
	padding: 24px;
}

.buy-box__label {
	color: var(--on-muted);
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
}

.buy-box__price {
	font-family: "Hanken Grotesk", Inter, sans-serif;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.buy-box form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.quantity input {
	background: #fff;
	border: 1px solid var(--outline-soft);
	border-radius: var(--radius);
	min-height: 44px;
	padding: 8px;
	width: 72px;
}

.buy-box__features {
	color: var(--on-muted);
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.buy-box__features li {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.buy-box__features .material-symbols-outlined {
	color: var(--primary);
}

.product-content-layout {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.content-card {
	padding: 32px;
}

.content-card h1,
.content-card h2 {
	margin-bottom: 20px;
}

.entry-content,
.article-content,
.product-description {
	color: var(--on-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.entry-content > * + *,
.article-content > * + *,
.product-description > * + * {
	margin-top: 1.25rem;
}

.wp-site-blocks {
	min-height: 100vh;
}

.is-style-section-surface,
.ts-pattern-hero {
	background: var(--surface);
	padding-bottom: 80px;
	padding-top: 80px;
}

.is-style-section-white {
	background: var(--surface-lowest);
	border: 1px solid rgba(190, 200, 210, 0.42);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.is-style-section-dark {
	background: var(--secondary-soft);
	color: var(--on-surface);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
	padding-right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
	width: 100vw;
}

.is-style-section-dark a {
	color: var(--on-surface);
}

.is-style-section-dark > .alignwide {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--container);
	width: 100%;
}

.is-style-section-dark .wp-block-heading {
	color: var(--on-surface);
}

.wp-block-list.is-style-checklist {
	list-style: none;
	padding-left: 0;
}

.wp-block-list.is-style-checklist li {
	padding-left: 30px;
	position: relative;
}

.wp-block-list.is-style-checklist li + li {
	margin-top: 12px;
}

.wp-block-list.is-style-checklist li::before {
	color: var(--success);
	content: "check_circle";
	font-family: "Material Symbols Outlined", sans-serif;
	font-size: 20px;
	font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 2px;
}

.wp-block-image.is-style-screenshot-frame img,
.is-style-screenshot-frame img {
	background: var(--surface-lowest);
	border: 1px solid rgba(190, 200, 210, 0.52);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 8px;
}

.wp-block-table.is-style-comparison-table table {
	background: var(--surface-lowest);
	border-collapse: collapse;
	border-radius: var(--radius);
	overflow: hidden;
	width: 100%;
}

.wp-block-table.is-style-comparison-table th,
.wp-block-table.is-style-comparison-table td {
	border: 1px solid var(--outline-soft);
	padding: 14px 16px;
	text-align: left;
}

.wp-block-table.is-style-comparison-table th {
	background: var(--surface-low);
}

.ts-product-box {
	background: var(--surface-lowest);
	border: 1px solid rgba(190, 200, 210, 0.52);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 28px;
}

.ts-product-box__summary {
	margin-bottom: 20px;
}

.ts-product-box__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 18px 0;
}

.ts-product-price,
.ts-product-box .amount {
	color: var(--on-surface);
	display: block;
	font-family: "Hanken Grotesk", Inter, sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 8px 0 18px;
}

.ts-product-price-label,
.ts-product-short-description {
	color: var(--on-muted);
}

.ts-product-license-info {
	color: var(--on-muted);
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.ts-product-license-info li {
	padding-left: 28px;
	position: relative;
}

.ts-product-license-info li + li {
	margin-top: 10px;
}

.ts-product-license-info li::before {
	color: var(--primary);
	content: "verified";
	font-family: "Material Symbols Outlined", sans-serif;
	font-size: 18px;
	font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
	left: 0;
	position: absolute;
	top: 1px;
}

.ts-language-switcher {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.ts-language-switcher a {
	border: 1px solid var(--outline-soft);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 800;
	padding: 6px 10px;
}

.ts-language-switcher .is-active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.tsmt-admin-notice {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: var(--radius);
	color: #7c2d12;
	padding: 12px 14px;
}

.woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--outline-soft);
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 32px 0 24px;
	padding: 0;
}

.woocommerce-tabs ul.tabs a {
	color: var(--on-muted);
	display: inline-flex;
	font-weight: 800;
	padding: 14px 0;
}

.woocommerce-tabs ul.tabs .active a {
	border-bottom: 2px solid var(--primary);
	color: var(--primary);
}

.related-products-section {
	padding-bottom: 0;
}

.post-hero {
	height: 50vh;
	min-height: 420px;
	overflow: hidden;
	position: relative;
}

.post-hero__image {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-hero::before {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.post-hero__overlay {
	align-items: flex-end;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 48px 24px;
	position: absolute;
	text-align: center;
	z-index: 2;
}

.post-hero__content {
	color: #fff;
	max-width: 840px;
}

.post-badge {
	background: var(--primary);
	color: #fff;
	margin-bottom: 24px;
}

.post-meta {
	align-items: center;
	color: var(--surface-high);
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 16px;
}

.post-meta span {
	align-items: center;
	display: inline-flex;
	gap: 6px;
}

.two-column {
	display: grid;
	gap: 80px;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	padding-bottom: 80px;
	padding-top: 80px;
}

.mini-product {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.mini-product .material-symbols-outlined {
	align-items: center;
	background: rgba(14, 165, 233, 0.1);
	border-radius: var(--radius);
	color: var(--primary);
	display: inline-flex;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.page-stack {
	padding-bottom: 80px;
	padding-top: 80px;
}

.site-footer {
	background: #171c20;
	color: #edf1f7;
	margin-top: 80px;
	padding: 56px 0;
}

.site-footer__inner {
	display: grid;
	gap: 48px;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 24px;
}

.site-footer p {
	color: #bec8d2;
	margin-top: 16px;
	max-width: 420px;
}

.site-footer h3 {
	font-size: 1rem;
	margin-bottom: 16px;
}

.footer-menu a,
.site-footer .brand-name,
.site-footer .nav-link {
	color: #bec8d2;
}

.newsletter-form {
	box-shadow: none;
	margin: 0;
}

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

@media (max-width: 980px) {

	.primary-nav {
		display: none;
	}

	.category-grid,
	.product-grid,
	.shop-hero__inner,
	.shop-layout,
	.product-hero-card,
	.product-content-layout,
	.two-column,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.shop-layout .woocommerce ul.products.columns-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-hero-card__summary,
	.partner-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {

	.container,
	.site-header__inner,
	.site-footer__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.brand-name {
		display: none;
	}

	.header-actions {
		gap: 8px;
	}

	.header-search.is-open .header-search__input,
	.header-search.wp-block-search.is-open .wp-block-search__input {
		left: 48px;
		position: absolute;
		right: auto;
		top: 50%;
		transform: translateY(-50%) scaleX(1);
		transform-origin: left center;
		width: calc(100vw - 132px);
	}

	body.admin-bar .header-search.is-open .header-search__input,
	body.admin-bar .header-search.wp-block-search.is-open .wp-block-search__input {
		top: 50%;
	}

	.hero-search,
	.shop-toolbar,
	.newsletter-form {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-search .material-symbols-outlined,
	.shop-search .material-symbols-outlined {
		display: none;
	}

	.category-tile,
	.product-hero-card,
	.content-card {
		padding: 24px;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

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

	.shop-layout .woocommerce ul.products.columns-3 {
		grid-template-columns: 1fr;
	}

	.post-hero {
		min-height: 520px;
	}
}
