/*
 * Trooper Mom Store — original layout/CSS (Sidecar-inspired: sidebar + main).
 * Brand: police blue accent, clean product grid.
 */

:root {
	--tm-blue: #0056b3;
	--tm-blue-dark: #003d80;
	--tm-bg: #fafafa;
	--tm-surface: #ffffff;
	--tm-text: #1a1a1a;
	--tm-muted: #5c5c5c;
	--tm-border: #e8e8e8;
	--tm-sidebar-w: 280px;
	--tm-font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
	--tm-pad-x: max(1rem, env(safe-area-inset-left, 0px));
	--tm-pad-x-end: max(1rem, env(safe-area-inset-right, 0px));
}

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--tm-font);
	font-size: 1rem;
	line-height: 1.55;
	color: var(--tm-text);
	background: var(--tm-bg);
}

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

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

a {
	color: var(--tm-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover {
	color: var(--tm-blue-dark);
}

.tm-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 100000;
	padding: 0.5rem 1rem;
	background: var(--tm-surface);
	border: 1px solid var(--tm-border);
}

.tm-skip-link:focus {
	left: 0.5rem;
	top: 0.5rem;
}

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

/* —— Mobile top bar —— */
.tm-mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.65rem var(--tm-pad-x-end) 0.65rem var(--tm-pad-x);
	background: #0a0a0a;
	border-bottom: 3px solid var(--tm-blue);
	position: sticky;
	top: 0;
	z-index: 50;
}

@media (min-width: 960px) {
	.tm-mobile-header {
		display: none;
	}
}

.tm-menu-toggle {
	appearance: none;
	border: 0;
	background: transparent;
	color: #fff;
	padding: 0.35rem;
	cursor: pointer;
}

.tm-menu-toggle-box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.tm-menu-toggle-line {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
}

.tm-mobile-logo img {
	display: block;
	max-height: calc(44px * 1.3);
	width: auto;
}

.tm-mobile-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #fff;
	text-decoration: none;
}

.tm-mobile-cart:hover {
	color: #e8e8e8;
}

.tm-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	padding: 0 4px;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	background: var(--tm-blue);
	color: #fff;
	border-radius: 999px;
}

/* —— Backdrop —— */
.tm-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 60;
}

.tm-backdrop[hidden] {
	display: none;
}

@media (min-width: 960px) {
	.tm-backdrop {
		display: none !important;
	}
}

/* —— Shell: sidebar + main —— */
.tm-wrapper {
	display: flex;
	min-height: 100vh;
}

@media (max-width: 959px) {
	.tm-wrapper {
		display: block;
	}

	.tm-main {
		width: 100%;
		min-width: 0;
	}
}

.tm-sidebar {
	flex: 0 0 var(--tm-sidebar-w);
	max-width: var(--tm-sidebar-w);
	background: #0a0a0a;
	color: #f2f2f2;
	border-right: 1px solid #222;
	position: relative;
}

.tm-sidebar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tm-blue) 0%, var(--tm-blue) 35%, transparent 100%);
	pointer-events: none;
}

.tm-sidebar-inner {
	padding: 1.75rem 1.25rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-height: 100%;
}

.tm-sidebar-close {
	display: none;
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 959px) {
	.tm-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 70;
		max-width: min(var(--tm-sidebar-w), 88vw);
		transform: translateX(-100%);
		transition: transform 0.2s ease;
		overflow-y: auto;
		box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
	}

	body.tm-nav-open .tm-sidebar {
		transform: translateX(0);
	}

	.tm-sidebar-close {
		display: block;
	}
}

.tm-sidebar-brand {
	padding-right: 1.5rem;
}

.tm-logo {
	display: block;
	text-decoration: none;
}

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

.tm-tagline {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	line-height: 1.4;
	color: #b8b8b8;
}

.tm-sidebar-nav {
	flex: 1;
}

.tm-sidebar-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.tm-sidebar-links a {
	display: block;
	padding: 0.35rem 0;
	color: #f2f2f2;
	text-decoration: none;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

.tm-sidebar-links a:hover,
.tm-sidebar-links .current-menu-item > a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: var(--tm-blue);
	text-underline-offset: 4px;
}

.tm-sidebar-cart {
	padding-top: 0.5rem;
	border-top: 1px solid #2a2a2a;
}

.tm-cart-link {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.65rem 0.75rem;
	background: #141414;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	text-decoration: none;
	color: #fff;
}

.tm-cart-link:hover {
	border-color: var(--tm-blue);
}

.tm-cart-label {
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tm-cart-meta {
	font-size: 0.8rem;
	color: #c4c4c4;
}

/* —— Main column —— */
.tm-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: var(--tm-bg);
}

.tm-content {
	flex: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.25rem var(--tm-pad-x-end) 2.5rem var(--tm-pad-x);
	box-sizing: border-box;
}

@media (min-width: 960px) {
	.tm-content {
		padding: 1.5rem 1.25rem 3rem;
	}
}

.tm-home-intro,
.tm-home-intro.tm-entry-content {
	max-width: 100%;
}

.tm-home-intro img,
.tm-home-intro figure,
.tm-home-intro .wp-block-image {
	max-width: 100%;
	height: auto;
}

/* Elementor (front page): boxed containers + widget widths from the editor */
@media (max-width: 959px) {
	.tm-home-intro .e-con-boxed .e-con-inner {
		max-width: 100% !important;
	}

	.tm-home-intro .elementor-widget__width-initial {
		max-width: 100% !important;
		width: 100% !important;
	}

	.tm-home-intro .elementor img {
		width: 100%;
		height: auto;
	}

	/* %-width image widgets + flex-end alignment leave empty margin on phones */
	.tm-home-intro .elementor-widget-image.elementor-element {
		max-width: 100% !important;
		width: 100% !important;
		--container-widget-width: 100% !important;
		--align-self: stretch !important;
	}
}

.tm-content--narrow {
	max-width: 720px;
}

/* —— About page (card + type rhythm aligned with product summary) —— */
.tm-about {
	padding-top: 1.5rem;
}

@media (min-width: 960px) {
	.tm-about {
		padding-top: 2rem;
	}
}

.tm-about__card {
	background: var(--tm-surface);
	border: 1px solid var(--tm-border);
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	padding: 1.5rem 1.35rem 2rem;
	max-width: 100%;
}

@media (min-width: 600px) {
	.tm-about__card {
		padding: 2rem 2.25rem 2.35rem;
	}
}

.tm-about__header {
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--tm-border);
}

.tm-about__eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tm-blue);
}

.tm-about__title {
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
	font-weight: 650;
	color: var(--tm-text);
}

.tm-about__body {
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--tm-text);
}

.tm-about__body p {
	margin: 0 0 1.1rem;
}

.tm-about__body p:last-child {
	margin-bottom: 0;
}

.tm-about__body .tm-about-motto {
	margin-top: 1.6rem;
	margin-bottom: 0;
	padding: 1.15rem 1.25rem 1.2rem;
	background: linear-gradient(135deg, rgba(0, 86, 179, 0.07) 0%, rgba(0, 86, 179, 0.02) 100%);
	border-left: 4px solid var(--tm-blue);
	border-radius: 0 8px 8px 0;
	font-weight: 650;
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--tm-text);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.tm-blog-index {
	max-width: 720px;
	margin-top: 2.5rem;
}

.tm-page-title,
.tm-section-title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 650;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}

.tm-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 2rem 0 1rem;
}

.tm-section-head .tm-section-title {
	margin: 0;
}

.tm-text-link {
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--tm-blue);
}

.tm-text-link:hover {
	text-decoration: underline;
}

.tm-entry-content > *:first-child {
	margin-top: 0;
}

.tm-entry-content > *:last-child {
	margin-bottom: 0;
}

.tm-notice {
	padding: 1rem;
	background: #fff8e6;
	border: 1px solid #f0e0a8;
	border-radius: 4px;
	color: #5c4a00;
}

.tm-loop-title {
	font-size: 1.2rem;
	margin: 1.5rem 0 0.35rem;
}

.tm-loop-title a {
	text-decoration: none;
	color: var(--tm-text);
}

.tm-loop-title a:hover {
	color: var(--tm-blue);
}

.tm-meta {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
	color: var(--tm-muted);
}

/* —— Site footer —— */
.tm-site-footer {
	margin-top: auto;
	padding: 2rem 1.25rem;
	border-top: 1px solid var(--tm-border);
	background: var(--tm-surface);
}

.tm-footer-links {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.tm-footer-links a {
	text-decoration: none;
	color: var(--tm-muted);
	font-size: 0.9rem;
}

.tm-footer-links a:hover {
	color: var(--tm-text);
}

.tm-credit {
	margin: 0;
	font-size: 0.85rem;
	color: var(--tm-muted);
}

.tm-credit a {
	color: inherit;
	text-decoration: none;
}

.tm-credit a:hover {
	text-decoration: underline;
}

/* —— WooCommerce: grid & cards (simplified Sidecar-like) —— */
.tm-woo .woocommerce-breadcrumb {
	font-size: 0.8rem;
	color: var(--tm-muted);
	margin-bottom: 1rem;
}

.tm-woo .woocommerce-breadcrumb a {
	color: var(--tm-muted);
}

.tm-woo .woocommerce-products-header__title.page-title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin: 0 0 1rem;
}

.tm-woo ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 480px) {
	.tm-woo ul.products {
		grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
		gap: 1rem;
	}
}

.tm-woo ul.products::before,
.tm-woo ul.products::after {
	display: none;
}

.tm-woo ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	padding: 0;
	background: var(--tm-surface);
	border: 1px solid var(--tm-border);
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.tm-woo ul.products li.product:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
	border-color: #d0d0d0;
}

.tm-woo ul.products li.product a.woocommerce-LoopProduct-link {
	text-decoration: none;
	color: inherit;
}

.tm-woo ul.products li.product img {
	width: 100%;
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
	background: #eee;
}

.tm-woo ul.products li.product .woocommerce-loop-product__title {
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.75rem 0.85rem 0.25rem;
	margin: 0;
	line-height: 1.35;
}

.tm-woo ul.products li.product .price {
	display: block;
	padding: 0 0.85rem 0.85rem;
	font-size: 0.9rem;
	color: var(--tm-muted);
}

.tm-woo ul.products li.product .button {
	margin: 0 0.85rem 0.85rem;
	display: inline-block;
	padding: 0.45rem 0.85rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 3px;
	background: var(--tm-blue);
	color: #fff !important;
	border: 0;
	text-decoration: none;
}

.tm-woo ul.products li.product .button:hover {
	background: var(--tm-blue-dark);
}

/* Single product */
body.single-product .tm-woo .woocommerce-breadcrumb {
	margin-bottom: 0.5rem;
}

.tm-woo .tm-product-layout {
	max-width: 1100px;
	margin: 0 auto;
}

body.single-product .tm-woo .summary,
body.single-product .tm-woo div.images {
	float: none;
	width: 100%;
}

body.single-product .tm-woo div.product {
	display: grid;
	gap: 0.75rem;
	align-items: start;
}

@media (min-width: 768px) {
	body.single-product .tm-woo div.product {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		column-gap: 1.15rem;
	}
}

body.single-product .tm-woo div.images {
	margin-bottom: 0;
}

body.single-product .tm-woo .woocommerce-product-gallery {
	border-radius: 8px;
	overflow: hidden;
	background: var(--tm-surface);
	border: 1px solid var(--tm-border);
	margin-bottom: 0;
}

body.single-product .tm-woo .woocommerce-product-gallery__wrapper img {
	width: 100%;
	display: block;
}

body.single-product .tm-woo .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.65rem 0 0;
	padding: 0;
	list-style: none;
}

body.single-product .tm-woo .flex-control-thumbs li {
	width: 64px;
	margin: 0;
}

body.single-product .tm-woo .flex-control-thumbs img {
	border-radius: 4px;
	opacity: 0.75;
	transition: opacity 0.15s ease;
}

body.single-product .tm-woo .flex-control-thumbs img:hover,
body.single-product .tm-woo .flex-control-thumbs .flex-active {
	opacity: 1;
}

body.single-product .tm-woo .summary {
	position: static;
	padding: 0;
	margin: 0;
}

@media (min-width: 960px) {
	body.single-product .tm-woo .summary {
		position: sticky;
		top: 1rem;
	}
}

body.single-product .tm-woo .product_title {
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	margin: 0 0 0.35rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

body.single-product .tm-woo p.price {
	font-size: 1.25rem;
	font-weight: 650;
	color: var(--tm-text);
	margin: 0 0 0.25rem;
}

body.single-product .tm-woo .tm-price-promos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.6rem;
}

body.single-product .tm-woo .tm-promo-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.45rem 1rem;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.25;
	text-transform: none;
	letter-spacing: 0.03em;
	font-variant-numeric: tabular-nums;
	border: 1px solid transparent;
	box-sizing: border-box;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.single-product .tm-woo .tm-promo-chip__text {
	display: block;
}

body.single-product .tm-woo .tm-promo-chip--save {
	color: #14532d;
	background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 45%, #bbf7d0 100%);
	border-color: rgba(34, 197, 94, 0.45);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 2px 8px rgba(22, 101, 52, 0.12);
}

body.single-product .tm-woo .tm-promo-chip--ship {
	color: #fff;
	background: linear-gradient(180deg, #0b70e0 0%, var(--tm-blue) 40%, #004a9e 100%);
	border-color: rgba(0, 40, 80, 0.35);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 3px 14px rgba(0, 86, 179, 0.38);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

body.single-product .tm-woo .tm-promo-chip:hover {
	transform: translateY(-1px);
}

body.single-product .tm-woo .tm-promo-chip--save:hover {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 14px rgba(22, 101, 52, 0.18);
}

body.single-product .tm-woo .tm-promo-chip--ship:hover {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset, 0 5px 18px rgba(0, 86, 179, 0.45);
}

@media (prefers-reduced-motion: reduce) {
	body.single-product .tm-woo .tm-promo-chip {
		transition: none;
	}

	body.single-product .tm-woo .tm-promo-chip:hover {
		transform: none;
	}
}

body.single-product .tm-woo .woocommerce-product-details__short-description {
	font-size: 0.95rem;
	color: var(--tm-muted);
	margin: 0 0 0.65rem;
	line-height: 1.5;
}

body.single-product .tm-woo .woocommerce-product-details__short-description p {
	margin: 0 0 0.4em;
}

body.single-product .tm-woo .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

body.single-product .tm-woo .stock {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.5rem;
	border-radius: 3px;
	margin: 0 0 0.5rem;
}

body.single-product .tm-woo .stock.in-stock {
	background: rgba(0, 86, 179, 0.1);
	color: var(--tm-blue-dark);
}

body.single-product .tm-woo .stock.out-of-stock {
	background: #f0f0f0;
	color: #666;
}

body.single-product .tm-woo form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	margin-top: 0.35rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--tm-border);
}

body.single-product .tm-woo form.cart .quantity {
	margin: 0;
}

body.single-product .tm-woo form.cart .quantity .qty {
	max-width: 4.5rem;
	padding: 0.5rem 0.4rem;
	border: 1px solid var(--tm-border);
	border-radius: 4px;
	font-size: 1rem;
}

.tm-woo form.cart .button {
	background: var(--tm-blue);
	color: #fff;
	border: 0;
	padding: 0.7rem 1.5rem;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tm-woo form.cart .button:hover {
	background: var(--tm-blue-dark);
}

/* SKU / category / tag strip under summary — removed in PHP; hide if a plugin re-injects .product_meta */
body.single-product .tm-woo .product_meta,
.tm-woo ul.products li.product .product_meta,
.tm-woo ul.products li.product > .sku {
	display: none !important;
}

body.single-product .tm-woo .woocommerce-tabs {
	margin-top: 1.35rem;
	padding-top: 1rem;
	border-top: 1px solid var(--tm-border);
}

body.single-product .tm-woo .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	list-style: none;
	margin: 0 0 0.65rem;
	padding: 0;
	border: 0;
}

body.single-product .tm-woo .woocommerce-tabs ul.tabs li {
	margin: 0;
	background: transparent;
	border: 0;
}

body.single-product .tm-woo .woocommerce-tabs ul.tabs li a {
	text-decoration: none;
	color: var(--tm-muted);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.35rem 0;
	border-bottom: 2px solid transparent;
}

body.single-product .tm-woo .woocommerce-tabs ul.tabs li.active a {
	color: var(--tm-blue);
	border-bottom-color: var(--tm-blue);
}

/* Cart / checkout tables */
.tm-woo table.shop_table {
	border-collapse: collapse;
	width: 100%;
	font-size: 0.95rem;
}

.tm-woo table.shop_table th,
.tm-woo table.shop_table td {
	border-bottom: 1px solid var(--tm-border);
	padding: 0.65rem 0.35rem;
	text-align: left;
}

.tm-woo .cart-collaterals .checkout-button {
	background: var(--tm-blue);
	color: #fff;
	text-decoration: none;
	padding: 0.75rem 1.25rem;
	display: inline-block;
	border-radius: 4px;
	font-weight: 600;
}

/* Notices */
.tm-woo .woocommerce-message,
.tm-woo .woocommerce-info,
.tm-woo .woocommerce-error {
	border-top-color: var(--tm-blue);
	font-size: 0.9rem;
}

/* Pagination */
.tm-woo .woocommerce-pagination ul {
	display: flex;
	gap: 0.35rem;
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
}

.tm-woo .woocommerce-pagination a,
.tm-woo .woocommerce-pagination span {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	border: 1px solid var(--tm-border);
	text-decoration: none;
	border-radius: 3px;
	color: var(--tm-text);
}

.tm-woo .woocommerce-pagination a:hover {
	border-color: var(--tm-blue);
	color: var(--tm-blue);
}
