/*

Theme Name: Astra Child
Theme URI: https://justpavingstg.wpenginepowered.com/
Author: Dylan Taylor
Template: astra
Version: 1.0.0

*/

:root {
	--clr-primary: #08568D;
	--clr-secondary: #D0EBFF;
	--clr-black: #000000;
	--clr-white: #FFFFFF;
	--clr-grey: #DDDDDD;
	--font-primary: 'Open Sans', sans-serif;
	--transition: all 0.5s ease;
}

body {
	background: var(--clr-white);
	color: var(--clr-black);
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea, select, ul, ol, li {
	color: inherit;
	font-family: var(--font-primary) !important;
	transition: var(--transition) !important;
}

ul {
	display: flex;
	list-style-type: none;
	margin: 0;
}

:is(a, button, input, textarea, select),
:is(a, button, input, textarea, select):is(:hover, :focus, :active) {
	border: none;
	box-sizing: border-box;
	color: inherit;
	outline: none !important;
	text-decoration: none;
	transition: var(--transition) !important;
}

:is(a, button, select),
:is(a, button, select):is(:hover, :focus, :active) {
	cursor: pointer;
}

input::placeholder {
	line-height: 1; opacity: 1;
}

:is(img, i span) {
	transition: var(--transition) !important;
}

img {
	display: block;
	width: 100%;
}


/* Header */

.site-header {
	position: relative !important;
}

/* Header - Main */

.header-main .container {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.header-main .branding {
	max-width: 18rem;
	width: 100%;
}

.header-main .branding img:hover {
	opacity: 0.75;
}

.header-main .shortcuts .divider::after {
	background: var(--clr-grey);
	content: '';
	height: 2rem;
	position: absolute;
	top: 50%; right: -1rem;
	transform: translateY(-50%);
	width: 1px;
}

.header-main .shortcuts .contact a i {
	font-size: 1.25rem;
}

.header-main .shortcuts .contact a:hover,
.header-main .shortcuts .contact a:hover i {
	color: var(--clr-primary);
}

.header-main .shortcuts .cart .icon-container {
	left: -3px;
}

.header-main .shortcuts .cart a {
	top: 3px;
}

.header-main .shortcuts .cart a i {
	font-size: 1.25rem;
}

.header-main .shortcuts .cart .cart-count {
	background: var(--clr-primary);
	border-radius: 50%;
	color: var(--clr-white);
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	padding: 3px 6px;
	pointer-events: none;
	top: -8px; right: -8px;
}

.header-main .shortcuts .cart .widget_shopping_cart_content {
	background: var(--clr-white);
	border: 1px solid var(--clr-white);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
	display: none;
	opacity: 0;
	padding: 1rem;
	position: absolute;
	top: 100%; right: 0;
	transform: translateY(1rem);
	transition: all 0.5s ease;
	width: 30rem;
	z-index: 999;
}

.header-main .shortcuts .cart:hover .widget_shopping_cart_content {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list::before,
.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list::after {
	display: none;
	visibility: hidden;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li {
	border-bottom: 1px solid var(--clr-grey);
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: center;
	padding: 0 0 0.5rem;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li::before,
.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li::after {
	display: none;
	visibility: hidden;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li a {
	align-items: center;
	display: flex;
	flex: 1 1 75%;
	flex-direction: row;
	gap: 1rem;
	justify-content: center;
	margin: 0;
	position: relative;
	top: 0;
	transition: all 0.5s ease;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li a.remove {
	border: 1px solid var(--clr-black);
	border-radius: 100%;
	color: var(--clr-black);
	flex: 1 1 5%;
	font-size: 20px;
	height: 20px;
	line-height: 20px;
	opacity: 1;
	padding: 0;
	transition: all 0.5s ease;
	width: 20px;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li a.remove:hover {
	border-color: var(--clr-primary);
	color: var(--clr-primary);
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li a.remove::before {
	display: none;
	visibility: hidden;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li img {
	float: none;
	height: 3rem;
	margin: 0;
	position: relative;
	top: 0;
	transform: none;
	width: 3rem;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .cart_list li .quantity {
	flex: 1 1 20%;
	text-align: center;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .total {
	margin: 1rem 0;
	text-align: right;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .buttons {
	align-items: stretch;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: center;
	line-height: 1;
	margin: 0;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .buttons a.button,
.header-main .shortcuts .cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button {
	background: var(--clr-black);
	border: 1px solid var(--clr-black);
	box-sizing: border-box;
	color: var(--clr-white);
	text-align: center;
	top: 0;
	transition: all 0.5s ease;
	width: 100%;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .buttons a.button:hover,
.header-main .shortcuts .cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button:hover {
	background: transparent;
	color: var(--clr-black);
}

.header-main .shortcuts .cart .widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
	margin: 0 0 1rem;
	text-align: center;
}

.header-main .shortcuts .cart .widget_shopping_cart_content .ast-mini-cart-message {
	display: none;
	visibility: hidden;
}

.header-main .shortcuts .account a.btn {
	border: 1px solid;
	border-radius: 0;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1em;
	padding: 1rem 2rem;
	text-transform: uppercase;
}

.header-main .shortcuts .account a.btn.btn-primary {
	background: var(--clr-black);
	border-color: var(--clr-black);
	color: var(--clr-white);
}
	
.header-main .shortcuts .account a.btn.btn-primary:hover {
	background: transparent;
	color: var(--clr-black);
}
	
.header-main .shortcuts .account a.btn.btn-secondary {
	background: transparent;
	border-color: var(--clr-black);
	color: var(--clr-black);
}
	
.header-main .shortcuts .account a.btn.btn-secondary:hover {
	background: var(--clr-black);
	color: var(--clr-white);
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.header-main .container {
		gap: 2rem;
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media screen and (max-width: 1024px) {
	.header-main .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.header-main .branding {
		max-width: 12rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.header-main .container {
		gap: 2rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.header-main .shortcuts .contact span {
		display: none;
		visibility: hidden;
	}
}

@media screen and (max-width: 767px) {
	.header-main .branding {
		max-width: 18rem !important;
	}
	
	.header-main .search,
	.header-main .shortcuts .account {
		display: none;
		visibility: hidden;
	}
	
	.header-main .cart .widget_shopping_cart_content {
		display: none !important;
		visibility: hidden !important;
	}
	
	.header-main .shortcuts .mobile-nav {
		display: block;
		visibility: visible;
	}
}

@media screen and (max-width: 622px) {
	.header-main .shortcuts .contact span {
		display: none;
		visibility: hidden;
	}
}

@media screen and (max-width: 479px) {
	.header-main .container {
		gap: 2rem !important;
	}
	
	.header-main .branding {
		max-width: 100% !important;
	}
}

/* Header Main - Mobile Navigation Toggle */

.header-main .mobile-nav {
	display: none;
	visibility: hidden;
}

.header-main .menu-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	display: inline-block;
	height: 36px;
	margin: 0;
	padding: 0;
	top: 1.5px;
	width: 36px;
	z-index: 1001;
}
	
.header-main .menu-toggle:is(:hover, :focus, :active) {
	background: transparent;
}

.header-main .menu-toggle .bar {
	background: var(--clr-primary);
	border-radius: 2px;
	height: 3px;
	left: 50%;
	transform-origin: center;
	transition: var(--transition);
	width: 70%;
}

.header-main .menu-toggle:hover .bar {
	background: var(--clr-secondary);
}

.header-main .menu-toggle .bar:nth-child(1) { transform: translate(-50%, calc(-1 * 8px)) rotate(0deg); }
.header-main .menu-toggle .bar:nth-child(2) { transform: translate(-50%, 0) rotate(0deg); }
.header-main .menu-toggle .bar:nth-child(3) { transform: translate(-50%, 8px) rotate(0deg); }

.header-main .menu-toggle.open .bar:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.header-main .menu-toggle.open .bar:nth-child(2) { opacity: 0; transform: translate(-50%, 0); }
.header-main .menu-toggle.open .bar:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

@media screen and (max-width: 479px) {
	.header-main .menu-toggle {
		top: -1px !important;
	}
}

/* Header - Navigation */

.header-navigation {
	border-top: 1px solid var(--clr-grey);
}

.header-navigation .container {
	padding-top: 0.75rem;
	padding-bottom: 0.925rem;
}

.header-navigation nav.main-navigation {
	max-width: 90%;
	width: 100% !important;
}

.header-navigation ul.main-header-menu li.menu-item a.menu-link:hover,
.header-navigation ul.main-header-menu li.current-menu-item a.menu-link {
	color: var(--clr-primary);
}

.header-navigation ul.main-header-menu li.menu-item a.menu-link:hover::after,
.header-navigation ul.main-header-menu li.current-menu-item a.menu-link::after {
	width: 100% !important;
}

.header-navigation ul.main-header-menu {
	background: transparent !important;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 6rem;
	width: 100%;
}
	
.header-navigation ul.main-header-menu li.menu-item a.menu-link {
	border: none !important;
	color: var(--clr-black);
	font-size: 1rem;
	font-weight: 500;
	padding: 0;
}
	
.header-navigation ul.main-header-menu li.menu-item a.menu-link::after {
	background: var(--clr-primary);
	bottom: 0; left: 0;
	content: '';
	height: 1px;
	position: absolute;
	width: 0;
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
	.header-navigation ul.main-header-menu {
		margin: 0;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.header-navigation .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.header-navigation nav.main-navigation {
		max-width: 95%;
	}
}

@media screen and (max-width: 1024px) {
	.header-navigation .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.header-navigation nav.main-navigation {
		max-width: 100%;
	}
	
	.header-navigation ul.main-header-menu {
		margin: 0;
	}
}

@media screen and (max-width: 767px) {
	.header-navigation {
		display: none;
		visibility: hidden;
	}
}

/* Header - Navigation - Mega Menu */

#megaMenuContainer {
	background: var(--clr-white);
	border-top: 1px solid var(--clr-grey);
	display: none;
}

.mega-menu .container {
	grid-template-columns: 3fr 1fr;
}

.mega-menu .menu-left {
	border-right: 1px solid var(--clr-grey);
	padding: 0 2rem 0 0;
}

.mega-menu h4 {
	margin: 0 0 1rem;
}

.mega-menu .mega-menu-item a {
	overflow: hidden;
}

.mega-menu .mega-menu-item .image-wrapper {
	height: 18vh;
	overflow: hidden;
	width: 100%;
}

.mega-menu .mega-menu-item img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.mega-menu .mega-menu-item a:hover img {
	transform: scale(1.1);
}

.mega-menu .mega-menu-item span {
	font-weight: 600;
	line-height: 1.25;
	margin: 0.5rem 0 0;
}

.mega-menu .mega-menu-item a:hover span {
	color: var(--clr-primary);
}

.mega-menu .promo-wrapper {
	height: 100%;
}

.mega-menu .promo-box {
	box-sizing: border-box;
	flex: 1;
	height: auto;
}

.mega-menu .promo-box a {
	height: 100%;
}

.mega-menu .promo-box img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.mega-menu .promo-box .promo-content {
	height: 100%;
	padding: 1.5rem;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.mega-menu .promo-box h4 {
	margin: 0 0 0.5rem;
}

.mega-menu .promo-box p {
	margin: 0;
}

.mega-menu .promo-box:hover h4,
.mega-menu .promo-box:hover p {
	color: var(--clr-black);
}

@media screen and (max-width: 1200px) {
	.mega-menu .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.mega-menu .mega-menu-item .image-wrapper {
		height: 15vh !important;
	}
}

/* Header - Bottom */

.header-bottom .container {
	padding-top: 0.75rem;
	padding-bottom: 0.825rem;
}
	
.header-bottom .marquee {
	overflow: hidden;
	width: 100%;
}

.header-bottom .marquee-content {
	animation: marquee 30s linear infinite;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
	
.header-bottom .marquee-item {
	color: var(--clr-white);
	flex-shrink: 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1lh;
	white-space: nowrap;
}
	
.header-bottom .divider {
	background: var(--clr-white);
	height: 80%;
	margin: 0 2rem;
	width: 1px;
}

@media screen and (max-width: 1200px) {
	.header-bottom .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}


/* Mobile Navigation */

.mobile-menu {
	box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
	height: 100vh;
	max-width: 25rem;
	overflow-y: auto;
	padding: 1.5rem;
	top: 0; left: -100%;
	transition: var(--transition);
	width: 80%;
	z-index: 999999;
}

.mobile-menu.open {
	left: 0;
}

.mobile-menu .mobile-menu--content {
	margin: 1.5rem 0;
}

.mobile-menu .mobile-menu--list {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	list-style-type: none;
	margin: 0;
}

.mobile-menu .mobile-menu--list .menu-link {
	background: transparent;
	color: var(--clr-white);
	display: block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: 1rem;
	width: 100%;
}

.mobile-menu .mobile-menu--list .menu-item .menu-link:hover,
.mobile-menu .mobile-menu--list .current-menu-item .menu-link {
	background: rgba(255, 255, 255, 0.25);
}

.mobile-menu .mobile-menu--list .sub-menu {
	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0 0 0 1rem;
	transition: var(--transition);
}

.mobile-menu .mobile-menu--list .menu-item-has-children.open > .sub-menu {
	display: block;
}

.mobile-menu .mobile-menu--list .menu-item-has-children > a::after {
	content: '▼';
	float: right;
	transition: var(--transition);
}

.mobile-menu .mobile-menu--list .menu-item-has-children.open > a::after {
	transform: rotate(-180deg);
}

.mobile-menu .mobile-menu--footer {
	margin: 0 0 6rem;
}

.mobile-menu .account-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style-type: none;
	margin: 0;
}

.mobile-menu .account-links li a {
	background: var(--clr-white);
	border: 1px solid var(--clr-white);
	color: var(--clr-primary);
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	padding: 1rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.mobile-menu .account-links li a:hover {
	background: transparent;
	border: 1px solid var(--clr-white);
	color: var(--clr-white);
}


/* Homepage */

.home .entry-content {
	margin-top: 0 !important;
}

.home .hero-section {
	background-position: bottom left !important;
	min-height: min(1000px, max(calc(100vh - var(--header-height)), var(--hero-content-height)));
}

.home .hero-section .e-con-inner {
	flex-grow: 0;
	height: auto;
}

.home .hero-section .hero-content {
	width: 100% !important;
}

.home .hero-section .hero-content h1,
.home .hero-section .hero-content p {
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.home .hero-section .hero-content a.elementor-button {
	width: 22rem;
}

.home .hero-section .reference-text {
	background: rgba(255, 255, 255, 0.5);
	bottom: 2rem; left: 4rem;
	padding: 0.75rem 1rem;
	position: absolute;
	transition: var(--transition);
}

.home .hero-section .reference-text:hover {
	background: var(--clr-white);
}

.home .hero-section .reference-text p,
.home .hero-section .reference-text p a {
	color: var(--clr-black) !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	margin: 0;
}

.home .hero-section .reference-text p a:hover {
	color: var(--clr-primary) !important;
}

.home .sale-section .flash-heading {
	animation: flash 1.25s infinite alternate;
	color: var(--clr-primary);
}

@keyframes flash {
	from { color: var(--clr-primary); }
	to { color: var(--clr-white); }
}

.home .sale-section #saleEndDate {
	color: var(--clr-white);
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.home .video-section .elementor-widget-container {
	aspect-ratio: 16 / 9;
	max-width: 100%;
	width: 100vw;
}

.home .video-section iframe {
	height: 100%;
	width: 100%;
}

.home .categories-section .category-box {
	background-size: 140% auto !important;
	display: flex;
	justify-content: flex-end;
	transition: all 0.5s ease;
}

.home .categories-section .category-box:hover {
	background-size: 150% auto !important;
}

.home .categories-section .category-box:hover .category-btn {
	background: var(--clr-black);
}

.home .categories-section .category-box .elementor-icon {
	position: relative;
	top: 1.5px;
}

.home .categories-section .category-box:hover .elementor-icon {
	color: var(--clr-white) !important;
	margin: 0 0 0 0.5rem;
}

.home .categories-section .category-box.hidden {
	display: none !important;
	visibility: hidden !important;
}

.home .categories-section .promo-box {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 2rem;
}

.home .categories-section .promo-box::before {
	display: none;
	visibility: hidden;
}

.home .categories-section .promo-box .text-wrapper h2 {
	margin: 0;
}

.home .categories-section .promo-box .text-wrapper p {
	display: inline-block;
	margin: 1rem 0 0 0.125rem;
	position: relative;
	transition: all 0.5s ease;
}

.home .categories-section .promo-box .text-wrapper p::after {
	background: var(--clr-white);
	bottom: 0; left: 0;
	content: '';
	height: 1px;
	position: absolute;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: var(--transition);
	width: 100%;
}

.home .categories-section .promo-box:hover .text-wrapper p::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.home .categories-section .promo-box .icon-wrapper {
	max-width: fit-content;
}

.home .categories-section .promo-box .icon-wrapper i {
	color: var(--clr-white) !important;
	font-size: 4rem;
	transition: all 0.5s ease;
}

.home .categories-section .promo-box:hover .icon-wrapper i {
	font-size: 4.5rem;
}

.home .featured-section ul.products {
	display: grid;
	gap: 1.5rem !important;
	grid-template-columns: repeat(5, 1fr) !important;
	margin: 0 !important;
}

.home .featured-section ul.products li.product {
	border: none !important;
	margin: 0 !important;
}

.home .featured-section ul.products li.product .woocommerce-loop-product__link,
.home .featured-section ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	overflow: hidden;
}

.home .featured-section ul.products li.product img {
	height: 25vh;
	margin: 0 !important;
	object-fit: cover;
	width: 100%;
}

.home .featured-section ul.products li.product img:hover {
	transform: scale(1.1);
}

.home .featured-section ul.products li.product .ast-onsale-card {
	background: #FF0000;
	border: none;
	border-radius: 0;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	color: var(--clr-white);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1em;
	opacity: 0.9;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	top: 0.75rem; left: 0.75rem;
	transition: var(--transition);
	width: fit-content;
}

.home .featured-section ul.products li.product:hover .ast-onsale-card {
	opacity: 1;
}

.home .featured-section ul.products li.product .ast-select-options-trigger {
	display: none !important;
	visibility: hidden !important;
}

.home .featured-section ul.products li.product h2 {
	font-family: var(--font-primary);
	font-size: 1.125rem !important;
	font-weight: 600 !important;
	line-height: 1.5em;
	margin-top: 0.75rem !important;
	margin-bottom: 0.5rem !important;
}

.home .featured-section ul.products li.product:hover h2 {
	color: var(--clr-primary);
}

.home .featured-section ul.products li.product .ast-woo-product-category {
	display: none !important;
	visibility: hidden !important;
}

.home .featured-section ul.products li.product .price,
.home .featured-section ul.products li.product .price .amount {
	font-family: var(--font-primary);
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1em;
	margin: 0 !important;
}

.home .featured-section ul.products li.product .price del {
	margin-right: 0.25rem;
}

.home .faqs-section .elementor-heading-title {
	line-height: 1.25em;
}

.home .faqs-section .e-n-accordion-item-title {
	border-color: var(--clr-grey) !important;
	color: var(--clr-black) !important;
	line-height: 1.25em !important;
	transition: all 0.5s ease;
}

.home .faqs-section .e-n-accordion-item-title:hover {
	color: var(--clr-primary) !important;
}

.home .faqs-section .e-n-accordion-item-title-text {
	line-height: 1.25em !important;
}

.home .faqs-section .e-n-accordion .e-con-full {
	border: 1px solid var(--clr-grey) !important;
	border-top: none !important;
}

.home .faqs-section .e-n-accordion p {
	color: var(--clr-black);
	margin: 0;
}

@media screen and (min-width: 2401px) {
	.home .hero-section { background-position: bottom -20rem left !important; }
	.home .hero-section .hero-content { padding: 10rem 0 12rem; }
}

@media screen and (min-width: 2201px) {
	.home .hero-section .hero-content h1 { font-size: 3rem !important; }
	.home .hero-section .hero-content p { font-size: 1.75rem !important; }
	
	.home .home-section h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 2201px) and (max-width: 2400px) {
	.home .hero-section { background-position: bottom -16rem left !important; }
	.home .hero-section .hero-content { padding: 10rem 0 12rem; }
}

@media screen and (min-width: 2001px) and (max-width: 2200px) {
	.home .hero-section { background-position: bottom -12rem left !important; }
	.home .hero-section .hero-content { padding: 10rem 0 12rem; }
	.home .hero-section .hero-content h1 { font-size: 2.75rem !important; }
	.home .hero-section .hero-content p { font-size: 1.625rem !important; }
	
	.home .home-section h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 1711px) and (max-width: 2000px) {
	.home .hero-section { background-position: bottom -8rem left !important; }
	.home .hero-section .hero-content { padding: 8rem 0 10rem; }
	.home .hero-section .hero-content h1 { font-size: 2.5rem !important; }
	.home .hero-section .hero-content p { font-size: 1.5rem !important; }
	
	.home .home-section h2 { font-size: 1.875rem !important; }
}

@media screen and (min-width: 1441px) and (max-width: 1710px) {
	.home .hero-section { background-position: bottom -4rem left !important; }
	.home .hero-section .hero-content { padding: 6rem 0 10rem; }
	.home .hero-section .hero-content h1 { font-size: 2.25rem !important; }
	.home .hero-section .hero-content p { font-size: 1.375rem !important; }
	
	.home .home-section h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
	.home .hero-section { background-position: bottom left !important; }
	.home .hero-section .hero-content { padding: 8rem 0 10rem; }
	.home .hero-section .hero-content h1 { font-size: 2.25rem !important; }
	.home .hero-section .hero-content p { font-size: 1.375rem !important; }
	
	.home .home-section h2 { font-size: 1.75rem !important; }
}

@media screen and (max-width: 1200px) {
	.home .hero-section,
	.home .home-section {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
	
	.home .hero-section .reference-text {
		left: 2rem;
	}
	
	.home .hero-section .hero-content { padding: 6rem 0 8rem;}
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.home .hero-section .hero-content h1 { font-size: 2.25rem !important; }
	.home .hero-section .hero-content p { font-size: 1.375rem !important; }
	
	.home .home-section h2 { font-size: 1.75rem !important; }
	
	.home .categories-section .categories-grid { grid-template-columns: repeat(2, 1fr); }
	.home .categories-section .category-box { min-height: 30vh !important; }
	
	.home .featured-section ul.products { grid-template-columns: repeat(4, 1fr) !important; }
	.home .featured-section ul.products li.product:nth-last-child(-n + 2) { display: none; visibility: hidden; }
	
	.home .samples-section {
		margin-bottom: 2rem;
	}
}

@media screen and (min-width: 922px) and (max-width: 1024px) {
	.home .hero-section .hero-content h1 { font-size: 2.125rem !important; }
	.home .hero-section .hero-content p { font-size: 1.25rem !important; }
	
	.home .home-section h2 { font-size: 1.625rem !important; }
	
	.home .categories-section .categories-grid { grid-template-columns: repeat(2, 1fr); }
	.home .categories-section .category-box { min-height: 30vh !important; }
	
	.home .featured-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.home .featured-section ul.products li.product:last-of-type { display: none; visibility: hidden; }
	
	.home .samples-section {
		margin-bottom: 2rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.home .hero-section .hero-content h1 { font-size: 2.25rem !important; }
	.home .hero-section .hero-content p { font-size: 1.375rem !important; }
	
	.home .home-section h2 { font-size: 1.75rem !important; }
	
	.home .categories-section .categories-grid { grid-template-columns: repeat(2, 1fr); }
	.home .categories-section .category-box { min-height: 25vh !important; }
	
	.home .featured-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.home .featured-section ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (max-width: 767px) {
	.home .sale-section .cta-image {
		min-height: 30vh !important;
	}
	
	.home .offers-section,
	.home .samples-section,
	.home .contact-section {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.home .offers-section .wpforms-container,
	.home .offers-section .wpforms-field {
		margin: 0;
		padding: 0;
	}
	
	.home .samples-section {
		margin-bottom: -1px;
	}
}

@media screen and (min-width: 480px) and (max-width: 767px) {
	.home .hero-section .hero-content h1 { font-size: 2.25rem !important; }
	.home .hero-section .hero-content p { font-size: 1.375rem !important; }
	
	.home .home-section h2 { font-size: 1.75rem !important; }
	
	.home .categories-section .categories-grid { grid-template-columns: 1fr; }
	.home .categories-section .category-box { min-height: 30vh !important; }
	
	.home .featured-section ul.products { grid-template-columns: repeat(1, 1fr) !important; }
}

@media screen and (max-width: 479px) {
	.home .hero-section .hero-content h1 { font-size: 2rem !important; }
	.home .hero-section .hero-content p { font-size: 1.25rem !important; }
	
	.home .home-section h2 { font-size: 1.5rem !important; }
	
	.home .categories-section .categories-grid { grid-template-columns: 1fr; }
	.home .categories-section .category-box { min-height: 25vh !important; }
	
	.home .featured-section h2 { line-height: 1.25em !important; }
	.home .featured-section ul.products { grid-template-columns: 1fr !important; }
	
	.home .offers-section .cta-content { min-height: 40vh !important; }
	.home .offers-section .cta-form form input[type="email"] { width: 14rem; }
	.home .offers-section .cta-form form button.wpforms-submit { padding: 1rem; }
	
	.home .testimonials-section .e-con-inner { padding-bottom: 0 !important; }
}


/* Information Pages */

.banner-section h1 {
	font-weight: 700;
	line-height: 1.25em !important;
	text-transform: uppercase;
}

.sidebar-section .content h4,
.sidebar-section .sidebar h2 {
	font-weight: 700;
	line-height: 1em;
	margin-bottom: 1.25rem;
}

.sidebar-section .content p { margin-bottom: 1rem; }
.sidebar-section .content p:last-of-type { margin: 0 !important; }

.sidebar-section .content a { color: var(--clr-black); }
.sidebar-section .content a:hover { color: var(--clr-primary); }

.sidebar-section .content ul {
	flex-direction: column;
	gap: 0.75rem;
	list-style-type: disc;
	margin: 0 0 1.5rem 2rem;
}

.sidebar-section .content img {
	margin-top: 1rem;
	object-fit: cover;
}

.sidebar-section .sidebar nav ul.menu {
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
}

.sidebar-section .sidebar nav ul.menu li.menu-item:not(:last-of-type) {
	border-bottom: 1px solid var(--clr-grey);
	padding-bottom: 0.75rem;
}

.sidebar-section .sidebar nav ul.menu li.menu-item a {
	color: var(--clr-black);
	font-size: 1rem;
	line-height: 1em;
}

.sidebar-section .sidebar nav ul.menu li.menu-item a:hover {
	color: var(--clr-primary);
}

@media screen and (min-width: 2201px) {
	.banner-section {
		background-position: 0rem -34rem !important;
		padding: 16rem 4rem !important;
	}
	
	.banner-section h1 { font-size: 3rem !important; }
	
	.sidebar-section .content h4 { font-size: 2rem !important; }
	.sidebar-section .sidebar h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 2001px) and (max-width: 2200px) {
	.banner-section {
		background-position: 0rem -26rem !important;
		padding: 14rem 4rem !important;
	}
	
	.banner-section h1 { font-size: 2.75rem !important; }
	
	.sidebar-section .content h4 { font-size: 2rem !important; }
	.sidebar-section .sidebar h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 1711px) and (max-width: 2000px) {
	.banner-section {
		background-position: 0rem -26rem !important;
		padding: 12rem 4rem !important;
	}
	
	.banner-section h1 { font-size: 2.5rem !important; }
	
	.sidebar-section .content h4 { font-size: 1.875rem !important; }
	.sidebar-section .sidebar h2 { font-size: 1.875rem !important; }
}

@media screen and (min-width: 1441px) and (max-width: 1710px) {
	.banner-section {
		background-position: 0rem -24rem !important;
		padding: 10rem 4rem !important;
	}
	
	.banner-section h1 { font-size: 2.25rem !important; }
	
	.sidebar-section .content h4 { font-size: 1.75rem !important; }
	.sidebar-section .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
	.banner-section {
		background-position: 0rem -10rem !important;
		padding: 10rem 4rem !important;
	}
	
	.banner-section h1 { font-size: 2.25rem !important; }
	
	.sidebar-section .content h4 { font-size: 1.75rem !important; }
	.sidebar-section .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (max-width: 1200px) {
	.sidebar-section {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.banner-section {
		background-position: 0rem -8rem !important;
		padding: 10rem 2rem !important;
	}
	
	.banner-section h1 { font-size: 2.25rem !important; }
	
	.sidebar-section .content { width: 75% !important; }
	.sidebar-section .sidebar { width: 25% !important; }
	
	.sidebar-section .content h4 { font-size: 1.75rem !important; }
	.sidebar-section .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (min-width: 922px) and (max-width: 1024px) {
	.banner-section {
		background-position: 0rem -15rem !important;
		padding: 8rem 4rem !important;
	}
	
	.banner-section h1 { font-size: 2.125rem !important; }
	
	.sidebar-section .content { width: 70% !important; }
	.sidebar-section .sidebar { width: 30% !important; }
	
	.sidebar-section .content h4 { font-size: 1.625rem !important; }
	.sidebar-section .sidebar h2 { font-size: 1.625rem !important; }
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.banner-section {
		background-position: 0rem -10rem !important;
		padding: 8rem 2rem !important;
	}
	
	.banner-section h1 { font-size: 2.25rem !important; }
	
	.sidebar-section .content { width: 70% !important; }
	.sidebar-section .sidebar { width: 30% !important; }
	
	.sidebar-section .content h4 { font-size: 1.75rem !important; }
	.sidebar-section .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (max-width: 767px) {
	.sidebar-section .content { width: 100% !important; }
	.sidebar-section .content img { height: 40vh; }
	.sidebar-section .sidebar { display: none; visibility: hidden; }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
	.banner-section {
		background-position: center center !important;
		padding: 8rem 2rem !important;
	}
	
	.banner-section h1 { font-size: 2.25rem !important; }
	
	.sidebar-section .content h4 { font-size: 1.75rem !important; }
}

@media screen and (max-width: 479px) {
	.banner-section {
		background-position: center center !important;
		padding: 8rem 2rem !important;
	}
	
	.banner-section h1 { font-size: 2rem !important; }
	
	.sidebar-section .content h4 { font-size: 1.5rem !important; }
}


/* Free Sample Box Page */

@media screen and (min-width: 1441px) and (max-width: 1710px) {
	.page-id-7908 .banner-section {
		background-position: 0rem -12rem !important;
	}
}

@media screen and (min-width: 922px) and (max-width: 1024px) {
	.page-id-7908 .banner-section {
		background-position: 0rem -10rem !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.page-id-7908 .banner-section {
		background-position: 0rem -10rem !important;
	}
}


/* My Account Page */

.page-id-41 .sidebar-section .content {
	width: 100% !important;
}

.page-id-41 .sidebar-section .content nav {
	clear: both;
	float: none;
	width: 100% !important;
}

.page-id-41 .sidebar-section .content nav ul {
	align-items: center;
	flex-direction: row;
	gap: 0;
	justify-content: space-evenly;
	list-style-type: none;
	margin: 0;
}

.page-id-41 .sidebar-section .content nav ul li {
	border: 1px solid var(--clr-black);
	width: 100%;
}

.page-id-41 .sidebar-section .content nav ul li:not(:last-of-type) {
	border-right: none;
}

.page-id-41 .sidebar-section .content nav ul li a {
	padding: 1rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.page-id-41 .sidebar-section .content nav ul li.is-active a {
	background: var(--clr-black);
	border-color: var(--clr-black);
	color: var(--clr-white);
}

.page-id-41 .sidebar-section .content nav ul li.woocommerce-MyAccount-navigation-link--downloads {
	display: none;
	visibility: hidden;
}

.page-id-41 .sidebar-section .content .woocommerce-MyAccount-content {
	clear: both;
	float: none;
	padding: 3rem 1.5rem 0;
	width: 100%;
}

.page-id-41 .sidebar-section .content .woocommerce-info {
	align-items: center;
	background: var(--clr-secondary) !important;
	border-top: none !important;
	color: var(--clr-white) !important;
	display: flex;
	flex-direction: row;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	justify-content: space-between;
	margin: 0 !important;
	padding: 1rem 2rem !important;
}

.page-id-41 .sidebar-section .content .woocommerce-info:focus-visible {
	outline: none !important;
}

.page-id-41 .sidebar-section .content .woocommerce-info::before,
.page-id-41 .sidebar-section .content .woocommerce-info::after {
	display: none;
	visibility: hidden;
}

.page-id-41 .sidebar-section .content .woocommerce-info .button {
	background: var(--clr-primary);
	border: 1px solid var(--clr-primary);
	border-radius: 0;
	box-sizing: border-box;
	color: var(--clr-white);
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
	padding: 1rem 2rem !important;
	text-transform: uppercase;
}

.page-id-41 .sidebar-section .content .woocommerce-info .button:hover {
	background: transparent;
	border-color: var(--clr-primary);
	color: var(--clr-primary);
}

.page-id-41 .sidebar-section .sidebar {
	display: none;
	visibility: hidden;
}

@media screen and (max-width: 921px) {
	.page-id-41 .sidebar-section .content nav ul {
		flex-direction: column;
	}
	
	.page-id-41 .sidebar-section .content nav ul li:not(:last-of-type) {
		border-right: 1px solid var(--clr-primary);
		border-bottom: none;
	}
	
	.page-id-41 .sidebar-section .content .woocommerce-MyAccount-content {
		padding: 3rem 0 0;
	}
}


/* Contact Page */

.page-id-414 ul.elementor-icon-list-items {
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

@media screen and (min-width: 2201px) {
	.page-id-414 .contact-section h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 2001px) and (max-width: 2200px) {
	.page-id-414 .contact-section h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 1711px) and (max-width: 2000px) {
	.page-id-414 .contact-section h2 { font-size: 1.875rem !important; }
}

@media screen and (min-width: 1441px) and (max-width: 1710px) {
	.page-id-414 .contact-section h2 { font-size: 2rem !important; }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
	.page-id-414 .contact-section h2 { font-size: 1.75rem !important; }
}

@media screen and (max-width: 1200px) {
	.page-id-414 .contact-section {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.page-id-414 .contact-section h2 { font-size: 1.75rem !important; }
}

@media screen and (min-width: 922px) and (max-width: 1024px) {
	.page-id-414 .contact-section h2 { font-size: 1.625rem !important; }
	
	.page-id-414 .map-section iframe { height: 40vh; }
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.page-id-414 .contact-section h2 { font-size: 1.75rem !important; }
	
	.page-id-414 .map-section iframe { height: 40vh; }
}

@media screen and (max-width: 767px) {
	.page-id-414 .elementor-widget-icon-list li,
	.page-id-414 .elementor-widget-icon-list li a {
		align-items: center;
		flex-direction: column;
		gap: 0.5rem;
		justify-content: center;
		text-align: center;
	}
	
	.page-id-414 .elementor-widget-icon-list li span {
		text-align: center;
	}
}

@media screen and (min-width: 480px) and (max-width: 767px) {
	.page-id-414 .contact-section h2 { font-size: 1.75rem !important; }
}

@media screen and (max-width: 479px) {
	.page-id-414 .contact-section h2 { font-size: 1.5rem !important; }
}


/* Request Samples Page */

.page-id-5314 .samples-section ul.products {
	display: grid;
	gap: 1.5rem !important;
	grid-template-columns: repeat(3, 1fr) !important;
	margin: 0 !important;
}

.page-id-5314 .samples-section ul.products li.product {
	border: none !important;
	margin: 0 !important;
}

.page-id-5314 .samples-section ul.products li.product .woocommerce-loop-product__link,
.page-id-5314 .samples-section ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	overflow: hidden;
}

.page-id-5314 .samples-section ul.products li.product img {
	height: 25vh;
	margin: 0 !important;
	object-fit: cover;
	width: 100%;
}

.page-id-5314 .samples-section ul.products li.product img:hover {
	transform: scale(1.1);
}

.page-id-5314 .samples-section ul.products li.product .ast-onsale-card {
	background: #FF0000;
	border: none;
	border-radius: 0;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	color: var(--clr-white);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1em;
	opacity: 0.9;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	top: 0.75rem; left: 0.75rem;
	transition: var(--transition);
	width: fit-content;
}

.page-id-5314 .samples-section ul.products li.product:hover .ast-onsale-card {
	opacity: 1;
}

.page-id-5314 .samples-section ul.products li.product .ast-select-options-trigger {
	display: none !important;
	visibility: hidden !important;
}

.page-id-5314 .samples-section ul.products li.product h2 {
	font-family: var(--font-primary);
	font-size: 1.125rem !important;
	font-weight: 600 !important;
	line-height: 1.5em;
	margin-top: 0.75rem !important;
	margin-bottom: 0.5rem !important;
}

.page-id-5314 .samples-section ul.products li.product:hover h2 {
	color: var(--clr-primary);
}

.page-id-5314 .samples-section ul.products li.product .ast-woo-product-category {
	display: none !important;
	visibility: hidden !important;
}

.page-id-5314 .samples-section ul.products li.product .price,
.page-id-5314 .samples-section ul.products li.product .price .amount {
	font-family: var(--font-primary);
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1em;
	margin: 0 !important;
}

.page-id-5314 .samples-section ul.products li.product .price del {
	margin-right: 0.25rem;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.page-id-5314 .samples-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.page-id-5314 .samples-section ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (min-width: 922px) and (max-width: 1024px) {
	.page-id-5314 .samples-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }
	.page-id-5314 .samples-section ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.page-id-5314 .samples-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }
	.page-id-5314 .samples-section ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
	.page-id-5314 .samples-section ul.products { grid-template-columns: repeat(1, 1fr) !important; }
}

@media screen and (max-width: 479px) {
	.page-id-5314 .samples-section ul.products { grid-template-columns: 1fr !important; }
}


/* Trade Account Page */

.page-id-5322 .wpcf7-form {
	border: 1px solid var(--clr-grey);
	margin: 1rem 0 0;
	padding: 2rem;
}


/* Archive Pages */

.archive {
	background: var(--clr-white);
}

.archive.sidebar-open {
	overflow: hidden;
}

.archive .ast-container {
	max-width: 100% !important;
	padding: 0;
}

.archive .sidebar-toggle {
	align-items: center;
	background: var(--clr-white);
	border: 1px solid var(--clr-grey);
	border-left: none;
	border-radius: 0 3px 3px 0;
	color: var(--clr-primary);
	cursor: pointer;
	display: none;
	font-size: 1.25rem !important;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.75rem 0.5rem;
	position: absolute;
	top: 15rem; right: -3rem;
	width: 3rem;
	z-index: 99999;
}

.archive .sidebar-toggle:hover {
	background: var(--clr-primary);
	border-color: var(--clr-primary);
	color: var(--clr-white);
}

.archive .sidebar {
	border-right: 1px solid var(--clr-grey) !important;
	margin: 3rem 0 !important;
	padding-right: 2rem !important;
	width: 20% !important;
}

.archive .sidebar .widget h2 {
	color: var(--clr-black);
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.archive .sidebar .categories ul.product-categories {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.archive .sidebar .categories ul.product-categories li.cat-item {
	line-height: 1.5;
	margin-bottom: 0;
	padding: 0;
}

.archive .sidebar .categories ul.product-categories li.cat-item a:hover,
.archive .sidebar .categories ul.product-categories li.cat-item.current-cat a {
	color: var(--clr-primary);
}

.archive .sidebar .categories ul.product-categories li.cat-item ul.children {
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding-left: 1rem;
}

.archive .sidebar .divider {
	border-bottom: 1px solid var(--clr-grey);
	padding-bottom: 2rem;
}

.archive .sidebar .price-filter form {
	box-sizing: border-box;
	display: block;
	margin-top: 1.5rem;
}

.archive .sidebar .price-filter form .ui-widget-content {
	background: transparent;
	margin-bottom: 1.75rem;
}

.archive .sidebar .price-filter form .ui-slider-range,
.archive .sidebar .price-filter form .ui-slider-handle {
	background: var(--clr-black);
}

.archive .sidebar .price-filter form .price_slider_amount {
	font-size: 1rem;
	line-height: 1.5;
}

.archive .sidebar .price-filter form .price_slider_amount button {
	background: var(--clr-black);
	border: 1px solid var(--clr-black);
	border-radius: 0;
	box-sizing: border-box;
	color: var(--clr-white);
	font-family: var(--font-primary);
	font-size: 1rem !important;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1em;
	padding: 1rem 2rem;
	text-transform: uppercase;
}

.archive .sidebar .price-filter form .price_slider_amount button:hover {
	background: transparent;
	color: var(--clr-black);
}

.archive .sidebar .best-sellers ul.products {
	display: grid;
	gap: 1rem !important;
	grid-template-columns: 1fr !important;
	margin: 0 !important;
}

.archive .sidebar .best-sellers ul.products li.product {
	align-items: center;
	border: none !important;
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
	margin: 0 !important;
}

.archive .sidebar .best-sellers ul.products li.product .astra-shop-thumbnail-wrap {
	flex: 1 1 25%;
}

.archive .sidebar .best-sellers ul.products li.product .astra-shop-summary-wrap {
	flex: 1 1 75%;
}

.archive .sidebar .best-sellers ul.products li.product .woocommerce-loop-product__link,
.archive .sidebar .best-sellers ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	overflow: hidden;
}

.archive .sidebar .best-sellers ul.products li.product img {
	height: 8vh;
	margin: 0 !important;
	object-fit: cover;
	width: 100%;
}

.archive .sidebar .best-sellers ul.products li.product img:hover {
	transform: scale(1.1);
}

.archive .sidebar .best-sellers ul.products li.product .ast-onsale-card,
.archive .sidebar .best-sellers ul.products li.product .ast-select-options-trigger {
	display: none !important;
	visibility: hidden !important;
}

.archive .sidebar .best-sellers ul.products li.product h2 {
	font-family: var(--font-primary);
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1.5em;
	margin: 0rem !important;
}

.archive .sidebar .best-sellers ul.products li.product:hover h2 {
	color: var(--clr-primary);
}

.archive .sidebar .best-sellers ul.products li.product .ast-woo-product-category,
.archive .sidebar .best-sellers ul.products li.product .price {
	display: none !important;
	visibility: hidden !important;
}

.archive .content-area {
	margin: 3rem 0 !important;
	padding: 0 0 0 2rem !important;
	width: 80% !important;
}

.archive .content-area .content-header {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.archive .content-area .woocommerce-result-count {
	display: none;
	visibility: hidden;
}

.archive .content-area .content-header .woocommerce-ordering {
	margin: 0;
	width: 15rem;
}

.archive .content-area .content-header .woocommerce-ordering select {
	background-position-x: calc(100% - 10px);
	background-position-y: center;
	border: 1px solid var(--clr-grey) !important;
	border-radius: 3px;
	color: var(--clr-black);
	padding: 0.5rem 0.75rem;
	width: 100%;
}

.archive .content-area .content-header .woocommerce-ordering select:hover {
	color: var(--clr-primary);
}

.archive .content-area .content-header .woocommerce-ordering select:focus {
	border: none;
}

.archive .content-area ul.products {
	display: grid;
	gap: 1.5rem !important;
	grid-template-columns: repeat(4, 1fr) !important;
	margin: 0 !important;
}

.archive .content-area ul.products li.product {
	border: none !important;
	margin: 0 !important;
}

.archive .content-area ul.products li.product .woocommerce-loop-product__link,
.archive .content-area ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	overflow: hidden;
}

.archive .content-area ul.products li.product img {
	height: 25vh;
	margin: 0 !important;
	object-fit: cover;
	width: 100%;
}

.archive .content-area ul.products li.product img:hover {
	transform: scale(1.1);
}

.archive .content-area ul.products li.product .ast-onsale-card {
	background: #FF0000;
	border: none;
	border-radius: 0;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	color: var(--clr-white);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1em;
	opacity: 0.9;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	top: 0.75rem; left: 0.75rem;
	transition: var(--transition);
	width: fit-content;
}

.archive .content-area ul.products li.product:hover .ast-onsale-card {
	opacity: 1;
}

.archive .content-area ul.products li.product .ast-select-options-trigger {
	display: none !important;
	visibility: hidden !important;
}

.archive .content-area ul.products li.product h2 {
	font-family: var(--font-primary);
	font-size: 1.125rem !important;
	font-weight: 600 !important;
	line-height: 1.5em;
	margin-top: 0.75rem !important;
	margin-bottom: 0.5rem !important;
}

.archive .content-area ul.products li.product:hover h2 {
	color: var(--clr-primary);
}

.archive .content-area ul.products li.product .ast-woo-product-category {
	display: none !important;
	visibility: hidden !important;
}

.archive .content-area ul.products li.product .price,
.archive .content-area ul.products li.product .price .amount {
	font-family: var(--font-primary);
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1em;
	margin: 0 !important;
}

.archive .content-area ul.products li.product .price del {
	margin-right: 0.25rem;
}

@media screen and (min-width: 2201px) {
	.archive .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (min-width: 2001px) and (max-width: 2200px) {
	.archive .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (min-width: 1711px) and (max-width: 2000px) {
	.archive .sidebar h2 { font-size: 1.75rem !important; }
}

@media screen and (min-width: 1441px) and (max-width: 1710px) {
	.archive .sidebar h2 { font-size: 1.5rem !important; }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
	.archive .sidebar h2 { font-size: 1.5rem !important; }
}

@media screen and (max-width: 1200px) {
	.archive .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.archive .sidebar { width: 28% !important; }
	.archive .sidebar h2 { font-size: 1.5rem !important; }
	
	.archive .content-area { width: 72% !important; }
	.archive .content-area ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.archive .content-area ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (max-width: 1024px) {
	.archive .sidebar-toggle { display: flex; }
	.archive .sidebar.is-open { transform: translateX(0); }
	.archive .sidebar {
		background: var(--clr-white);
		height: 100vh;
		margin: 0 !important;
		max-width: 25rem;
		overflow: visible;
		padding: 1.5rem !important;
		position: fixed;
		top: 0; left: 0;
		transform: translateX(-100%);
		transition: all 0.5s ease;
		width: 80% !important;
		z-index: 9999;
	}
	
	.archive .sidebar .wrapper {
		height: 100%;
		overflow-y: auto;
	}
	
	.archive .content-area {
		padding: 0 !important;
		width: 100% !important;
	}
}

@media screen and (min-width: 922px) and (max-width: 1024px) {
	.archive .sidebar h2 { font-size: 1.25rem !important; }
	
	.archive .content-area ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.archive .content-area ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (min-width: 768px) and (max-width: 921px) {
	.archive .sidebar h2 { font-size: 1.25rem !important; }
	
	.archive .content-area ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.archive .content-area ul.products li.product:last-of-type { display: none; visibility: hidden; }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
	.archive .sidebar h2 { font-size: 1.25rem !important; }
	
	.archive .content-area ul.products { grid-template-columns: repeat(1, 1fr) !important; }
}

@media screen and (max-width: 479px) {
	.archive .sidebar h2 { font-size: 1.25rem !important; }
	
	.archive .content-area h2.elementor-heading-title { line-height: 1.25em !important; }
	.archive .content-area ul.products { grid-template-columns: 1fr !important; }
}


/* Footer */

.site-footer {
	background: var(--clr-primary) !important;
}

.footer-main .branding.fm-column {
	flex: 1 1 34%;
}

.footer-main .branding.fm-column .branding-inner {
	max-width: 16rem;
}

.footer-main .branding.fm-column img:hover {
	opacity: 0.75;
}

.footer-main .information.fm-column,
.footer-main .services.fm-column,
.footer-main .contact.fm-column {
	flex: 1 1 22%;
}

.footer-main .fm-column h4 {
	margin: 0 0 1rem;
}

.footer-main .fm-column ul {
	flex-direction: column;
	gap: 1rem;
}

.footer-main .fm-column ul li a {
	color: var(--clr-white);
}

.footer-main .fm-column ul li a:hover {
	color: var(--clr-black);
}

.footer-main .contact.fm-column ul.footer-contact li,
.footer-main .contact.fm-column ul.footer-contact li a {
	align-items: center;
	color: var(--clr-white);
	display: flex;
	flex-direction: row;
	gap: 0.25rem;
}

.footer-main .contact.fm-column ul.footer-contact li a:hover {
	color: var(--clr-black);
}

.footer-main .contact.fm-column ul.footer-contact li p {
	color: var(--clr-white);
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

.footer-main .contact.fm-column ul.footer-contact li:not(:last-of-type) i {
	position: relative;
	top: 1px;
}

.footer-main .contact.fm-column .socials {
	margin: 1.25rem 0 0;
}

.footer-main .contact.fm-column .socials ul.footer-socials {
	flex-direction: row !important;
}

.footer-main .contact.fm-column .socials ul.footer-socials li a {
	background: var(--clr-white);
	border: 1px solid var(--clr-white);
	border-radius: 50%;
	box-sizing: border-box;
	color: var(--clr-primary);
	display: inline-block;
	font-size: 1rem;
	line-height: 1;
	padding: 0.5rem;
}
	
.footer-main .contact.fm-column .socials ul.footer-socials li a:hover {
	background: transparent;
	border-color: var(--clr-white);
	color: var(--clr-white);
}
	
.footer-main .contact.fm-column .socials ul.footer-socials li a i {
	display: block;
	height: 1rem;
	width: 1rem;
}
	
.footer-main .contact.fm-column .socials ul.footer-socials li a i::before {
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.footer-copyright {
	border-top: 1px solid var(--clr-white);
	font-size: 1rem;
}

.footer-copyright .container {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1.125rem;
}

.footer-copyright .copyright {
	flex: 1 1 50%;
}

.footer-copyright .copyright p {
	margin: 0;
	padding: 0;
}

.footer-copyright .accepted-payments {
	flex: 1 1 50%;
	gap: 0.5rem;
	justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
	.footer-main .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.footer-main .fm-column {
		flex: 1 1 25% !important;
	}
	
	.footer-main .branding.fm-column .branding-inner {
		max-width: 12rem;
	}
	
	.footer-copyright .container {
		margin-left: 2rem !important;
		margin-right: 2rem !important;
	}
}

@media screen and (max-width: 1024px) {
	.footer-copyright .container {
		align-items: flex-start;
		flex-direction: column-reverse;
		gap: 1rem;
		padding-top: 1.125rem;
	}
	
	.footer-copyright .copyright,
	.footer-copyright .accepted-payments {
		flex: 1 1 100%;
	}
}

@media screen and (max-width: 767px) {
	.footer-main .container {
		flex-direction: column;
	}
	
	.footer-main .fm-column {
		flex: 1 1 100% !important;
	}
}


/* Accepted Payments */

.accepted-payments {
	align-items: center;
	column-gap: 0.75rem;
	display: flex;
	flex-direction: row;
}

.accepted-payments p {
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.accepted-payments .card-icons {
	align-items: center;
	column-gap: 0.5rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.accepted-payments .card-icons .card-icon {
	max-width: 2.5rem;
}


/* Floating Buttons (WhatsApp, reCAPTCHA) */

.grecaptcha-badge {
	bottom: 10rem !important;
}

.qlwapp .qlwapp__container {
	width: auto !important;
}

.qlwapp .qlwapp__button {
	align-items: center !important;
	background: #25D366;
	border: 2px solid #25D366;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: row;
	gap: 0.5rem !important;
	height: auto !important;
	justify-content: space-between !important;
	margin: 0 1rem 5rem 0 !important;
	padding: 1rem 1.5rem !important;
	width: fit-content;
}

.qlwapp .qlwapp__button:hover {
	background: transparent !important;
	background-color: transparent !important;
	border: 2px solid #25D366;
}

.qlwapp .qlwapp__button i.qlwapp__icon {
	font-size: 1.25rem;
}

.qlwapp .qlwapp__button span.qlwapp__text {
	color: var(--clr-white);
	font-family: var(--font-primary);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.qlwapp .qlwapp__button:hover i.qlwapp__icon,
.qlwapp .qlwapp__button:hover span.qlwapp__text {
	color: #25D366;
}

@media screen and (max-width: 767px) {
	.qlwapp .qlwapp__button {
		margin-right: 0.5rem !important;
		padding: 1rem !important;
	}
	
	.qlwapp .qlwapp__button i.qlwapp__icon {
		font-size: 1.5rem;
	}
	
	.qlwapp .qlwapp__button span.qlwapp__text {
		display: none;
		visibility: hidden;
	}
}