/* Forge & Fury v2 — small extras that theme.json can't express. */

/* "Join Us" CTA (Brotherhood page): server renders it for everyone, but
 * logged-in users get the `logged-in` body class — hide it for them.
 * Cache-safe: anonymous pages are cached without the class; logged-in
 * requests bypass the page cache entirely. */
body.logged-in .ff-join-brotherhood {
	display: none !important;
}

/* Featured image used as a cover background in single.html */
.ff-cover-bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.5;
}

/* Sticky header on the front end */
.ff-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: saturate(140%) blur(6px);
}

/* Subtle lift on product + post cards */
.wp-block-query .wp-block-group,
.woocommerce ul.products li.product {
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wp-block-query .wp-block-group:hover {
	transform: translateY(-3px);
}

/* Give WooCommerce classic markup room to breathe under the block theme */
.woocommerce .quantity .qty {
	padding: 0.5rem;
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	border: 1px solid var(--wp--preset--color--steel);
}

/* Uppercase, tracked nav links to match the display font treatment */
.ff-site-header .wp-block-navigation a {
	transition: color 0.15s ease;
}

/* Mini-cart badge visibility */
.wc-block-mini-cart__badge {
	background: var(--wp--preset--color--accent);
	color: #fff;
}

/* -------------------------------------------------------------------------
 * WooCommerce classic shop/product styling on the dark theme.
 * We keep Woo's layout CSS (grid) but drop its general colour CSS, so the
 * product cards, prices, buttons and controls are styled here to match.
 * ---------------------------------------------------------------------- */

/* Product grid — override WooCommerce's float layout with a real CSS grid so
 * rows stay even regardless of how tall each product's title/price is. */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 2rem 0 0 !important;
	padding: 0;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	list-style: none;
	width: auto !important;
	max-width: none !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--surface-2);
	border-radius: 3px;
	padding: 0 0 1.25rem;
	overflow: hidden;
	text-align: left;
}
/* Woo's clearfix pseudo-elements become phantom grid items inside display:grid
 * (an empty first cell + a trailing one) — remove them on the ul AND the lis. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after { content: none !important; display: none !important; }
/* Push price + add-to-cart to the bottom so they line up across cards */
.woocommerce ul.products li.product .price { margin-top: auto; padding-top: 0.5rem; }

@media (max-width: 900px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products { grid-template-columns: 1fr; }
}
.woocommerce ul.products li.product a img {
	margin: 0 0 1rem;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 1.05rem;
	color: var(--wp--preset--color--heading);
	padding: 0 1.25rem;
}
.woocommerce ul.products li.product .price {
	color: var(--wp--preset--color--accent);
	font-weight: 700;
	padding: 0 1.25rem;
	display: block;
}
.woocommerce ul.products li.product .price del {
	color: var(--wp--preset--color--steel);
	opacity: 0.7;
	margin-right: 0.4rem;
}
.woocommerce ul.products li.product .star-rating {
	margin: 0.25rem 1.25rem;
	color: var(--wp--preset--color--accent);
}

/* Buttons (add to cart, etc.) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .woocommerce-message a.button {
	background: var(--wp--preset--color--accent);
	color: #fff;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 0;
	border-radius: 2px;
	padding: 0.7rem 1.4rem;
	margin: 0 1.25rem;
	transition: background 0.15s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt {
	background: var(--wp--preset--color--rust);
	color: #fff;
}

/* Result count + sorting dropdown */
.woocommerce .woocommerce-result-count {
	color: var(--wp--preset--color--steel);
}
.woocommerce .woocommerce-ordering select,
.woocommerce select {
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	border: 1px solid var(--wp--preset--color--steel);
	padding: 0.5rem 0.75rem;
	border-radius: 2px;
}

/* Category filter dropdown — sits inline, just left of the sort dropdown.
   Its <select> inherits the .woocommerce select styling above. */
.woocommerce .ffv2-catalog-filter {
	float: right;
	margin: 0 1rem 1em 0;
}
@media (max-width: 600px) {
	.woocommerce .ffv2-catalog-filter {
		float: none;
		margin: 0 0 0.75rem;
	}
	.woocommerce .ffv2-catalog-filter select {
		width: 100%;
	}
}

/* Product-archive title (shop heading, category name, etc.). The global h1
   'huge' preset is hero-scale and wraps two-word category names like
   "Everything Bar" onto two lines; scale it down here so these titles read
   as a single line while staying fluid on small screens. */
.post-type-archive-product .wp-block-query-title,
.tax-product_cat .wp-block-query-title,
.tax-product_tag .wp-block-query-title {
	font-size: clamp(1.5rem, 4.5vw, 3rem);
	white-space: nowrap;
	text-align: center;
}

/* Sale flash */
.woocommerce span.onsale {
	background: var(--wp--preset--color--accent);
	color: #fff;
	border-radius: 2px;
	font-family: var(--wp--preset--font-family--display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------
 * Single product page
 * ---------------------------------------------------------------------- */
.woocommerce div.product .product_title {
	color: var(--wp--preset--color--heading);
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--wp--preset--color--accent);
	font-size: 1.5rem;
}

/* Gallery: main image fills its column */
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
}

/* Gallery thumbnails: Woo renders them as an <ol> — without its CSS the browser
 * shows a numbered vertical list. Turn them into a clean horizontal strip. */
.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.5rem;
	list-style: none !important;
	margin: 0.75rem 0 0;
	padding: 0;
}
.woocommerce div.product div.images .flex-control-thumbs li {
	list-style: none !important;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
}
.woocommerce div.product div.images .flex-control-thumbs img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	cursor: pointer;
	opacity: 0.55;
	border: 1px solid var(--wp--preset--color--surface-2);
	border-radius: 2px;
	transition: opacity 0.15s ease, border-color 0.15s ease;
}
.woocommerce div.product div.images .flex-control-thumbs img:hover,
.woocommerce div.product div.images .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: var(--wp--preset--color--accent);
}

/* Quantity + Add to cart on one tidy row */
.woocommerce div.product form.cart {
	display: flex;
	align-items: stretch;
	gap: 0.75rem;
	margin: 1.5rem 0;
	flex-wrap: wrap;
}
.woocommerce div.product form.cart div.quantity {
	float: none;
	margin: 0;
}
.woocommerce div.product form.cart .button {
	margin: 0;
}

/* SKU / category / tag meta: quiet it down so it stops shouting */
.woocommerce div.product .product_meta {
	display: block;
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--wp--preset--color--surface-2);
	font-size: 0.8125rem;
	color: var(--wp--preset--color--steel);
	line-height: 1.9;
}
.woocommerce div.product .product_meta a {
	color: var(--wp--preset--color--steel);
}
.woocommerce div.product .product_meta a:hover {
	color: var(--wp--preset--color--accent);
}

/* Tabs (Description / Additional information / Reviews): Woo marks these up as
 * an <ul>; style them as a proper tab bar. */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	list-style: none !important;
	margin: 3.5rem 0 0;
	padding: 0 !important;
	border-bottom: 1px solid var(--wp--preset--color--surface-2);
	overflow: visible;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	content: none !important;
	display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.9rem 1.5rem;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.875rem;
	color: var(--wp--preset--color--steel);
	border-bottom: 2px solid transparent;
	text-decoration: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--wp--preset--color--heading);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--wp--preset--color--heading);
	border-bottom-color: var(--wp--preset--color--accent);
}
.woocommerce div.product .woocommerce-tabs .panel {
	padding: 2rem 0 0;
}
/* The panel repeats a big "Description" heading right above the product-name
 * heading — hide the redundant one. */
.woocommerce div.product .woocommerce-tabs .panel > h2:first-of-type {
	display: none;
}

/* Related products / upsells section heading spacing */
.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 {
	margin-top: 3.5rem;
}

.woocommerce #reviews {
	color: var(--wp--preset--color--text);
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
	border-top-color: var(--wp--preset--color--accent);
}

/* -------------------------------------------------------------------------
 * Advanced Post Block (plugin) — used on the Brotherhood page post grid.
 * Re-skin its default look (blue buttons, plain cards) to match the theme.
 * ---------------------------------------------------------------------- */
.apbGridPosts {
	gap: 1.5rem !important;
}
.apbMasonryPosts {
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
}
.apbMasonryPosts .apbPost {
	margin-bottom: 1.5rem !important;
}

/* Card shell: solid surface with a visible edge and depth, so cards read as
 * cards whether or not the post has a featured image. */
.wp-block-ap-block-posts .apbPost {
	background: linear-gradient(165deg, var(--wp--preset--color--surface-2) 0%, var(--wp--preset--color--surface) 70%) !important;
	border: 1px solid #2c2930 !important;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.wp-block-ap-block-posts .apbPost:hover {
	transform: translateY(-3px);
	border-color: var(--wp--preset--color--rust) !important;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

/* Overlay-style cards (featured image as background): swap the flat black wash
 * for a bottom scrim so the photo shows through up top and the text sits on a
 * readable dark gradient below. */
.wp-block-ap-block-posts .apbPost.apbOverlay {
	min-height: 340px;
}
.wp-block-ap-block-posts .apbPost.apbOverlay .apbText {
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.05) 0%, rgba(13, 13, 13, 0.6) 40%, rgba(13, 13, 13, 0.95) 100%) !important;
	justify-content: flex-end !important;
	padding: 5rem 1.5rem 1.5rem !important;
}
.wp-block-ap-block-posts .apbPost.apbOverlay img {
	opacity: 0.9;
}

/* Ember keyline above each title ties the cards to the brand. */
.wp-block-ap-block-posts .apbPost .apbTitle {
	position: relative;
	padding-top: 0.9rem !important;
	margin-bottom: 0.5rem !important;
}
.wp-block-ap-block-posts .apbPost .apbTitle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 42px;
	height: 3px;
	background: var(--wp--preset--color--accent);
}

.apbPost .apbThumb img {
	width: 100%;
	display: block;
}
.apbPost .apbText {
	padding: 1.25rem 1.5rem 1.75rem;
}
.apbTitle,
.apbTitle a {
	font-family: var(--wp--preset--font-family--display) !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--heading) !important;
	line-height: 1.2 !important;
	font-size: 1.15rem !important;
	text-decoration: none;
}
.apbTitle a:hover {
	color: var(--wp--preset--color--accent) !important;
}
.apbMeta,
.apbMeta a,
.apbMeta span {
	color: var(--wp--preset--color--steel) !important;
	font-size: 0.8125rem !important;
}
.apbMeta a:hover {
	color: var(--wp--preset--color--accent) !important;
}
.apbExcerpt {
	color: var(--wp--preset--color--text);
}
/* The button is an <a> INSIDE the .apbReadMore wrapper div, and the plugin
 * paints it via JS-injected styles from the block config — so target the
 * anchor itself and keep the wrapper transparent. */
.wp-block-ap-block-posts .apbPost .apbReadMore {
	background: transparent !important;
	padding: 0 !important;
	border: 0 !important;
	height: auto !important;
}
.wp-block-ap-block-posts .apbPost .apbReadMore a,
.wp-block-ap-block-posts .apbPost .apbReadMore a span {
	background: var(--wp--preset--color--accent) !important;
	background-color: var(--wp--preset--color--accent) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 2px !important;
	font-family: var(--wp--preset--font-family--display) !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	text-decoration: none !important;
}
.wp-block-ap-block-posts .apbPost .apbReadMore a {
	padding: 0.65rem 1.4rem !important;
	transition: background 0.15s ease !important;
}
.wp-block-ap-block-posts .apbPost .apbReadMore a span {
	padding: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	width: auto !important;
	height: auto !important;
}
.wp-block-ap-block-posts .apbPost .apbReadMore a:hover,
.wp-block-ap-block-posts .apbPost .apbReadMore a:hover span {
	background: var(--wp--preset--color--rust) !important;
	background-color: var(--wp--preset--color--rust) !important;
	color: #fff !important;
}

/* -------------------------------------------------------------------------
 * Global form controls (dark) — covers Jetpack contact forms, comment forms,
 * search inputs, and anything else that renders plain form elements.
 * Element-level selectors so more specific component styles can still win.
 * ---------------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
	background-color: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	border: 1px solid var(--wp--preset--color--steel);
	border-radius: 2px;
	padding: 0.65rem 0.85rem;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--wp--preset--color--accent);
}
::placeholder {
	color: var(--wp--preset--color--steel);
	opacity: 1;
}

/* Jetpack contact form labels + spacing */
.wp-block-jetpack-contact-form label {
	color: var(--wp--preset--color--text);
	font-size: 0.9375rem;
	margin-bottom: 0.35rem;
}
.wp-block-jetpack-contact-form .wp-block-jetpack-field {
	margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------------------
 * WooCommerce BLOCK cart & checkout — the block components default to a
 * light look; align text, borders, panels and controls with the dark theme.
 * ---------------------------------------------------------------------- */
.wc-block-cart,
.wc-block-checkout,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	color: var(--wp--preset--color--text);
}
.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-combobox input,
.wc-block-components-select select {
	background-color: var(--wp--preset--color--surface-2) !important;
	color: var(--wp--preset--color--heading) !important;
	border-color: var(--wp--preset--color--steel) !important;
}
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select label,
.wc-block-components-checkbox__label {
	color: var(--wp--preset--color--text) !important;
}
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-order-summary,
.wc-block-components-totals-wrapper {
	border-color: var(--wp--preset--color--surface-2);
}
.wc-block-components-divider,
.wc-block-components-card {
	border-color: var(--wp--preset--color--surface-2) !important;
}
.wc-block-components-quantity-selector {
	background: var(--wp--preset--color--surface-2);
	border: 1px solid var(--wp--preset--color--steel);
}
.wc-block-components-quantity-selector input,
.wc-block-components-quantity-selector button {
	color: var(--wp--preset--color--heading) !important;
	background: transparent !important;
}
.wc-block-components-product-name,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-formatted-money-amount {
	color: var(--wp--preset--color--heading);
}
.wc-block-components-radio-control__option,
.wc-block-components-checkbox {
	color: var(--wp--preset--color--text);
}

/* -------------------------------------------------------------------------
 * My Account area (also general Woo forms/tables → cart, checkout, orders)
 * ---------------------------------------------------------------------- */

/* Two-column account layout: Woo's float-based columns break inside the block
 * theme's constrained layout (content ends up below the nav). Use a grid.
 * Scoped to logged-in so the login/register screen stays single-column. */
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
	float: none !important;
	width: auto !important;
}
.woocommerce-account.logged-in .woocommerce-MyAccount-content {
	float: none !important;
	width: auto !important;
}
.woocommerce-account.logged-in main .woocommerce {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}
@media (max-width: 782px) {
	.woocommerce-account.logged-in main .woocommerce {
		grid-template-columns: 1fr;
	}
}

/* Account navigation: boxed menu with an ember active state */
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--surface-2);
	border-radius: 4px;
	overflow: hidden;
}
.woocommerce-MyAccount-navigation li {
	margin: 0 !important;
	border-bottom: 1px solid var(--wp--preset--color--surface-2);
}
.woocommerce-MyAccount-navigation li:last-child {
	border-bottom: 0;
}
.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 0.85rem 1.25rem;
	color: var(--wp--preset--color--text);
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.8125rem;
	text-decoration: none !important;
	border-left: 3px solid transparent;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.woocommerce-MyAccount-navigation li a:hover {
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	text-decoration: none;
}
.woocommerce-MyAccount-navigation li.is-active a {
	border-left-color: var(--wp--preset--color--accent);
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
}

/* Account content column */
.woocommerce-MyAccount-content {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--surface-2);
	border-radius: 4px;
	padding: 2rem;
}
.woocommerce-MyAccount-content a {
	color: var(--wp--preset--color--accent);
}

/* Form fields across Woo (account, login/register, checkout, coupons) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .input-text,
.woocommerce-page .input-text {
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	border: 1px solid var(--wp--preset--color--steel);
	border-radius: 2px;
	padding: 0.65rem 0.85rem;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce .input-text:focus {
	outline: none;
	border-color: var(--wp--preset--color--accent);
}
.woocommerce form .form-row label {
	color: var(--wp--preset--color--text);
	font-size: 0.875rem;
}

/* Login/register boxes */
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-form-login,
.woocommerce-form-register {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--surface-2) !important;
	border-radius: 4px !important;
	padding: 2rem !important;
}

/* Tables (orders, subscriptions, cart) */
.woocommerce table.shop_table {
	border: 1px solid var(--wp--preset--color--surface-2);
	border-radius: 4px;
	border-collapse: separate;
	border-spacing: 0;
}
.woocommerce table.shop_table th {
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	font-family: var(--wp--preset--font-family--display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.8125rem;
	padding: 0.9rem 1rem;
}
.woocommerce table.shop_table td {
	border-top: 1px solid var(--wp--preset--color--surface-2);
	padding: 0.9rem 1rem;
	color: var(--wp--preset--color--text);
}
.woocommerce table.shop_table td a {
	color: var(--wp--preset--color--accent);
}

/* Address boxes */
.woocommerce-Addresses .woocommerce-Address,
.woocommerce .col2-set .col-1 address,
.woocommerce .col2-set .col-2 address {
	background: var(--wp--preset--color--surface-2);
	border-radius: 4px;
	padding: 1.25rem;
	font-style: normal;
	color: var(--wp--preset--color--text);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
	border: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	background: var(--wp--preset--color--surface-2);
	color: var(--wp--preset--color--heading);
	border: 0;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--wp--preset--color--accent);
	color: #fff;
}
