body.srf-woo-template {
	color: #231f20;
	background: #fff;
	font-family: Arial, Helvetica, sans-serif;
}

body.srf-woo-template #masthead,
body.srf-woo-template #colophon {
	display: none !important;
}

.srf-template-shell,
.srf-template-footer {
	width: 100%;
	background: #fff;
	color: #231f20;
}

.srf-template-topbar {
	min-height: 35px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	background: #d8d8d8;
	font-size: 13px;
	padding: 0 4vw;
}

.srf-template-topbar p {
	margin: 0;
	font-weight: 700;
}

.srf-template-topbar div:last-child {
	justify-self: end;
	display: flex;
	gap: 24px;
	font-size: 12px;
	font-weight: 400;
}

.srf-template-topbar a {
	color: #231f20;
	text-decoration: underline;
}

.srf-template-header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 23px 4vw 18px;
	border-bottom: 1px solid #eee;
}

.srf-template-search {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 14px;
	color: #222;
}

.srf-template-search button {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.srf-template-search span {
	width: 22px;
	height: 22px;
	border: 2px solid #231f20;
	border-radius: 50%;
	position: relative;
	display: inline-block;
}

.srf-template-search span::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	right: -7px;
	bottom: 0;
	background: #231f20;
	transform: rotate(45deg);
}

.srf-template-search input[type="search"] {
	width: 128px;
	border: 0;
	border-bottom: 1px solid transparent;
	border-radius: 0;
	padding: 5px 0;
	background: transparent;
	color: #231f20;
	font-size: 14px;
	font-weight: 700;
	outline: none;
}

.srf-template-search input[type="search"]::placeholder {
	color: #231f20;
	opacity: 1;
}

.srf-template-search:focus-within input[type="search"] {
	border-bottom-color: #231f20;
}

.srf-template-logo img {
	width: 200px;
	height: auto;
	display: block;
}

.srf-template-icons {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 30px;
}

.srf-template-icons a {
	width: 28px;
	height: 28px;
	color: #231f20;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.srf-icon-account::before {
	content: "";
	position: absolute;
	inset: 4px 7px 13px;
	border: 2px solid #231f20;
	border-radius: 50%;
}

.srf-icon-account::after {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	bottom: 2px;
	height: 13px;
	border: 2px solid #231f20;
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
}

.srf-icon-cart::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 7px;
	width: 18px;
	height: 13px;
	border: 2px solid #231f20;
	border-top: 0;
	transform: skewX(-8deg);
}

.srf-icon-cart::after {
	content: "";
	position: absolute;
	left: 1px;
	top: 1px;
	width: 9px;
	height: 2px;
	background: #231f20;
	transform: rotate(25deg);
}

.srf-icon-cart span {
	position: absolute;
	top: -6px;
	right: -8px;
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #777;
	color: #fff;
	font-size: 10px;
	line-height: 1;
}

.srf-template-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	padding: 0 16px;
	border-bottom: 1px solid #ddd;
	text-transform: uppercase;
	letter-spacing: .03em;
	font-size: 14px;
	position: relative;
	z-index: 20;
}

.srf-template-nav a,
.srf-nav-link {
	color: #454545;
	text-decoration: none;
}

.srf-nav-item {
	display: flex;
	align-items: center;
	padding: 0 17px;
	min-height: 48px;
}

.srf-nav-link {
	display: flex;
	align-items: center;
	min-height: 48px;
	white-space: nowrap;
}

.srf-nav-item.has-mega .srf-nav-link::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .65;
}

.srf-mega-menu {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	display: none;
	background: #fff;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
	text-transform: none;
	letter-spacing: 0;
	z-index: 30;
}

.srf-nav-item:hover .srf-mega-menu,
.srf-nav-item:focus-within .srf-mega-menu {
	display: block;
}

.srf-mega-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(260px, .85fr) minmax(0, 1.3fr);
	gap: 42px;
	padding: 32px 48px 38px;
}

.srf-mega-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px 30px;
	align-content: start;
}

.srf-mega-links h2 {
	grid-column: 1 / -1;
	margin: 0 0 4px;
	font-size: 16px;
	line-height: 1.2;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.srf-mega-links h2 a,
.srf-mega-links h3,
.srf-mega-links a {
	color: #231f20;
}

.srf-mega-links h3 {
	margin: 0 0 12px;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
	text-transform: none;
}

.srf-mega-links div a {
	display: block;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
}

.srf-mega-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 318px));
	justify-content: start;
	gap: 20px;
}

.srf-mega-cards a {
	position: relative;
	display: block;
	color: #231f20;
	text-align: center;
	text-decoration: none;
}

.srf-mega-cards img {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: cover;
	background: #f5f5f5;
}

.srf-mega-cards span {
	display: block;
	margin-top: 12px;
	color: #777;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.srf-mega-cards strong {
	display: block;
	margin-top: 4px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.05;
}

.srf-mega-cards em {
	position: absolute;
	left: 50%;
	bottom: 78px;
	transform: translateX(-50%);
	display: inline-block;
	padding: 12px 28px;
	background: #fff;
	color: #231f20;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .05em;
}

body.srf-woo-template .site-content .ast-container {
	max-width: 1320px;
	padding: 48px 5vw 86px;
}

body.srf-woo-template.woocommerce-shop .site-content .ast-container,
body.srf-woo-template.tax-product_cat .site-content .ast-container {
	padding-top: 16px;
}

@media (min-width: 922px) {
	body.srf-woo-template.single-product .site-content .ast-container {
		max-width: 1440px;
		padding-right: 64px;
		padding-left: 64px;
	}
}

.srf-archive-layout {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr) 230px;
	column-gap: 34px;
	align-items: start;
}

body.srf-woo-template .woocommerce-breadcrumb {
	color: #777;
	font-size: 14px;
	margin-bottom: 28px;
}

body.srf-woo-template.tax-product_cat .woocommerce-breadcrumb,
body.srf-woo-template.woocommerce-shop .woocommerce-breadcrumb,
body.srf-woo-template.tax-product_cat .woocommerce-products-header,
body.srf-woo-template.woocommerce-shop .woocommerce-products-header {
	width: 100%;
}

body.srf-woo-template.tax-product_cat .woocommerce-breadcrumb,
body.srf-woo-template.woocommerce-shop .woocommerce-breadcrumb {
	display: none;
}

body.srf-woo-template .woocommerce-breadcrumb a {
	color: #777;
	text-decoration: none;
}

body.srf-woo-template .woocommerce-products-header__title,
body.srf-woo-template div.product .product_title,
body.srf-woo-template .related.products > h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	color: #231f20;
	letter-spacing: 0;
}

body.srf-woo-template .woocommerce-products-header__title {
	font-size: 28px;
	margin: 0 0 20px;
	text-align: center;
}

body.srf-woo-template .term-description {
	max-width: 560px;
	margin: 0 auto;
	font-size: 16px;
	color: #333;
	text-align: center;
	line-height: 1.45;
}

body.srf-woo-template .woocommerce-products-header {
	background: #f4f4f4;
	margin: 0 0 28px;
	padding: 44px 24px 46px;
}

.srf-archive-sidebar {
	grid-column: 1;
	grid-row: 1 / 3;
	float: none;
	width: auto;
	padding: 0 34px 30px 6px;
	border-right: 1px solid #e2e2e2;
	margin: 0;
}

.srf-archive-sidebar h2 {
	margin: 0 0 30px;
	font-size: 21px;
	letter-spacing: .04em;
}

.srf-archive-sidebar h3,
.srf-archive-sidebar a {
	display: block;
	color: #231f20;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.2;
}

.srf-archive-sidebar h3 {
	margin: 0 0 9px;
	font-weight: 800;
}

.srf-archive-sidebar a {
	margin: 0 0 10px;
}

.srf-archive-sidebar h3:not(:first-of-type) {
	margin-top: 26px;
}

body.srf-woo-template .woocommerce-result-count,
body.srf-woo-template .woocommerce-ordering {
	margin-bottom: 44px;
	color: #333;
}

body.srf-woo-template.tax-product_cat .woocommerce-notices-wrapper:empty,
body.srf-woo-template.woocommerce-shop .woocommerce-notices-wrapper:empty {
	display: none;
}

body.srf-woo-template.tax-product_cat .woocommerce-result-count,
body.srf-woo-template.woocommerce-shop .woocommerce-result-count {
	grid-column: 2;
	grid-row: 1;
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 0;
	float: none !important;
}

body.srf-woo-template.tax-product_cat .woocommerce-ordering,
body.srf-woo-template.woocommerce-shop .woocommerce-ordering {
	grid-column: 3;
	grid-row: 1;
	font-size: 16px;
	margin-bottom: 0;
	float: none !important;
	width: auto;
}

body.srf-woo-template.tax-product_cat .woocommerce-ordering::before,
body.srf-woo-template.woocommerce-shop .woocommerce-ordering::before {
	content: "Sort by: ";
	font-weight: 700;
}

body.srf-woo-template .woocommerce-ordering select {
	min-width: 160px;
	border: 0;
	border-bottom: 1px solid #a7a7a7;
	border-radius: 0;
	background: transparent;
	font-weight: 800;
}

body.srf-woo-template ul.products {
	gap: 46px 24px;
}

body.srf-woo-template.tax-product_cat ul.products,
body.srf-woo-template.woocommerce-shop ul.products {
	grid-column: 2 / 4;
	grid-row: 2;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	clear: none !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding-top: 22px;
	gap: 46px 24px;
}

body.srf-woo-template.tax-product_cat ul.products li.product,
body.srf-woo-template.woocommerce-shop ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

body.srf-woo-template ul.products li.product {
	text-align: left;
}

body.srf-woo-template ul.products li.product a img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin-bottom: 16px;
	background: #f5f5f5;
}

body.srf-woo-template ul.products li.product .ast-woo-product-category {
	color: #858b95;
	font-size: 13px;
	margin-bottom: 12px;
}

body.srf-woo-template ul.products li.product .woocommerce-loop-product__title {
	color: #231f20;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
	padding: 0;
	margin: 0 0 8px;
}

body.srf-woo-template ul.products li.product .price {
	color: #231f20;
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 22px;
}

body.srf-woo-template.tax-product_cat ul.products li.product .button,
body.srf-woo-template.woocommerce-shop ul.products li.product .button,
body.srf-woo-template.single-product .related.products ul.products li.product .button {
	display: none;
}

body.srf-woo-template ul.products li.product .button,
body.srf-woo-template div.product form.cart .button {
	min-width: 142px;
	border: 2px solid #231f20;
	border-radius: 0;
	background: #231f20;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	text-align: center;
}

body.srf-woo-template ul.products li.product .button {
	padding: 13px 20px;
}

body.srf-woo-template ul.products li.product .button:hover,
body.srf-woo-template div.product form.cart .button:hover {
	background: #fff;
	color: #231f20;
}

body.srf-woo-template.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 55.5%) minmax(390px, 1fr);
	column-gap: 50px;
	row-gap: 0;
	align-items: start;
}

body.srf-woo-template.single-product div.product .woocommerce-breadcrumb,
body.srf-woo-template.single-product div.product .single-product-category,
body.srf-woo-template.single-product div.product .zoomImg,
body.srf-woo-template.single-product div.product .srf-stock-note,
body.srf-woo-template.single-product div.product .srf-fbt {
	display: none !important;
}

body.srf-woo-template.single-product div.product div.images,
body.srf-woo-template.single-product div.product div.summary {
	float: none !important;
	width: auto !important;
}

body.srf-woo-template.single-product div.product div.summary {
	display: flex;
	flex-direction: column;
}

body.srf-woo-template.single-product div.product .woocommerce-product-gallery__image img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

body.srf-woo-template.single-product div.product .woocommerce-product-gallery {
	opacity: 1 !important;
}

body.srf-woo-template.single-product div.product .flex-control-thumbs {
	display: flex;
	gap: 20px;
	margin-top: 22px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

body.srf-woo-template.single-product div.product .flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

body.srf-woo-template.single-product div.product .flex-control-thumbs li {
	flex: 0 0 116px;
	width: auto !important;
	height: 116px;
	margin: 0 !important;
	scroll-snap-align: start;
}

body.srf-woo-template.single-product div.product .flex-control-thumbs img {
	width: 116px;
	height: 116px;
	object-fit: cover;
}

body.srf-woo-template.single-product div.product .summary {
	padding-top: 3px;
}

.srf-product-family {
	order: 2;
	margin: 0 0 8px;
	color: #231f20;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
}

body.srf-woo-template.single-product div.product .product_title {
	order: 1;
	font-size: 42px;
	line-height: 1.1;
	margin: 0 0 8px;
}

body.srf-woo-template.single-product div.product p.price {
	order: 4;
	color: #231f20;
	font-size: 26px;
	font-weight: 800;
	margin: 8px 0 12px;
}

body.srf-woo-template.single-product div.product .woocommerce-product-details__short-description {
	order: 5;
	color: #333;
	line-height: 1.55;
}

.srf-rating-line {
	order: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 6px;
	font-size: 13px;
}

.srf-rating-line span {
	color: #000;
	letter-spacing: 1px;
	font-size: 16px;
}

.srf-rating-line strong {
	font-weight: 600;
	color: #333;
}

.srf-stock-note {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 6px 0 8px;
	padding: 11px 14px;
	border-radius: 8px;
	background: #f2f2f2;
	font-size: 13px;
	font-weight: 800;
	color: #272727;
}

.srf-stock-note span {
	width: 12px;
	height: 16px;
	display: inline-block;
	border-radius: 8px 8px 8px 0;
	background: #f18423;
	transform: rotate(45deg);
}

body.srf-woo-template.single-product div.product form.cart {
	order: 6;
	display: flex;
	gap: 15px;
	align-items: center;
	margin: 18px 0 14px;
}

body.srf-woo-template.single-product div.product form.variations_form.cart {
	display: block;
}

body.srf-woo-template.single-product div.product table.variations {
	width: 100%;
	max-width: 430px;
	margin: 10px 0 8px;
}

body.srf-woo-template.single-product div.product table.variations tr,
body.srf-woo-template.single-product div.product table.variations th,
body.srf-woo-template.single-product div.product table.variations td {
	display: block;
	padding: 0;
	border: 0;
}

body.srf-woo-template.single-product div.product table.variations tbody {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

body.srf-woo-template.single-product div.product table.variations th label {
	display: block;
	margin: 0 0 3px;
	font-size: 13px;
	font-weight: 800;
	color: #333;
}

body.srf-woo-template.single-product div.product table.variations select {
	width: 100%;
	height: 34px;
	margin: 0;
	border: 1px solid #d6d6d6;
	border-radius: 0;
	box-shadow: none;
	color: #596579;
}

body.srf-woo-template.single-product div.product table.variations .reset_variations {
	display: none !important;
}

body.srf-woo-template.single-product div.product .single_variation_wrap {
	display: block;
}

body.srf-woo-template.single-product div.product .single_variation {
	font-size: 21px;
	font-weight: 800;
	color: #344255;
	margin: 6px 0 8px !important;
}

body.srf-woo-template.single-product div.product .woocommerce-variation-description {
	display: none !important;
}

body.srf-woo-template.single-product div.product .woocommerce-variation-price .price {
	margin: 0;
	font-size: 21px;
}

body.srf-woo-template.single-product div.product form.cart .quantity {
	position: relative;
	width: 116px;
	height: 54px;
	display: block;
}

body.srf-woo-template.single-product div.product form.cart .quantity .screen-reader-text,
body.srf-woo-template.single-product div.product form.cart .quantity label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

body.srf-woo-template.single-product div.product form.cart .quantity::before,
body.srf-woo-template.single-product div.product form.cart .quantity::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	line-height: 1;
	color: #231f20;
	pointer-events: none;
}

body.srf-woo-template.single-product div.product form.cart .quantity::before {
	content: "-";
	left: 17px;
}

body.srf-woo-template.single-product div.product form.cart .quantity::after {
	content: "+";
	right: 15px;
}

body.srf-woo-template.single-product div.product form.cart .quantity input.qty {
	width: 116px;
	height: 54px;
	border-radius: 0;
	border: 1px solid #ccc;
	padding: 0 38px;
	font-weight: 800;
}

body.srf-woo-template.single-product div.product form.cart .button {
	height: 54px;
	min-width: 0;
	flex: 1;
}

body.srf-woo-template.single-product div.product .single_variation_wrap .woocommerce-variation-add-to-cart {
	display: flex;
	gap: 15px;
	align-items: center;
	max-width: 430px;
}

.srf-trust-badges {
	order: 7;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	padding: 0 0 16px;
	border-bottom: 1px solid #ddd;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.15;
	letter-spacing: .03em;
}

.srf-trust-badges img {
	display: block;
	width: 34px;
	height: 34px;
	margin: 0 auto 9px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .78;
}

body.srf-woo-template.single-product .product_meta {
	display: none;
}

.srf-summary-details {
	order: 8;
	padding-top: 18px;
}

.srf-summary-details nav {
	display: flex;
	gap: 26px;
	margin-bottom: 20px;
}

.srf-summary-details nav button {
	appearance: none;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #8b8b8b;
	cursor: pointer;
	display: inline-block;
	font: inherit;
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	padding: 0 0 2px !important;
}

.srf-summary-details nav button:hover,
.srf-summary-details nav button:focus,
.srf-summary-details nav button.is-active {
	color: #231f20;
	border-color: #231f20;
	outline: none;
}

.srf-summary-panel[hidden] {
	display: none;
}

.srf-summary-details p {
	margin: 0 0 15px;
	font-size: 15px;
	line-height: 1.45;
	color: #333;
}

.srf-fbt {
	margin-top: 22px;
	padding: 16px 14px 18px;
	border-radius: 10px;
	background: #f4f4f4;
}

.srf-fbt h2 {
	margin: 0 0 3px;
	font-size: 21px;
	line-height: 1.15;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
	color: #333;
}

.srf-fbt p {
	margin: 0 0 12px;
	color: #333;
	font-size: 14px;
	letter-spacing: .02em;
}

.srf-fbt-images {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.srf-fbt-images img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 8px;
}

.srf-fbt-images span {
	font-size: 24px;
	color: #333;
}

.srf-fbt-total {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 8px;
	font-size: 16px;
}

.srf-fbt-total strong {
	font-size: 18px;
	color: #333;
}

.srf-fbt-total del {
	color: #777;
}

.srf-fbt-button {
	display: inline-block;
	margin-bottom: 13px;
	padding: 13px 18px;
	background: #231f20;
	color: #fff;
	font-weight: 800;
	letter-spacing: .05em;
	text-decoration: none;
}

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

.srf-fbt li {
	margin: 0 0 9px;
	color: #333;
	font-size: 13px;
	font-weight: 700;
}

.srf-fbt li span {
	display: inline-block;
	margin-right: 8px;
	padding: 2px 7px;
	background: #ddd;
	color: #333;
	font-size: 12px;
}

body.srf-woo-template.single-product .related.products {
	grid-column: 1 / -1;
	margin: 0 calc(50% - 50vw) 60px;
	width: 100vw;
	padding: 0 5vw;
}

body.srf-woo-template.single-product .related.products > h2 {
	font-size: 32px;
	margin-bottom: 24px;
	text-align: center;
	font-weight: 500;
}

body.srf-woo-template.single-product .related.products ul.products {
	margin-bottom: 0;
}

body.srf-woo-template.single-product .related.products ul.products li.product {
	margin-bottom: 0;
	min-height: 0;
}

body.srf-woo-template.single-product .related.products ul.products li.product a img {
	width: 100%;
	height: 260px;
	aspect-ratio: auto;
	object-fit: cover;
}

.srf-ranch-to-table {
	grid-column: 1 / -1;
	margin: 28px calc(50% - 50vw) 0;
	padding: 32px 5vw 32px;
	background: #fff;
	text-align: center;
}

.srf-ranch-to-table h2 {
	margin: 0 0 15px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	color: #231f20;
}

.srf-ranch-to-table p {
	max-width: 620px;
	margin: 0 auto 32px;
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
}

.srf-ranch-to-table > div {
	max-width: 850px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 68px;
}

.srf-ranch-to-table article {
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: .04em;
	color: #231f20;
}

.srf-ranch-to-table img {
	width: 150px;
	height: 150px;
	display: block;
	margin: 0 auto 20px;
	object-fit: contain;
}

.srf-cut-diagram {
	grid-column: 1 / -1;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 64px 64px;
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(420px, 656px);
	gap: 64px;
	align-items: center;
}

.srf-cut-diagram h2 {
	margin: 0 0 20px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	color: #231f20;
}

.srf-cut-diagram p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #333;
}

.srf-cut-diagram img {
	width: 100%;
	height: 372px;
	object-fit: cover;
	display: block;
}

body.srf-woo-template.woocommerce.single-product .srf-cut-diagram img,
body.srf-woo-template.woocommerce-page.single-product .srf-cut-diagram img {
	width: 100% !important;
	height: 372px !important;
	object-fit: cover;
}

.srf-product-faq {
	grid-column: 1 / -1;
	margin: 0 calc(50% - 50vw);
	padding: 86px 24px 98px;
	background: #f4f4f4;
}

.srf-product-faq h2 {
	margin: 0 0 50px;
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	color: #231f20;
}

.srf-product-faq > div {
	width: min(760px, 100%);
	margin: 0 auto;
	border-top: 1px solid #ddd;
}

.srf-product-faq details {
	border-bottom: 1px solid #ddd;
}

.srf-product-faq summary {
	position: relative;
	display: block;
	padding: 18px 42px 18px 18px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	color: #333;
}

.srf-product-faq summary::-webkit-details-marker {
	display: none;
}

.srf-product-faq summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	font-weight: 400;
	color: #333;
}

.srf-product-faq details[open] summary::after {
	content: "-";
}

.srf-product-faq p {
	margin: 0;
	padding: 0 18px 20px;
	font-size: 14px;
	line-height: 1.55;
	color: #333;
}

.srf-template-footer {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: 36px;
	padding: 48px 5vw;
	background: #231f20;
	color: #fff;
}

.srf-template-footer img {
	width: 190px;
	filter: invert(1);
}

.srf-template-footer h3 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.srf-template-footer p,
.srf-template-footer a {
	display: block;
	margin: 8px 0;
	color: #eee;
	font-size: 14px;
	text-decoration: none;
}

body.srf-content-page .site-content .ast-container {
	max-width: none;
	padding: 0;
}

body.srf-content-page .entry-header,
body.srf-content-page .entry-title {
	display: none !important;
}

body.srf-content-page .entry-content {
	margin: 0;
}

body.srf-home-page .site-content .ast-container {
	max-width: none;
	padding: 0;
}

body.srf-home-page .site-content,
body.srf-home-page #primary,
body.srf-home-page article,
body.srf-home-page .entry-content {
	margin: 0 !important;
	padding: 0 !important;
}

body.srf-home-page .entry-header,
body.srf-home-page .entry-title,
body.srf-home-page .ast-breadcrumbs-wrapper {
	display: none !important;
}

body.srf-home-page .entry-content {
	margin: 0;
}

body.srf-home-page .entry-content > .srf-home {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.srf-policy-page {
	max-width: 992px;
	margin: 0 auto;
	padding: 72px 24px 88px;
	color: #231f20;
}

.srf-policy-page h1 {
	margin: 0 0 24px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 44px;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0;
	color: #231f20;
}

.srf-policy-intro {
	max-width: 850px;
	margin-bottom: 44px;
}

.srf-policy-intro p,
.srf-policy-accordion p,
.srf-policy-updated p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.5;
	color: #231f20;
}

.srf-policy-accordion {
	border-top: 1px solid #ddd;
}

.srf-policy-accordion details {
	border-bottom: 1px solid #ddd;
}

.srf-policy-accordion summary {
	position: relative;
	display: block;
	padding: 24px 120px 24px 24px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #231f20;
	list-style: none;
}

.srf-policy-accordion summary::-webkit-details-marker {
	display: none;
}

.srf-policy-accordion summary::after {
	content: "+";
	position: absolute;
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
}

.srf-policy-accordion details[open] summary::after {
	content: "-";
}

.srf-policy-accordion .answer_body {
	max-width: 760px;
	padding: 0 24px 26px;
	font-size: 14px;
	line-height: 1.5;
}

.srf-policy-accordion ul {
	margin: 0 0 16px 20px;
	padding: 0;
}

.srf-policy-accordion li {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.45;
}

.srf-policy-updated {
	padding-top: 42px;
}

@media (max-width: 921px) {
	html,
	body.srf-woo-template {
		max-width: 100%;
		overflow-x: hidden;
	}

	body.srf-woo-template *,
	body.srf-woo-template *::before,
	body.srf-woo-template *::after {
		box-sizing: border-box;
	}

	.srf-template-header {
		grid-template-columns: 1fr;
		justify-items: center;
		min-height: 58px;
		padding: 7px 18px;
	}

	.srf-template-logo img {
		width: 144px;
	}

	.srf-template-search,
	.srf-template-icons,
	.srf-template-topbar div,
	.srf-template-topbar div:last-child {
		display: none;
	}

	.srf-template-topbar {
		grid-template-columns: 1fr;
		text-align: center;
		width: 100%;
		padding: 0 12px;
	}

	.srf-template-nav {
		display: none;
	}

	.srf-nav-item {
		flex: 0 0 auto;
		padding: 0;
		min-height: 70px;
	}

	.srf-template-nav a,
	.srf-nav-link {
		flex: 0 0 auto;
		max-width: 92px;
		white-space: normal;
	}

	.srf-nav-link {
		min-height: 70px;
		text-align: center;
	}

	.srf-nav-item.has-mega .srf-nav-link::after,
	.srf-mega-menu {
		display: none !important;
	}

	body.srf-woo-template .site-content .ast-container {
		padding: 34px 20px 64px;
		max-width: 100%;
		width: 100%;
		overflow: hidden;
	}

	body.srf-woo-template.tax-product_cat .ast-woocommerce-container,
	body.srf-woo-template.woocommerce-shop .ast-woocommerce-container,
	.srf-archive-layout {
		display: block;
		width: min(350px, calc(100vw - 40px));
		max-width: min(350px, calc(100vw - 40px));
	}

	.srf-archive-sidebar {
		float: none;
		width: auto;
		margin: 0 0 24px;
		padding: 0 0 18px;
		border-right: 0;
		border-bottom: 1px solid #e2e2e2;
		overflow-x: auto;
	}

	.srf-archive-sidebar h3,
	.srf-archive-sidebar a {
		white-space: nowrap;
	}

	.srf-archive-sidebar a {
		display: inline-block;
		margin-right: 14px;
	}

	body.srf-woo-template.tax-product_cat ul.products,
	body.srf-woo-template.woocommerce-shop ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		float: none !important;
		width: min(350px, calc(100vw - 40px)) !important;
		max-width: min(350px, calc(100vw - 40px));
		margin-left: 0;
		padding-top: 20px;
		gap: 34px 16px;
	}

	body.srf-woo-template ul.products li.product,
	body.srf-woo-template ul.products li.product a,
	body.srf-woo-template ul.products li.product img,
	body.srf-woo-template .astra-shop-thumbnail-wrap,
	body.srf-woo-template .astra-shop-summary-wrap {
		max-width: 100%;
	}

	body.srf-woo-template ul.products li.product a img {
		width: 100% !important;
	}

	body.srf-woo-template.single-product div.product {
		display: block;
		width: calc(100vw - 40px);
		max-width: calc(100vw - 40px);
		overflow: hidden;
	}

	body.srf-woo-template.single-product div.product .summary {
		padding-top: 24px;
		width: min(350px, calc(100vw - 40px)) !important;
		max-width: min(350px, calc(100vw - 40px));
		overflow: hidden;
	}

	body.srf-woo-template.single-product div.product .summary > *,
	body.srf-woo-template.single-product div.product .woocommerce-breadcrumb,
	body.srf-woo-template.single-product div.product .woocommerce-product-details__short-description,
	body.srf-woo-template.single-product div.product form.cart,
	body.srf-woo-template.single-product div.product .srf-summary-details,
	body.srf-woo-template.single-product div.product .srf-fbt {
		width: min(350px, calc(100vw - 40px)) !important;
		max-width: min(350px, calc(100vw - 40px));
	}

	body.srf-woo-template.single-product div.product .product_title {
		font-size: 32px;
		line-height: 1.08;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	body.srf-woo-template.single-product div.product .srf-summary-details {
		display: none;
	}

	body.srf-woo-template.single-product div.product div.images,
	body.srf-woo-template.single-product div.product .woocommerce-product-gallery,
	body.srf-woo-template.single-product div.product .woocommerce-product-gallery__wrapper,
	body.srf-woo-template.single-product div.product .woocommerce-product-gallery__image,
	body.srf-woo-template.single-product div.product .woocommerce-product-gallery__image img {
		width: 100% !important;
		max-width: 100%;
	}

	body.srf-woo-template.single-product div.product .woocommerce-product-gallery__wrapper {
		display: block !important;
		overflow: hidden;
	}

	body.srf-woo-template.single-product div.product .woocommerce-product-gallery__image:not(:first-child) {
		display: none !important;
	}

	body.srf-woo-template.single-product div.product .flex-control-thumbs {
		display: none !important;
		grid-template-columns: none;
		gap: 16px;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	body.srf-woo-template.single-product div.product .flex-control-thumbs li {
		flex: 0 0 82px;
		max-width: 82px;
	}

	body.srf-woo-template.single-product div.product .flex-control-thumbs img {
		width: 100%;
		height: auto;
	}

	body.srf-woo-template.single-product div.product form.cart {
		align-items: stretch;
		flex-wrap: wrap;
		max-width: 100%;
	}

	body.srf-woo-template.single-product div.product form.variations_form.cart,
	body.srf-woo-template.single-product div.product .single_variation_wrap {
		display: block;
		width: 100%;
	}

	body.srf-woo-template.single-product div.product .single_variation {
		margin: 12px 0;
	}

	body.srf-woo-template.single-product div.product table.variations,
	body.srf-woo-template.single-product div.product table.variations select {
		width: 100%;
	}

	body.srf-woo-template.single-product div.product table.variations tbody {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	body.srf-woo-template.single-product div.product .single_variation_wrap .woocommerce-variation-add-to-cart {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		width: 100%;
	}

	body.srf-woo-template.single-product div.product form.cart .quantity {
		width: 100%;
	}

	body.srf-woo-template.single-product div.product form.cart .quantity input.qty {
		width: 100%;
	}

	body.srf-woo-template.single-product div.product form.cart .button {
		min-width: 0;
		width: 100%;
		flex: none;
	}

	.srf-trust-badges {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		text-align: center;
		font-size: 10px;
		padding-bottom: 14px;
	}

	.srf-trust-badges img {
		width: 28px;
		height: 28px;
		margin-left: auto;
		margin-right: auto;
	}

	.srf-ranch-to-table {
		margin-top: 40px;
		padding: 40px 24px;
	}

	.srf-ranch-to-table > div {
		grid-template-columns: 1fr;
		gap: 0;
		max-width: 342px;
	}

	.srf-ranch-to-table article {
		min-height: 88px;
		display: flex;
		align-items: center;
		gap: 0;
		text-align: left;
		font-size: 15px;
		letter-spacing: .02em;
	}

	.srf-ranch-to-table img {
		flex: 0 0 80px;
		width: 80px;
		height: 80px;
		margin: 0;
	}

	.srf-cut-diagram {
		grid-template-columns: 1fr;
		gap: 28px;
		width: calc(100vw - 40px);
		margin: 0 auto;
		padding: 24px 20px 48px;
	}

	.srf-cut-diagram img {
		order: -1;
		width: 100%;
		height: 200px !important;
		object-fit: cover;
	}

	body.srf-woo-template.woocommerce.single-product .srf-cut-diagram img,
	body.srf-woo-template.woocommerce-page.single-product .srf-cut-diagram img {
		height: 200px !important;
	}

	body.srf-woo-template.single-product .related.products {
		margin-top: 52px;
		margin-bottom: 54px;
		padding: 0 0 0 20px;
		overflow: hidden;
	}

	body.srf-woo-template.single-product .related.products > h2 {
		margin-bottom: 24px;
		padding-right: 20px;
		font-size: 28px;
	}

	body.srf-woo-template.single-product .related.products ul.products {
		display: flex !important;
		flex-wrap: nowrap !important;
		gap: 16px;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 20px 8px 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	body.srf-woo-template.single-product .related.products ul.products li.product {
		flex: 0 0 164px;
		width: 164px !important;
		margin: 0 !important;
		scroll-snap-align: start;
	}

	.srf-cut-diagram h2,
	.srf-product-faq h2 {
		font-size: 28px;
	}

	.srf-product-faq {
		padding: 58px 20px 70px;
	}

	.srf-template-footer {
		grid-template-columns: 1fr;
	}

	.srf-policy-page {
		padding: 48px 20px 64px;
	}

	.srf-policy-page h1 {
		font-size: 34px;
	}

	.srf-policy-accordion summary {
		padding: 20px 52px 20px 0;
		font-size: 14px;
	}

	.srf-policy-accordion summary::after {
		right: 4px;
	}

	.srf-policy-accordion .answer_body {
		padding: 0 0 22px;
	}
}
