/**
 * Sports Outlet — auto parts storefront skin.
 *
 * Everything here is namespaced with `.so-` (or scoped to a WooCommerce block)
 * so the theme's original stylesheet keeps working for blog templates.
 */

:root {
	--so-primary: #E8400C;
	--so-primary-dark: #C93408;
	/* Old Glory Blue — pill CTA hover states and the contact section accent. */
	--so-blue: #3C3B6E;
	--so-blue-dark: #2C2B52;
	/* Lightened for use on the dark contact panel, where the base blue sinks in. */
	--so-blue-light: #8A88C9;
	--so-dark: #14181D;
	--so-dark-2: #1E242B;
	--so-light: #F4F5F7;
	--so-tint: #FFF3EE;
	--so-text: #1A1A1A;
	--so-muted: #6B7280;
	--so-border: #E2E5EA;
	--so-radius: 4px;
	--so-shadow: 0 1px 2px rgba(20, 24, 29, .06);
	--so-shadow-lg: 0 12px 32px rgba(20, 24, 29, .12);
	--so-gap: 24px;
}

/* -------------------------------------------------- layout primitives */

/*
 * The parent stylesheet ships a normalize.css reset, which leaves boxes on the
 * default `content-box`. Every `.so-` primitive below is written assuming
 * padding sits inside the declared width, so without this the padded
 * full-width wrappers (`.so-container`, `.so-search`, the product cards) blow
 * past the viewport on phones — 390px + 40px of padding = a 430px document and
 * a horizontal scrollbar. `hr` is left alone: normalize's `hr { content-box }`
 * is a more specific selector and still wins.
 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

.so-container {
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
	padding-inline: 20px;
}

.so-section {
	padding-block: 56px;
}

.so-section--tight {
	padding-block: 28px;
}

.so-section + .so-section--tight {
	padding-top: 0;
}

.so-grid {
	display: grid;
	gap: var(--so-gap);
}

.so-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.so-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.so-page-title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--so-muted);
	margin: 0 0 24px;
}

p.so-eyebrow {
	display: inline-block;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: .12em !important;
	text-transform: uppercase;
	color: var(--so-primary) !important;
	margin-bottom: 0 !important;
}
.wp-block-group.so-about__text{
	margin-top: 0;
}
.so-eyebrow--light {
	color: #FF9A6B;
}

/* -------------------------------------------------- buttons */

.so-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 26px;
	border: 0;
	border-radius: var(--so-radius);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.so-btn--solid {
	background: var(--so-primary);
	color: #fff;
}

.so-btn--solid:hover {
	background: var(--so-primary-dark);
	color: #fff;
}

.so-btn--ghost {
	background: transparent;
	color: var(--so-text);
	box-shadow: inset 0 0 0 1px var(--so-border);
}

.so-btn--ghost:hover {
	background: var(--so-text);
	color: #fff;
}

.so-btn--lg {
	padding: 16px 32px;
	font-size: 14px;
}

/*
 * Pill CTA for cover art (hero slides, promo banners): a white capsule whose
 * label sits next to a round icon badge tucked into the right edge. The icon is
 * the `so-btn__icon` element; blocks.css redraws it from a `::after` where the
 * markup comes from a core/button and cannot carry an inner tag.
 */
.so-btn--pill {
	gap: 14px;
	padding: 5px 5px 5px 26px;
	border-radius: 999px;
	background: #fff;
	color: var(--so-text);
	font-size: 15px;
	letter-spacing: 0;
	text-transform: none;
}

.so-btn--pill .so-btn__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--so-dark);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	transition: background-color .2s ease, color .2s ease;
}

.so-btn--pill:hover {
	background: var(--so-blue);
	color: #fff;
}

.so-btn--pill:hover .so-btn__icon {
	background: #fff;
	color: var(--so-blue);
}

.so-btn--pill.so-btn--lg {
	padding: 7px 7px 7px 32px;
	font-size: 16px;
}

.so-btn--pill.so-btn--lg .so-btn__icon {
	width: 44px;
	height: 44px;
	font-size: 15px;
}

.so-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--so-text);
	text-decoration: none;
}

.so-link-arrow:hover {
	color: var(--so-primary);
}

/* -------------------------------------------------- section heading */

.so-sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--so-border);
}

.so-sec-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-bottom: 0;
	padding-bottom: 0;
}

.so-sec-title {
	margin: 6px 0 0;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--so-text);
}

.so-sec-sub {
	margin: 8px 0 0;
	font-size: 15px;
	color: var(--so-muted);
}

/* -------------------------------------------------- topbar & header */

.so-topbar {
	background: var(--so-dark);
	color: #C6CBD2;
	font-size: 13px;
}

.so-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 42px;
}

.so-topbar a {
	color: #C6CBD2;
	text-decoration: none;
}

.so-topbar a:hover {
	color: #fff;
}

.so-topbar__notice {
	margin: 0;
	font-size: 13px;
}

.so-topbar__notice i {
	margin-right: 8px;
	color: var(--so-primary);
}

.so-topbar__right {
	display: flex;
	align-items: center;
	gap: 26px;
}

.so-topbar__phone {
	font-weight: 700;
	color: #fff !important;
	white-space: nowrap;
}

.so-topbar__phone i {
	margin-right: 7px;
	color: var(--so-primary);
}

.so-menu-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.so-menu-list li {
	margin: 0;
}

.so-topbar__menu .sub-menu {
	display: none;
}

/* main header row */

.so-header__main {
	background: #fff;
	border-bottom: 1px solid var(--so-border);
}

.so-header__main-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 92px;
}
.wp-block-group.so-contact__form{
	margin-top: 0 !important;
}
.so-brand {
	flex: none;
	display: flex;
	align-items: center;
}

.so-brand img,
.so-brand .custom-logo {
	display: block;
	max-height: 72px;
	width: auto;
	height: auto;
}

.so-brand__text {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--so-text);
	text-decoration: none;
}

.so-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: none;
	margin-left: auto;
}

.so-action {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--so-text);
	text-decoration: none;
}

.so-action > i {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--so-tint);
	color: var(--so-primary);
	font-size: 17px;
}

.so-action__label span {
	display: block;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--so-muted);
}

.so-action__label strong {
	display: block;
	font-size: 15px;
	white-space: nowrap;
}

.so-header__icons {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: none;
}

.so-icon-link {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--so-radius);
	font-size: 18px;
	color: var(--so-text);
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.so-icon-link:hover {
	background: var(--so-tint);
	color: var(--so-primary);
}

.so-cart-count {
	position: absolute;
	top: 3px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	color: var(--so-primary);
	/* color: #fff; */
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

.so-cart-count.is-empty {
	display: none;
}

/* search */

.so-search {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 620px;
	border: 2px solid var(--so-dark);
	border-radius: var(--so-radius);
	overflow: hidden;
	background: #fff;
}

.so-search__cat {
	flex: none;
	max-width: 190px;
	border: 0;
	
	background: #fff;
	padding: 0 14px;
	font-size: 14px;
	color: var(--so-text);
	cursor: pointer;
}

.so-search__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	padding: 13px 16px;
	margin-left: 10px;
	border-left: 1px solid var(--so-border);
	font-size: 14px;
	background: #fff;
	color: var(--so-text);
}

.so-search__input:focus,
.so-search__cat:focus {
	outline: 0;
}

.so-search__btn {
	flex: none;
	width: 56px;
	border: 0;
	background: #000;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.so-search__btn:hover {
	background: #333;
}

/* main navigation */

.so-header__nav {
	background: #fff;
	border-bottom: 1px solid var(--so-border);
	/*
	 * Closed dropdowns are `visibility: hidden`, not `display: none`, so they
	 * still take part in layout. The rightmost menu item's 250px submenu hangs
	 * ~50px past the viewport on tablets and gives the whole document a
	 * horizontal scrollbar. `clip` kills that without becoming a scroll
	 * container (so it will not break the sticky sidebar), and `overflow-y`
	 * stays visible so an open dropdown can still fall below the bar.
	 */
	overflow-x: clip;
	overflow-y: visible;
}

/* Restore the overhang while a dropdown is genuinely open. */
.so-header__nav:hover,
.so-header__nav:focus-within {
	overflow-x: visible;
}

.wp-block-group.so-header__nav-inner {
	min-height: 54px;
	gap: 24px;
}

.so-nav .wp-block-navigation__container {
	gap: 26px;
}

.so-nav .wp-block-navigation-item__content {
	font-size: 14px;
	font-weight: 600;
	color: var(--so-text);
	text-decoration: none;
}

.so-nav .wp-block-navigation-item__content:hover,
.so-nav .current-menu-item > .wp-block-navigation-item__content {
	color: var(--so-primary);
}

.so-nav .wp-block-navigation__submenu-container {
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	box-shadow: var(--so-shadow-lg);
	padding-block: 8px;
	min-width: 250px;
}

.so-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
}

.so-header__nav-aside {
	display: flex;
	align-items: center;
	gap: 22px;
	flex: none;
	font-size: 13px;
	color: var(--so-muted);
}

.so-header__nav-aside i {
	color: var(--so-primary);
	margin-right: 7px;
}

/*
 * Below 600px core hides the horizontal menu and shows only the "Open menu"
 * burger (a hard breakpoint baked into wp-includes/blocks/navigation). JS
 * (initHeaderNavPlacement in shop.js) relocates the <nav> into this wrapper
 * so the burger lands on the same row as search; `display: contents` keeps
 * the wrapper invisible to layout the rest of the time so `.so-search`
 * behaves exactly as if it were still a direct child of `.so-header__main-inner`.
 */
.so-header__search-row {
	display: contents;
}

.so-header__search-row.has-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	order: 3;
	flex-basis: 100%;
	min-width: 0;
}

.so-header__search-row.has-nav > .so-search {
	order: initial;
	flex: 1 1 auto;
	max-width: none;
}

.so-header__search-row.has-nav .so-nav {
	flex: none;
}

.so-header__search-row.has-nav .wp-block-navigation__responsive-container-open {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid var(--so-dark);
	border-radius: var(--so-radius);
}

.so-header__nav.is-empty {
	display: none;
}

/*
 * Core always expands `.has-child` submenus inside the mobile overlay
 * (style.css forces them visible regardless of the toggle's aria-expanded
 * state), so a menu with many categories dumps its entire tree on load.
 * Collapse them behind the existing submenu-toggle button instead — the
 * Interactivity API already flips aria-expanded on click, this just makes
 * CSS respect it.
 */
.so-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle[aria-expanded="false"] + .wp-block-navigation__submenu-container {
	display: none !important;
}

/* Core hides the toggle icon entirely inside the overlay (its own design
   assumes submenus are always flattened open there); bring it back since
   this theme uses it to drive the collapse above. */
.so-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle {
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform .2s ease;
}

.so-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle[aria-expanded="true"] {
	transform: rotate(180deg);
}

/* -------------------------------------------------- hero slider */

.so-hero {
	position: relative;
	background: var(--so-dark);
	overflow: hidden;
}

.so-hero__track {
	position: relative;
}

.so-hero__slide {
	display: none;
	position: relative;
	min-height: 460px;
}

.so-hero__slide.is-active {
	display: block;
}

.so-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.so-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 13, 17, .92) 0%, rgba(10, 13, 17, .72) 45%, rgba(10, 13, 17, .15) 100%);
}

.so-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 460px;
}

.so-hero__content {
	max-width: 560px;
	color: #fff;
}

.so-hero__title {
	margin: 12px 0 14px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
}

.so-hero__text {
	margin: 0 0 26px;
	font-size: 16px;
	line-height: 1.6;
	color: #D3D8DF;
}

.so-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	cursor: pointer;
	transition: background-color .2s ease;
}

.so-hero__arrow:hover {
	background: var(--so-primary);
}

.so-hero__arrow--prev {
	left: 20px;
}

.so-hero__arrow--next {
	right: 20px;
}

.so-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 22px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.so-hero__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .45);
	cursor: pointer;
}

.so-hero__dot.is-active {
	width: 26px;
	border-radius: 5px;
	background: var(--so-primary);
}

/* -------------------------------------------------- category tiles */

.so-cat-grid {
	display: grid;
	gap: 16px;
}

.so-cat-grid--6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.so-cat-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.so-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 20px 14px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
	text-align: center;
	text-decoration: none;
	color: var(--so-text);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.so-cat:hover {
	border-color: var(--so-primary);
	box-shadow: var(--so-shadow-lg);
	transform: translateY(-2px);
}

.so-cat__media {
	display: grid;
	place-items: center;
	width: 82px;
	height: 82px;
	/* border-radius: 50%; */
	background: var(--so-light);
	overflow: hidden;
}

.so-cat__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.so-cat__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.so-cat__name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.so-cat__count {
	font-size: 12px;
	color: var(--so-muted);
}

.so-cat__cta {
	display: none;
}

/* wide variant — the three featured categories */

.so-cat--wide {
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding: 24px;
	text-align: left;
	background: var(--so-light);
	border-color: transparent;
}

.so-cat--wide .so-cat__media {
	width: 110px;
	height: 110px;
	border-radius: var(--so-radius);
	background: #fff;
	flex: none;
}

.so-cat--wide .so-cat__name {
	font-size: 20px;
	font-weight: 700;
}

.so-cat--wide .so-cat__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--so-primary);
}

/* -------------------------------------------------- banners */

.so-banner {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--so-radius);
	background: var(--so-dark);
	color: #fff;
	text-decoration: none;
	min-height: 240px;
}

.so-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.so-banner:hover .so-banner__bg {
	transform: scale(1.04);
}

.so-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 13, 17, .88) 0%, rgba(10, 13, 17, .55) 60%, rgba(10, 13, 17, .1) 100%);
}
.wp-block-group.so-banner__inner{
	margin-top: 0;
}
.so-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	    max-width: 480px;
	padding: 34px;
}

p.so-banner__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #FF9A6B;
}

p.so-banner__title {
	margin-top: 0;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
}

p.so-banner__text {
	margin-top: 0;
	margin-bottom: 32px;
	font-size: 14px;
	line-height: 1.6;
	color: #D3D8DF;
}

.so-banner__inner .so-btn {
	margin-top: auto;
}

.so-banner--wide {
	min-height: 300px;
}

.so-banner--wide .so-banner__inner {
	max-width: 620px;
	padding: 52px 44px;
}

.so-banner--wide .so-banner__title {
	font-size: 34px;
}

.so-banner--compact {
	min-height: 200px;
}
.so-banner--compact .so-banner__title{
	margin-bottom: 20px;
}
.so-banner--compact .wp-block-button__link{
	margin-top: auto;
}
.so-banner--compact .so-banner__inner {
	max-width: 78%;
	padding: 26px;
}

.so-banner--compact .so-banner__title {
	font-size: 19px;
}
.so-banner--compact .wp-block-button.so-cta--pill > .wp-block-button__link::after{
	width: 30px;
	height: 30px;
	font-size: 12px;
}

/* -------------------------------------------------- product cards */

.wp-block-woocommerce-product-collection.so-products {
	margin-block: 0;
}

.so-products .wp-block-post-template,
.so-products .wc-block-product-template {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px !important;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* WooCommerce prints the requested column count on the template element. */
.so-products .wc-block-product-template.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.so-products .wc-block-product-template.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.so-products .wc-block-product-template.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.so-products .wc-block-product-template.columns-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.so-products .wc-block-product-template.columns-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.so-products .wp-block-post-template > li,
.so-products .wc-block-product-template > li {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	width: auto;
	max-width: none;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.so-products li:hover {
	border-color: var(--so-primary);
	box-shadow: var(--so-shadow-lg);
}

.so-card__media {
	position: relative;
	margin: 0;
	padding: 14px;
	background: #fff;
}

.so-card__media .wc-block-components-product-image {
	margin: 0;
}

.so-card__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.so-card__media .wc-block-components-product-sale-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	margin: 0;
	padding: 4px 9px;
	border: 0;
	border-radius: 3px;
	background: var(--so-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.so-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0 16px 18px;
	flex: 1 1 auto;
}

.so-card__rating {
	margin: 0;
}

.so-card__rating .wc-block-components-product-rating__stars,
.so-card__rating .wc-block-review-list-item__rating__stars {
	color: #FFB100;
}

/* Clamp to two lines so prices and buttons line up across a row.
   The clamp lives on the inner link, not the heading: the card body is a flex
   container, and a flex item blockifies -webkit-box away to flow-root. */
.so-card__title {
	margin: 0;
}

.so-card__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--so-text);
	text-decoration: none;
}

.so-card__title a:hover {
	color: var(--so-primary);
}

.so-card__price {
	margin: auto 0 0;
	color: var(--so-primary);
}

.so-card__price del {
	margin-right: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--so-muted);
}

.so-card__price ins {
	text-decoration: none;
	color: var(--so-primary);
}

.so-card__btn {
	display: none !important;
	margin: 4px 0 0;
}

/* WooCommerce ships its own flex rules for the product button, so match its
   specificity rather than fight it with !important. */
.so-card__btn.wc-block-components-product-button .wp-block-button__link,
.so-card__btn .wp-block-button__link,
.so-card__btn a.button {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	padding: 11px 14px;
	border-radius: var(--so-radius);
	background: var(--so-dark);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-align: center;
}

.so-card__btn .added_to_cart {
	display: none;
}

/* The wishlist plugin appends its own block after the card body — pull it
   inside the card frame so it reads as part of the tile. */
.so-products li > .tinv-wraper {
	order: 3;
	margin: 0;
	padding: 0 16px 16px;
	font-size: 13px;
}

.so-products li > .tinv-wraper .tinvwl_add_to_wishlist_button {
	color: var(--so-muted);
	text-decoration: none;
}

.so-products li > .tinv-wraper .tinvwl_add_to_wishlist_button:hover {
	color: var(--so-primary);
}

.so-card__btn.wc-block-components-product-button .wp-block-button__link:hover,
.so-card__btn .wp-block-button__link:hover,
.so-card__btn a.button:hover {
	background: var(--so-primary);
	color: #fff !important;
}

/* -------------------------------------------------- product tabs */

.so-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.so-tabs__btn {
	padding: 9px 18px;
	border: 1px solid var(--so-border);
	border-radius: 999px;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: var(--so-text);
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.so-tabs__btn:hover {
	border-color: var(--so-primary);
	color: var(--so-primary);
}

.so-tabs__btn.is-active {
	background: var(--so-dark);
	border-color: var(--so-dark);
	color: #fff;
}

.so-tabs__panel {
	display: none;
}

.so-tabs__panel.is-active {
	display: block;
}

/* -------------------------------------------------- promo strip */

.so-promo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	padding: 26px 32px;
	border-radius: var(--so-radius);
	background: var(--so-dark) linear-gradient(90deg, #14181D 0%, #232B34 100%);
	color: #fff;
}

p.so-promo__badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 4px 10px;
	border-radius: 3px;
	color: #fff;
	background: var(--so-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

p.so-promo__title {
	margin: 16px 0 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
}

p.so-promo__sub {
	margin: 6px 0 0;
	font-size: 14px;
	color: #A9B0BA;
}

div.so-promo__code {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 22px;
	border: 2px dashed rgba(255, 255, 255, .35);
	border-radius: var(--so-radius);
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: border-color .2s ease;
}

.so-promo__code:hover {
	border-color: var(--so-primary);
}

p.so-promo__code-value {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1;
}

p.so-promo__code-hint {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #FF9A6B;
}

.so-promo__code.is-copied .so-promo__code-hint {
	color: #7CD992;
}

/* -------------------------------------------------- trust boxes */

.so-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	padding: 30px;
	border-radius: var(--so-radius);
	background: var(--so-light);
}

.so-iconbox {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.wp-block-group.so-iconbox{
	margin-top: 0;
}
.so-iconbox__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--so-primary);
	font-size: 18px;
}

.so-iconbox__text {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.so-iconbox__title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--so-text);
}

p.so-iconbox__desc {
	font-size: 13px;
	line-height: 1.6;
	color: var(--so-muted);
	margin-top: 0;
}

.so-iconbox__desc a {
	color: var(--so-text);
	font-weight: 700;
	text-decoration: none;
}

.so-iconbox__desc a:hover {
	color: var(--so-primary);
}

/* -------------------------------------------------- weekly highlights */

.so-special {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 14px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
}

.so-special__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.so-special__sub {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--so-muted);
}

a.so-special__product {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-top: 16px;
	margin-top: 0;
	border-top: 1px solid var(--so-border);
	text-decoration: none;
	color: var(--so-text);
	flex-grow: 1;
}

.so-special__media {
	flex: none;
	width: 96px;
	height: 96px;
	border-radius: var(--so-radius);
	background: var(--so-light);
	overflow: hidden;
}

.so-special__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.so-special__body {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	gap: 5px;
	min-width: 0;
}
.so-special__price{
	margin-top: auto;
}
.so-special__name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.so-special__product:hover .so-special__name {
	color: var(--so-primary);
}

.so-special__price {
	font-size: 17px;
	font-weight: 700;
}

.so-special__price del {
	margin-right: 6px;
	font-size: 13px;
	font-weight: 400;
	color: var(--so-muted);
}

.so-special__price ins {
	text-decoration: none;
	color: var(--so-primary);
}

.so-special__cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 3px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--so-primary);
}

/* -------------------------------------------------- about */

.so-about {
	background: var(--so-light);
}

.so-about__inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: center;
	gap: 48px;
}

.so-about__media img {
	width: 100%;
	height: auto;
	border-radius: var(--so-radius);
}

.so-about__text p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.75;
	color: #3D4550;
}

.so-about__text .so-sec-title {
	margin-bottom: 18px;
}

.so-about__call {
	margin-top: 22px !important;
	font-size: 19px;
}

.so-about__call a {
	color: var(--so-primary);
	text-decoration: none;
}

/* -------------------------------------------------- FAQ */

.so-accordion {
	max-width: 900px;
	margin-inline: auto;
	margin-top: 28px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	overflow: hidden;
}

.so-accordion__item + .so-accordion__item {
	border-top: 1px solid var(--so-border);
}

.so-accordion__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	font-size: 16px;
	font-weight: 600;
	color: var(--so-text);
	cursor: pointer;
	list-style: none;
	background: #fff;
}

.so-accordion__q::-webkit-details-marker {
	display: none;
}

.so-accordion__q:hover {
	color: var(--so-primary);
}

.so-accordion__q i {
	flex: none;
	font-size: 13px;
	color: var(--so-muted);
	transition: transform .2s ease;
}

.so-accordion__item[open] .so-accordion__q i {
	transform: rotate(180deg);
}

.so-accordion__a {
	padding: 0 22px 20px;
	font-size: 15px;
	line-height: 1.75;
	color: #3D4550;
	background: #fff;
}

.so-accordion__a p {
	margin: 0 0 12px;
}

.so-accordion__a ul,
.so-accordion__a ol {
	margin: 0 0 12px;
	padding-left: 20px;
}

.so-accordion__a li {
	margin-bottom: 6px;
}

.so-accordion__a li p {
	margin: 0;
}

/* -------------------------------------------------- contact */

.so-contact {
	position: relative;
	overflow: hidden;
	background: var(--so-light);
}

/* Soft blue glow behind the form card, so the section is not a flat slab. */
.so-contact::after {
	content: "";
	position: absolute;
	top: -160px;
	right: -140px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(60, 59, 110, .12) 0%, rgba(60, 59, 110, 0) 68%);
	pointer-events: none;
}

.so-contact > .so-container {
	position: relative;
	z-index: 1;
}

.so-contact__inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 28px;
	align-items: stretch;
	margin-top: 32px;
}

/* left column — dark contact panel */

.so-contact__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 34px 30px;
	border-radius: var(--so-radius);
	background: var(--so-dark);
	background-image: linear-gradient(160deg, var(--so-dark-2) 0%, var(--so-dark) 62%);
	box-shadow: var(--so-shadow-lg);
}

.so-contact__info .so-iconbox {
	padding: 18px 0;
	border-radius: 0;
	background: transparent;
	align-items: center;
	gap: 16px;
}

.so-contact__info .so-iconbox + .so-iconbox {
	border-top: 1px solid rgba(255, 255, 255, .09);
}

.so-contact__info .so-iconbox__icon,
.so-contact__info .so-iconbox::before {
	width: 46px;
	height: 46px;
	background: rgba(138, 136, 201, .18);
	color: var(--so-blue-light);
	transition: background-color .2s ease, color .2s ease;
}

.so-contact__info .so-iconbox:hover .so-iconbox__icon,
.so-contact__info .so-iconbox:hover::before {
	background: var(--so-blue);
	color: #fff;
}

.so-contact__info .so-iconbox__title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #8C949F;
}

.so-contact__info p.so-iconbox__desc {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.so-contact__info .so-iconbox__desc a {
	color: #fff;
	transition: color .2s ease;
}

.so-contact__info .so-iconbox__desc a:hover {
	color: var(--so-blue-light);
}

/* right column — form card */

.so-contact__form {
	position: relative;
	padding: 34px 32px 32px;
	border: 1px solid var(--so-border);
	border-top: 3px solid var(--so-blue);
	border-radius: var(--so-radius);
	background: #fff;
	box-shadow: var(--so-shadow-lg);
}

/*
 * Contact Form 7 runs the form markup through wpautop, so every field ends up
 * inside a `<p>`. The layout is therefore driven by flex/grid gaps on the
 * wrappers instead of margins on the fields themselves.
 */
.so-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.so-form p {
	margin: 0;
}

.so-form p:empty,
.so-form br {
	display: none;
}

.so-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.so-field {
	display: block;
}
.wp-block-navigation .wp-block-navigation__submenu-icon{
	margin-bottom: 8px;
}
.so-field__label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 700;
	color: var(--so-text);
}

.so-field__label em {
	font-style: normal;
	color: var(--so-primary);
}

.so-contact__form .wpcf7-form-control-wrap {
	display: block;
}

.so-contact__form input[type="text"],
.so-contact__form input[type="email"],
.so-contact__form input[type="tel"],
.so-contact__form textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: var(--so-light);
	color: var(--so-text);
	font-size: 14px;
	font-family: inherit;
	line-height: 1.5;
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.so-contact__form input::placeholder,
.so-contact__form textarea::placeholder {
	color: #9AA1AB;
}

.so-contact__form input[type="text"]:focus,
.so-contact__form input[type="email"]:focus,
.so-contact__form input[type="tel"]:focus,
.so-contact__form textarea:focus {
	outline: 0;
	border-color: var(--so-blue);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(60, 59, 110, .14);
}

.so-contact__form textarea {
	height: 148px;
	min-height: 148px;
	resize: vertical;
}

.so-form__foot {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-top: 2px;
}

.so-contact__form input[type="submit"],
.so-contact__form .wpcf7-submit {
	flex: none;
	width: auto;
	padding: 15px 34px;
	border: 0;
	border-radius: var(--so-radius);
	background: var(--so-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.so-contact__form input[type="submit"]:hover {
	background: var(--so-blue-dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(60, 59, 110, .32);
}

.so-contact__form input[type="submit"]:disabled {
	opacity: .6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.so-form__note {
	font-size: 13px;
	line-height: 1.5;
	color: var(--so-muted);
}

/* CF7 feedback */

.so-contact__form .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--so-primary-dark);
}

.so-contact__form .wpcf7-form-control.wpcf7-not-valid {
	border-color: var(--so-primary);
	background: var(--so-tint);
}

/*
 * Contact Form 7 ships its own stylesheet and it is enqueued after shop.css,
 * so the response banner rules need one extra class to win the cascade.
 */
.so-contact__form .wpcf7 .wpcf7-form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 13px 16px;
	border: 1px solid var(--so-border);
	border-left-width: 3px;
	border-radius: var(--so-radius);
	background: var(--so-light);
	font-size: 13px;
	line-height: 1.5;
	color: var(--so-text);
}

.so-contact__form .wpcf7 .wpcf7-form.sent .wpcf7-response-output {
	border-color: var(--so-border);
	border-left-color: #1F9D55;
}

.so-contact__form .wpcf7 .wpcf7-form.invalid .wpcf7-response-output,
.so-contact__form .wpcf7 .wpcf7-form.failed .wpcf7-response-output,
.so-contact__form .wpcf7 .wpcf7-form.aborted .wpcf7-response-output {
	border-color: var(--so-border);
	border-left-color: var(--so-primary);
}

.so-contact__form .wpcf7-spinner {
	margin: 0;
}

.so-contact__form .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* -------------------------------------------------- footer */

.so-footer {
	background: var(--so-dark);
	color: #A9B0BA;
	font-size: 14px;
}

.so-footer a {
	color: #A9B0BA;
	text-decoration: none;
}

.so-footer a:hover {
	color: #fff;
}

.so-footer__perks {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.so-footer__perks-inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	padding-block: 28px;
}

.so-perk {
	display: flex;
	align-items: center;
	gap: 14px;
}

.so-perk i {
	display: grid;
	place-items: center;
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--so-dark-2);
	color: var(--so-primary);
	font-size: 17px;
}

.so-perk strong {
	display: block;
	color: #fff;
	font-size: 14px;
}

.so-perk em {
	display: block;
	font-size: 12px;
	font-style: normal;
	color: #8B939E;
}

.so-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 40px;
	padding-block: 46px;
}

.so-footer__logo {
	display: flex;
	margin-bottom: 18px;
}

.so-footer__logo img,
.so-footer__logo .custom-logo {
	max-height: 72px;
	width: auto;
	height: auto;
}

.so-footer__logo .so-brand__text {
	font-size: 21px;
	font-weight: 700;
	color: #fff;
}

.so-footer__about {
	margin: 0 0 20px;
	line-height: 1.75;
	font-size: 13px;
	opacity: 0.5;
}

.so-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.so-footer__contacts li {
	display: flex;
	align-items: center;
	margin: 0;
}

.so-footer__contacts i {
	width: 20px;
	flex: none;
	color: var(--so-primary);
}

.so-footer__title {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
}

.so-footer__col .so-menu-list {
	flex-direction: column;
	align-items: flex-start;
	gap: 11px;
	font-size: 13px;
}

.so-footer__col .so-menu-list + .so-menu-list {
	margin-top: 11px;
}

.so-footer__col .sub-menu {
	display: none;
}

.so-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.so-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-block: 22px;
	font-size: 12px;
}

.so-footer__bottom-inner p {
	margin: 0;
}

.so-footer__disclaimer {
	color: #767E89;
}

.so-footer__pay {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 26px;
	color: #767E89;
}

.so-scroll-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 40;
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: var(--so-radius);
	background: var(--so-primary);
	color: #fff !important;
	cursor: pointer;
}

.so-scroll-top.is-visible {
	display: grid;
}

/* -------------------------------------------------- catalog page */

.so-shop-head {
	margin-top: 0;
	padding-block: 26px;
	background: var(--so-light);
	border-bottom: 1px solid var(--so-border);
}

.so-shop-head .woocommerce-breadcrumb {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--so-muted);
}

.so-shop-head .woocommerce-breadcrumb a {
	color: var(--so-muted);
	text-decoration: none;
}

.so-shop-head .woocommerce-breadcrumb a:hover {
	color: var(--so-primary);
}

.so-shop-title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
}

.so-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--so-border);
}

.so-shop-toolbar .wc-block-catalog-sorting,
.so-shop-toolbar .wc-block-product-results-count {
	margin: 0;
	font-size: 14px;
	color: var(--so-muted);
}

.so-shop-toolbar select {
	padding: 9px 12px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	font-size: 14px;
	background: #fff;
}

.wp-block-columns.so-shop-layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.wp-block-columns.so-shop-layout > .wp-block-column {
	min-width: 0;
	flex-basis: auto;
}

.so-shop-sidebar {
	position: sticky;
	top: 20px;
	padding: 22px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
}

.so-shop-sidebar .wp-block-heading {
	margin: 0 0 14px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.so-shop-sidebar + .so-shop-sidebar,
.so-shop-sidebar__block + .so-shop-sidebar__block {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--so-border);
}

.so-shop-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

.so-shop-sidebar li {
	margin-bottom: 9px;
}

.so-shop-sidebar a {
	color: var(--so-text);
	text-decoration: none;
}

.so-shop-sidebar a:hover {
	color: var(--so-primary);
}

/* -------------------------------------------------- catalog facets */

/*
 * The toggle is a phone-only affordance: on desktop the facets are always
 * open, so it is hidden there and the panel ignores the collapsed state.
 */
.so-filters__toggle {
	display: none;
	width: 100%;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: var(--so-light);
	color: var(--so-text);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
}

.so-filters__toggle-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.so-filters__toggle-count {
	min-width: 22px;
	padding: 2px 7px;
	border-radius: 999px;
	background: var(--so-primary);
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

.so-filters__toggle-caret {
	margin-left: auto;
	font-size: 12px;
	transition: transform .2s ease;
}

.so-filters__toggle[aria-expanded="true"] .so-filters__toggle-caret {
	transform: rotate(180deg);
}

.so-filters__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
}

.so-filters__head .wp-block-heading {
	margin-bottom: 0;
}

.so-filters__clear {
	font-size: 13px;
	font-weight: 600;
	color: var(--so-primary);
	white-space: nowrap;
}

.so-filters__clear:hover {
	text-decoration: underline;
}

.so-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px !important;
}

.so-chips li {
	margin-bottom: 0;
}

.so-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	padding: 5px 10px;
	border: 1px solid var(--so-primary);
	border-radius: 999px;
	background: var(--so-tint);
	color: var(--so-primary) !important;
	font-size: 13px;
	line-height: 1.4;
}

.so-chip span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.so-chip i {
	flex: none;
	font-size: 11px;
	opacity: .7;
}

.so-chip:hover {
	background: var(--so-primary);
	color: #fff !important;
}

.so-chip:hover i {
	opacity: 1;
}

.so-filters__up {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--so-muted) !important;
}

.so-filters__up:hover {
	color: var(--so-primary) !important;
}

.so-filters__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.4;
}

.so-filters__name {
	flex: 1 1 auto;
	min-width: 0;
}

.so-filters__list .so-cat__count {
	flex: none;
	color: var(--so-muted);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.so-filters__list a.is-active,
.so-filters__list a[aria-current="page"] {
	color: var(--so-primary);
	font-weight: 700;
}

/* Long attribute lists scroll in place rather than pushing the help card
   hundreds of pixels below the fold. */
.so-filters__list.is-scrollable {
	max-height: 260px;
	overflow-y: auto;
	padding-right: 6px;
	overscroll-behavior: contain;
}

.so-filters__check {
	cursor: pointer;
}

.so-filters__box {
	display: inline-flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	border: 1px solid var(--so-border);
	border-radius: 3px;
	background: #fff;
	color: transparent;
	font-size: 10px;
	transition: background-color .15s ease, border-color .15s ease;
}

.so-filters__check:hover .so-filters__box {
	border-color: var(--so-primary);
}

.so-filters__check.is-active .so-filters__box {
	border-color: var(--so-primary);
	background: var(--so-primary);
	color: #fff;
}

.so-price__row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.so-price__field {
	position: relative;
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	align-items: center;
}

.so-price__currency {
	position: absolute;
	left: 10px;
	color: var(--so-muted);
	font-size: 13px;
	pointer-events: none;
}

.so-price__field input {
	width: 100%;
	min-width: 0;
	padding: 9px 8px 9px 24px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
	color: var(--so-text);
	font-size: 14px;
}

.so-price__field input:focus {
	outline: none;
	border-color: var(--so-primary);
}

.so-price__dash {
	flex: none;
	color: var(--so-muted);
}

.so-price__submit {
	width: 100%;
	margin-top: 10px;
	padding: 9px 14px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: var(--so-light);
	color: var(--so-text);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.so-price__submit:hover {
	border-color: var(--so-primary);
	background: var(--so-primary);
	color: #fff;
}

/* -------------------------------------------------- filter widgets */

/*
 * Skin for whatever is dropped into the "Catalog Filters" widget area, so
 * WooCommerce's own filter widgets read as part of the sidebar instead of as
 * bare plugin output.
 *
 * Specificity note: woocommerce.css is enqueued *after* this file, and every
 * WooCommerce widget rule is scoped under `.woocommerce` — a class the widget
 * wrapper itself carries, so `.so-widget.widget_price_filter …` only ever ties
 * and would lose on source order. Hence the `.so-shop-sidebar` ancestor on
 * every selector below plus the widget's own `widget_*` class where a
 * WooCommerce declaration has to be beaten: that puts each rule a full class
 * ahead of its counterpart.
 */

.so-shop-sidebar .so-widget {
	font-size: 14px;
}

/* Widgets that render nothing (a layered nav with no terms in view) still emit
   their wrapper, which would otherwise leave an empty bordered gap. */
.so-shop-sidebar .so-widget:empty {
	display: none;
}

.so-shop-sidebar .so-widget p:last-child,
.so-shop-sidebar .so-widget form {
	margin-bottom: 0;
}

/* ---- shared list rows (layered nav, categories, rating) ---- */

.so-shop-sidebar .so-widget .woocommerce-widget-layered-nav-list li,
.so-shop-sidebar .so-widget .product-categories li,
.so-shop-sidebar .so-widget.widget_rating_filter ul li {
	display: flex;
	align-items: baseline;
	gap: 10px;
	line-height: 1.4;
}

.so-shop-sidebar .so-widget .woocommerce-widget-layered-nav-list li > a,
.so-shop-sidebar .so-widget .woocommerce-widget-layered-nav-list li > span:not(.count),
.so-shop-sidebar .so-widget .product-categories li > a,
.so-shop-sidebar .so-widget.widget_rating_filter ul li > a {
	flex: 1 1 auto;
	min-width: 0;
}

.so-shop-sidebar .so-widget .count {
	flex: none;
	color: var(--so-muted);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

/* Long term lists scroll in place rather than pushing the help card hundreds
   of pixels below the fold. Short lists are untouched — `max-height` on its own
   never stretches a box. */
.so-shop-sidebar .so-widget .woocommerce-widget-layered-nav-list,
.so-shop-sidebar .so-widget .product-categories {
	max-height: 300px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

/* ---- layered nav (Filter Products by Attribute) ---- */

.so-shop-sidebar .so-widget.widget_layered_nav .woocommerce-widget-layered-nav-list__item > a {
	padding: 0;
}

.so-shop-sidebar .so-widget.widget_layered_nav .woocommerce-widget-layered-nav-list__item--chosen > a {
	color: var(--so-primary);
	font-weight: 700;
}

/*
 * WooCommerce prints the "remove" glyph as an ::before in its own icon font,
 * hard-coded to `--wc-red`. Recolouring it beats swapping the content out:
 * the icon font is already loaded and the mark stays meaningful.
 */
.so-shop-sidebar .so-widget.widget_layered_nav .woocommerce-widget-layered-nav-list__item--chosen > a::before {
	margin-right: 7px;
	color: var(--so-primary);
}

.so-shop-sidebar .so-widget .woocommerce-widget-layered-nav-dropdown select,
.so-shop-sidebar .so-widget select {
	width: 100%;
	max-width: 100%;
	padding: 9px 10px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
	color: var(--so-text);
	font-size: 14px;
}

.so-shop-sidebar .so-widget.widget_layered_nav .woocommerce-widget-layered-nav-dropdown__submit {
	margin-top: 10px;
}

/* ---- active filters (Active Product Filters) ---- */

.so-shop-sidebar .so-widget.widget_layered_nav_filters ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	overflow: visible;
}

.so-shop-sidebar .so-widget.widget_layered_nav_filters ul li {
	float: none;
	margin-bottom: 0;
	padding: 0;
}

/*
 * The label and the formatted price are separate text runs ("Min" + a
 * `<span class="amount">`), so flexing the anchor drops the whitespace between
 * them — `gap` puts it back, and the remove glyph's own margin is zeroed so it
 * is not spaced twice.
 */
.so-shop-sidebar .so-widget.widget_layered_nav_filters ul li a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: 100%;
	padding: 5px 10px;
	border: 1px solid var(--so-primary);
	border-radius: 999px;
	background: var(--so-tint);
	color: var(--so-primary);
	font-size: 13px;
	line-height: 1.4;
}

.so-shop-sidebar .so-widget.widget_layered_nav_filters ul li a::before {
	margin-right: 0;
	color: inherit;
}

.so-shop-sidebar .so-widget.widget_layered_nav_filters ul li a:hover {
	background: var(--so-primary);
	color: #fff;
}

/* ---- price filter ---- */

.so-shop-sidebar .so-widget.widget_price_filter .price_slider {
	margin: 6px 0 18px;
}

.so-shop-sidebar .so-widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
	height: 4px;
	border-radius: 999px;
	background-color: var(--so-border);
}

.so-shop-sidebar .so-widget.widget_price_filter .ui-slider .ui-slider-range {
	background-color: var(--so-primary);
}

.so-shop-sidebar .so-widget.widget_price_filter .ui-slider .ui-slider-handle {
	top: -5px;
	width: 14px;
	height: 14px;
	border: 2px solid #fff;
	border-radius: 999px;
	background-color: var(--so-primary);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

/*
 * The stock template lays the two inputs, the button and the price label out
 * with floats and `text-align: right`. Grid puts the fields side by side and
 * drops the button on its own row, which is the same shape as the built-in
 * price facet above.
 */
.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	line-height: 1.4;
	text-align: left;
	font-size: 14px;
}

.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount input[type="text"] {
	width: 100%;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
	color: var(--so-text);
	font-size: 14px;
}

.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount input[type="text"]:focus {
	outline: none;
	border-color: var(--so-primary);
}

.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount .button {
	grid-column: 1 / -1;
	float: none;
	width: 100%;
	margin: 0;
	padding: 9px 14px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: var(--so-light);
	color: var(--so-text);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount .button:hover {
	border-color: var(--so-primary);
	background: var(--so-primary);
	color: #fff;
}

/* The label is `display:none` until the slider script reveals it; it must span
   both columns once it does. */
.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount .price_label {
	grid-column: 1 / -1;
	color: var(--so-muted);
	font-size: 13px;
}

.so-shop-sidebar .so-widget.widget_price_filter .price_slider_amount .clear {
	display: none;
}

/* ---- product categories ---- */

.so-shop-sidebar .so-widget .product-categories .children {
	flex-basis: 100%;
	margin: 8px 0 0;
	padding-left: 14px;
	border-left: 1px solid var(--so-border);
}

.so-shop-sidebar .so-widget .product-categories li.current-cat > a {
	color: var(--so-primary);
	font-weight: 700;
}

/* ---- rating filter ---- */

.so-shop-sidebar .so-widget.widget_rating_filter ul li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
}

.so-shop-sidebar .so-widget.widget_rating_filter ul li .star-rating {
	float: none;
	color: var(--so-primary);
}

/* ---- product search ---- */

.so-shop-sidebar .so-widget .woocommerce-product-search {
	display: flex;
	gap: 8px;
}

.so-shop-sidebar .so-widget .woocommerce-product-search .search-field {
	flex: 1 1 auto;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	font-size: 14px;
}

.so-shop-sidebar .so-widget .woocommerce-product-search button {
	flex: none;
	padding: 9px 14px;
	border: 0;
	border-radius: var(--so-radius);
	background: var(--so-primary);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

/*
 * HUSKY/WOOF ships a full skin of its own, so it is only kept inside the rail
 * rather than restyled — overriding it here would fight the plugin's own
 * per-filter design settings.
 */
.so-shop-sidebar .so-widget .woof,
.so-shop-sidebar .so-widget .woof_container {
	max-width: 100%;
}

.so-shop-sidebar .so-widget .woof img.woof_preloader,
.so-shop-sidebar .so-widget .woof .woof_submit_search_form_container {
	max-width: 100%;
}

/* -------------------------------------------------- sidebar help card */

/*
 * Breaks out of the sidebar's white background so it reads as an offer rather
 * than one more filter group — the previous version was an icon box that
 * disappeared under the category list.
 */
.so-shop-sidebar__block.so-help {
	margin: 24px -22px -22px;
	padding: 22px;
	border: 0;
	border-radius: 0 0 var(--so-radius) var(--so-radius);
	background: linear-gradient(160deg, var(--so-dark) 0%, var(--so-dark-2) 100%);
	color: #fff;
}

.so-help__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--so-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/*
 * Scoped through `.so-help` on purpose: theme.json emits `:root :where(p)`
 * inline, which ties a bare `.so-help__title` on specificity and wins on
 * source order — the copy would render dark-on-dark.
 */
.so-help .so-help__title {
	margin: 0 0 6px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.so-help .so-help__text {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
	line-height: 1.55;
}

.so-help__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 14px;
	border-radius: var(--so-radius);
	background: var(--so-primary);
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	transition: background-color .15s ease;
}

.so-help__cta:hover {
	background: var(--so-primary-dark);
}

.so-help__link {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 10px;
	color: rgba(255, 255, 255, .82) !important;
	font-size: 13px;
	word-break: break-word;
}

.so-help__link:hover {
	color: #fff !important;
}

.so-help .so-help__hours {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	color: rgba(255, 255, 255, .6);
	font-size: 12px;
}

.so-pagination {
	margin-top: 36px;
}

.so-pagination .wp-block-query-pagination-numbers,
.so-pagination .wc-block-product-collection__pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.so-pagination .page-numbers,
.so-pagination .wp-block-query-pagination-previous,
.so-pagination .wp-block-query-pagination-next {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	background: #fff;
	color: var(--so-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.so-pagination .page-numbers.current,
.so-pagination .page-numbers:hover,
.so-pagination .wp-block-query-pagination-previous:hover,
.so-pagination .wp-block-query-pagination-next:hover {
	background: var(--so-primary);
	border-color: var(--so-primary);
	color: #fff;
}

.so-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* -------------------------------------------------- single product */

.wp-block-columns.so-product__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	padding-block: 36px;
}

.wp-block-columns.so-product__top > .wp-block-column {
	min-width: 0;
	flex-basis: auto;
}

/* Frame only the outer block wrapper — the inner .woocommerce-product-gallery
   is nested inside it and would otherwise draw a second border and padding. */
.so-product__gallery .wp-block-woocommerce-product-image-gallery {
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	padding: 16px;
	background: #fff;
}

.so-product__gallery .woocommerce-product-gallery {
	border: 0;
	padding: 0;
	width: 100% !important;
	background: transparent;
}

.so-product__gallery .woocommerce-product-gallery__wrapper,
.so-product__gallery .woocommerce-product-gallery__image {
	width: 100%;
	margin: 0;
}

.so-product__gallery img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--so-radius);
}

.so-product__gallery .zoomImg {
	width: auto;
}

.so-product__gallery .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.so-product__gallery .flex-control-thumbs li {
	flex: 0 0 calc(25% - 8px);
	margin: 0;
}

.so-product__gallery .flex-control-thumbs img {
	border: 1px solid var(--so-border);
	cursor: pointer;
	opacity: .7;
}

.so-product__gallery .flex-control-thumbs img.flex-active,
.so-product__gallery .flex-control-thumbs img:hover {
	border-color: var(--so-primary);
	opacity: 1;
}

.so-product__summary .wp-block-post-title,
.so-product__summary .so-product__title {
	margin: 6px 0 12px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
}

.so-product__summary .wc-block-components-product-rating {
	margin-bottom: 14px;
}

.so-product__summary .wp-block-woocommerce-product-price,
.so-product__summary .price {
	font-size: 30px;
	font-weight: 700;
	color: var(--so-text);
}

.so-product__summary .price del {
	margin-right: 10px;
	font-size: 19px;
	font-weight: 400;
	color: var(--so-muted);
}

.so-product__summary .price ins {
	text-decoration: none;
	color: var(--so-primary);
}

.so-product__meta-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 20px 0;
	padding: 16px 20px;
	border-radius: var(--so-radius);
	background: var(--so-light);
	font-size: 13px;
	color: var(--so-muted);
}

.so-product__meta-strip i {
	margin-right: 8px;
	color: var(--so-primary);
}

.so-product__summary form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 22px 0;
}

.so-product__summary form.cart .quantity input {
	width: 84px;
	padding: 13px 10px;
	border: 1px solid var(--so-border);
	border-radius: var(--so-radius);
	text-align: center;
	font-size: 15px;
}

.so-product__summary form.cart button[type="submit"],
.so-product__summary .single_add_to_cart_button {
	padding: 15px 34px;
	border: 0;
	border-radius: var(--so-radius);
	background: var(--so-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
}
.wp-block-add-to-cart-form .quantity{
	display: none !important;
}
.so-product__summary form.cart button[type="submit"]:hover,
.so-product__summary .single_add_to_cart_button:hover {
	background: var(--so-primary-dark);
	color: #fff !important;
}
.tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button{
	margin-top: 0 !important;
}
.so-product__summary .product_meta {
	width: 100%;
	padding-top: 18px;
	border-top: 1px solid var(--so-border);
	font-size: 13px;
	color: var(--so-muted);
}
.taxonomy-product_cat.wp-block-post-terms{
	display: none;
}
.so-product__summary .product_meta a {
	color: var(--so-text);
	text-decoration: none;
}

.so-product__summary .product_meta a:hover {
	color: var(--so-primary);
}

.so-product__tabs .wc-tabs,
.so-product__tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--so-border);
}

.so-product__tabs ul.tabs li {
	margin: 0;
}

.so-product__tabs ul.tabs li a {
	display: block;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--so-muted);
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.so-product__tabs ul.tabs li.active a {
	color: var(--so-text);
	border-bottom-color: var(--so-primary);
}

.so-product__tabs .panel h2 {
	font-size: 20px;
}
.wp-block-group.so-banner{
	margin-top: 0;
}
.wp-block-group.so-special{
	margin-top: 0 !important;
}
/* -------------------------------------------------- responsive */

@media (max-width: 1200px) {
	.so-cat-grid--6 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.so-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-block-columns.so-shop-layout {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 26px;
	}

	.so-products .wc-block-product-template.columns-5,
	.so-products .wc-block-product-template.columns-6 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.so-section {
		padding-block: 40px;
	}

	.so-header__main-inner {
		flex-wrap: wrap;
		gap: 16px;
		padding-block: 16px;
	}

	.so-search {
		order: 3;
		flex-basis: 100%;
		max-width: none;
	}

	.so-action--text {
		display: none;
	}

	.so-header__nav-aside {
		display: none;
	}

	.so-grid--3,
	.so-footer__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.so-about__inner,
	.so-contact__inner,
	.wp-block-columns.so-product__top {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.wp-block-columns.so-shop-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.so-shop-sidebar {
		position: static;
		padding: 0;
		border: 0;
	}

	/*
	 * Below the desktop breakpoint the facets sit above the grid, so they are
	 * collapsed behind a toggle — a 130-term category list would otherwise
	 * push the first product off the screen entirely.
	 */
	.so-filters__toggle {
		display: flex;
	}

	.so-shop-sidebar__body {
		display: none;
		margin-top: 12px;
		padding: 22px;
		border: 1px solid var(--so-border);
		border-radius: var(--so-radius);
		background: #fff;
	}

	.so-shop-sidebar.is-open .so-shop-sidebar__body {
		display: block;
	}

	.so-shop-sidebar__body > .so-shop-sidebar__block:first-child {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
	}

	.so-banner--wide .so-banner__inner {
		max-width: 100%;
		padding: 34px 26px;
	}

	.so-banner__inner {
		max-width: 100%;
	}

	.so-products .wc-block-product-template.columns-4,
	.so-products .wc-block-product-template.columns-5,
	.so-products .wc-block-product-template.columns-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.so-container {
		padding-inline: 16px;
	}

	.so-topbar__inner .so-menu-list {
		display: none;
	}

	.so-cat-grid--6,
	.so-cat-grid--3,
	.so-grid--2,
	.so-grid--3,
	.so-footer__perks-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.so-cat--wide {
		flex-direction: column;
		text-align: center;
	}

	.so-hero__slide,
	.so-hero__inner {
		min-height: 380px;
	}

	.so-hero__arrow {
		display: none;
	}

	.so-promo {
		padding: 22px;
	}

	.so-form__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.so-contact__info {
		padding: 22px 20px;
	}

	.so-contact__form {
		padding: 26px 20px 24px;
	}

	.so-form__foot {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.so-contact__form input[type="submit"],
	.so-contact__form .wpcf7-submit {
		width: 100%;
	}

	.so-sec-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.so-sec-title {
		font-size: 24px;
	}

	.so-products .wc-block-product-template {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}
	.so-search__input{
		border-left: none;
		margin-left: 0;
	}
	.so-tabs__nav {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.so-tabs__btn {
		white-space: nowrap;
	}
	#modal-1-content ul.so-nav{
		width: 100%;
	}
	#modal-1-content ul.so-nav > li{
		width: 100%;
		position: relative;
		padding-right: 30px;
	}
	#modal-1-content ul.so-nav .wp-block-navigation-submenu__toggle{
		position: absolute;
		right: 0;
		top: 4px;
	}
	#modal-1-content ul.so-nav .wp-block-navigation__submenu-container{
		padding-left: 0 !important;
	}
	#modal-1-content ul.so-nav .wp-block-navigation__submenu-container li {
		margin-bottom: 8px;
	}
	#content{
		padding-top: 0;
		padding-left: 16px !important;
		padding-right: 16px !important;

	}
	.woocommerce div.product form.cart button.single_add_to_cart_button{
		width: 100%;
	}
	.wp-block-group.so-shop-head{
		padding: 16px;
	}
	.wp-block-group.so-hero{
		margin-left: -16px;
		margin-right: -16px;
	}
	.wp-block-group.so-section > .so-container{
		padding-left: 0;
		padding-right: 0;
	}
	.so-cat-grid.so-cat-grid--3{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.wp-block-group.so-contact,
	.wp-block-group.so-about{
		margin-left: -16px;
		margin-right: -16px;
	}
	.wp-block-group.so-contact > .so-container,
	.wp-block-group.so-about > .so-container{
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 575px) {
	.so-trust,
	.so-footer__main,
	.so-footer__perks-inner,
	.so-grid--2,
	.so-grid--3 {
		grid-template-columns: minmax(0, 1fr);
	}

	.so-cat-grid--6,
	.so-cat-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.so-search__cat {
		display: none;
	}
}

/* --------------------------------------- global-styles specificity guards */

/*
 * theme.json emits `:root :where(p)`, `:root :where(h2)` … rules that load
 * after this file and would otherwise win the cascade against a plain class.
 * Re-declaring the handful of type styles behind `:root` restores them.
 */

:root .so-topbar__notice {
	color: #C6CBD2;
	font-size: 13px;
}

:root .so-hero__title {
	color: #fff;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.1;
}

:root .so-hero__text {
	color: #D3D8DF;
	font-size: 16px;
	line-height: 1.6;
}

:root .so-page-title {
	color: var(--so-muted);
	font-size: 15px;
	font-weight: 500;
}

:root .so-sec-title {
	color: var(--so-text);
	font-size: 30px;
	line-height: 1.2;
}

:root .so-sec-sub {
	color: var(--so-muted);
	font-size: 15px;
}

:root .so-promo__title {
	color: #fff;
	font-size: 21px;
	line-height: 1.3;
}

:root .so-promo__sub {
	color: #A9B0BA;
	font-size: 14px;
}

:root .so-special__title {
	color: var(--so-text);
	font-size: 18px;
}

p.so-special__sub {
	color: var(--so-muted);
	font-size: 13px;
	line-height: 1.6;
	margin-top: 6px;
}

:root .so-about__text p {
	color: #3D4550;
	font-size: 15px;
	line-height: 1.75;
}

:root .so-about__call {
	font-size: 19px;
}

:root .so-accordion__a,
:root .so-accordion__a p,
:root .so-accordion__a li {
	color: #3D4550;
	font-size: 15px;
	line-height: 1.75;
}

:root .so-shop-title {
	color: var(--so-text);
	font-size: 30px;
}

:root .so-footer__about,
:root .so-footer__contacts,
:root .so-footer p {
	color: #A9B0BA;
	font-size: 13px;
}

:root .so-footer__title {
	color: #fff;
	font-size: 14px;
}

:root .so-footer__disclaimer {
	color: #767E89;
	font-size: 12px;
}

:root .so-product__title {
	font-size: 28px;
	line-height: 1.25;
}

@media (max-width: 767px) {
	:root .so-sec-title {
		font-size: 24px;
	}

	:root .so-hero__title {
		font-size: clamp(24px, 7vw, 34px);
	}

	:root .so-shop-title {
		font-size: 22px;
	}

	:root .so-product__title {
		font-size: 22px;
	}

	.so-product__summary .wp-block-woocommerce-product-price,
	.so-product__summary .price {
		font-size: 24px;
	}

	.so-banner--wide .so-banner__title {
		font-size: 22px;
	}
}

/* ------------------------------------------------------------------ page head
   Replaces the stock stadium cover on inner pages (page, cart, checkout,
   search, blog, single post). Flat dark band, no photography. */
.so-pagehead {
	margin: 0 0 32px;
	padding: 34px 20px;
	background-color: var(--so-dark);
	background-image: linear-gradient(120deg, var(--so-dark) 0%, var(--so-dark-2) 100%);
	border-bottom: 3px solid var(--so-primary);
}

:root .so-pagehead .so-pagehead__title {
	margin: 0;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.25;
}

.so-pagehead .so-pagehead__meta {
	margin-top: 10px;
}

:root .so-pagehead .so-pagehead__meta,
:root .so-pagehead .so-pagehead__meta a {
	color: rgba(255, 255, 255, .7);
	font-size: 14px;
	text-decoration: none;
}
.woocommerce div.product form.cart::after, .woocommerce div.product form.cart::before{
	display: none !important;
}
@media (max-width: 767px) {
	.so-pagehead {
		margin-bottom: 24px;
		padding: 24px 16px;
	}

	:root .so-pagehead .so-pagehead__title {
		font-size: 23px;
	}
}
@media (min-width: 993px) {
	.so-about__inner{
		align-items: flex-start;
	}
	.so-about__inner .so-about__media,
	.so-about__inner .so-about__text{
		position: sticky;
		top: 16px;
	}
}
@media (max-width: 1025px){
	.so-topbar__notice{
		display: none !important;
	}
}
