﻿/* Global element defaults */
body {
	font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4 {
	margin-top: 0;
	color: #212529;
	
}

h2 {
	color: #007a3d;
	font-weight: 900;
	letter-spacing: 0.5px;
}

p {
	margin-top: 0;
	color: #212529;
}

a,
button {
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

a:hover {
	opacity: 0.92;
}

/* Reusable button variants */
.btn-primary {
	background-color: #007a3d;
	color: #fff;
	border: 2px solid #007a3d;
	transition: 0.5s all ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background-color: #fff;
	color: #007a3d;
	border-color: #007a3d;
}

.btn-primary-light {
	background-color: #248D58;
	color: #ffffff;
	border: 2px solid #248D58;
	transition: 0.5s all ease-in-out;
}

.btn-primary-light:hover,
.btn-primary-light:focus-visible {
	background-color: #ffffff;
	color: #248D58;
	border-color: #248D58;
}

.btn-secondary {
	background-color: #fff;
	color: #000;
	border: 2px solid #fff;
	transition: 0.5s all ease-in-out;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	background-color: #007a3d;
	color: #fff;
	border-color: #ffffff;
}

.btn-secondary-light {
	background-color: #fff;
	color: #007A3D;
	border: 2px solid #007A3D;
	transition: 0.5s all ease-in-out;
}

.btn-secondary-light:hover,
.btn-secondary-light:focus-visible {
	background-color: #007a3d;
	color: #fff;
	border-color: #ffffff;
}

#header.aosmith-header-v1 {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #dbe0e6;
}

#header.aosmith-header-v1.is-scrolled {
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.aosmith-header-container {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
}

.aosmith-header-top {
	background: #00853f;
	color: #fff;
}

.aosmith-utility-links {
	margin: 0;
	padding: 10px 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.aosmith-utility-links a {
	color: #fff;
	text-decoration: none;
}

.aosmith-pill-link {
	padding: 4px 12px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
}

.aosmith-top-search {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	padding: 4px 10px;
}

.aosmith-top-search input {
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	width: 150px;
	font-size: 12px;
}

.aosmith-top-search input::placeholder {
	color: rgba(255, 255, 255, 0.85);
}

.aosmith-main-row {
	display: flex;
	align-items: center;
	min-height: 70px;
	gap: 24px;
}

.aosmith-brand img {
	height: 44px;
	width: auto;
}

.aosmith-primary-nav {
	flex: 1;
}

.aosmith-primary-nav > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 34px;
}

.aosmith-primary-nav > ul > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 70px;
	font-size: 16px;
	color: #2f3438 !important;
	text-decoration: none;
	font-weight: 500;
}

#header.aosmith-header-v1 .aosmith-primary-nav a,
#header.aosmith-header-v1 .aosmith-primary-nav a:visited {
	color: #2f3438 !important;
}

#header.aosmith-header-v1 .aosmith-primary-nav a:hover,
#header.aosmith-header-v1 .aosmith-primary-nav a:focus {
	color: #00853f !important;
}

.aosmith-right-icons {
	display: flex;
	gap: 16px;
}

.aosmith-right-icons a {
	color: #2f3438;
	font-size: 20px;
	text-decoration: none;
}

.aosmith-primary-nav li.has-panel {
	position: static;
}

.aosmith-mega-panel {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100vw;
	background: #fff;
	border-top: 1px solid #d8dde3;
	border-bottom: 1px solid #d8dde3;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

.aosmith-panel-inner {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
}

.aosmith-primary-nav li.has-panel:hover .aosmith-mega-panel,
.aosmith-primary-nav li.has-panel.is-open .aosmith-mega-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.aosmith-panel-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 24px;
	padding: 34px;
}

.aosmith-panel-links {
	padding-right: 24px;
	border-right: 1px solid #cfd4d9;
}

.aosmith-panel-links p,
.aosmith-panel-feature p {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.4;
	color: #32393f;
}

.aosmith-panel-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.aosmith-panel-links li + li {
	margin-top: 14px;
}

.aosmith-panel-links a {
	color: #3d4349;
	text-decoration: none;
	font-size: 16px;
}

.aosmith-panel-links li:first-child a,
.aosmith-panel-feature h4 {
	color: #00853f;
	font-weight: 700;
}

.aosmith-panel-feature h4 {
	margin: 0 0 14px;
	font-size: 30px;
}

.aosmith-panel-image img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.aosmith-mobile-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
	width: 26px;
}

.aosmith-mobile-toggle span {
	display: block;
	height: 2px;
	background: #2f3438;
	margin-bottom: 5px;
}

.aosmith-popular-product-desc {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1279px) {
	.aosmith-popular-product-desc {
		-webkit-line-clamp: 2;
	}
}

@media (max-width: 1024px) {
	.aosmith-utility-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.aosmith-mobile-toggle {
		display: block;
		margin-left: auto;
	}

	.aosmith-primary-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		border-top: 1px solid #dbe0e6;
	}

	.aosmith-primary-nav.is-open {
		display: block;
	}

	.aosmith-primary-nav > ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 12px 24px 20px;
	}

	.aosmith-primary-nav > ul > li {
		width: 100%;
	}

	.aosmith-primary-nav > ul > li > a {
		min-height: 48px;
	}

	.aosmith-mega-panel {
		position: static;
		width: 100%;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 1px solid #e5e7eb;
		border-radius: 10px;
		display: none;
		pointer-events: auto;
	}

	.aosmith-primary-nav li.has-panel.is-open .aosmith-mega-panel {
		display: block;
	}

	.aosmith-panel-grid {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.aosmith-panel-links {
		border-right: 0;
		padding-right: 0;
	}

	.aosmith-right-icons {
		margin-left: 10px;
	}
}

/* Homepage section reveal animation */
.scroll-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms ease, transform 700ms ease;
	will-change: opacity, transform;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-reveal-item {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 560ms ease, transform 560ms ease;
	transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible .scroll-reveal-item {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.scroll-reveal-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Homepage hero arrow buttons */
.hero-arrow-btn {
	background-color: rgba(255, 255, 255, 0.9);
	border-color: #007a3d;
	color: #007a3d;
}

.hero-arrow-btn:hover,
.hero-arrow-btn:focus-visible {
	background-color: #007a3d !important;
	border-color: #007a3d !important;
	color: #ffffff !important;
}

.hero-swiper-pagination .hero-swiper-dot {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #D9D9D9;
	transition: background-color 0.25s ease;
	opacity: 1;
}

.hero-swiper-pagination .hero-swiper-dot.swiper-pagination-bullet-active {
	background: #007a3d;
}

/* Expert insights: mobile slider, desktop grid */
.expert-insights-slider {
	overflow: hidden;
}

.expert-insights-track {
	display: flex;
}

.expert-insights-card {
	height: auto;
}

.expert-insights-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
}

.expert-insights-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 !important;
	background: #c7ccd1;
	opacity: 1;
}

.expert-insights-pagination .swiper-pagination-bullet-active {
	background: #007a3d;
}

@media (min-width: 768px) {
	.expert-insights-slider {
		overflow: visible;
	}

	.expert-insights-track {
		display: grid;
		gap: 16px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		transform: none !important;
	}

	.expert-insights-card {
		width: auto !important;
		margin: 0 !important;
	}

	.expert-insights-pagination {
		display: none;
	}
}

@media (min-width: 1024px) {
	.expert-insights-track {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1280px) {
	.expert-insights-track {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* PLP filters */
.aos-plp-filters {
	background: #F9F9F9;
	border: 1px solid #EBEBEB;
}

.aos-plp-filters .aos-plp-filter-title {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;
}

.aos-plp-filters .aos-plp-filter-subtitle {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	line-height: 1.35;
}

.aos-plp-filters [data-accordion-toggle][aria-expanded="true"] .aos-plp-filter-subtitle {
	color: #007A3D;
}

.aos-plp-filters .aos-plp-filter-option {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 1.35;
}

.aos-plp-filters .aos-plp-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 4px;
	border: 1px solid #CCC;
	background: #CCC;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.aos-plp-filters .aos-plp-checkbox:checked {
	background: #007237;
	border-color: #007237;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.25 8.5 6.5 11.75 12.75 5.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px 13px;
}

.aos-plp-filters .aos-price-range {
	--aos-range-progress: 0%;
}

.aos-plp-filters .aos-price-range-value {
	white-space: nowrap;
}

@media (min-width: 1024px) {
	.plp-quiz-banner-panel {
		background-image: none !important;
	}
}

.aos-plp-filters .aos-price-range-track {
	position: relative;
	height: 10px;
	margin: 12px 0;
	border-radius: 999px;
	background: #CCC;
	/* overflow visible so thumb can extend above/below the bar */
	overflow: visible;
}

.aos-plp-filters .aos-price-range-progress {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	height: 100%;
	width: var(--aos-range-progress);
	background: #007237;
	border-radius: 999px;
}

.aos-plp-filters .aos-price-range input[type='range'] {
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 3;
	width: 100%;
	height: 44px;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	opacity: 0;
	cursor: pointer;
}

.aos-plp-filters .aos-price-range-thumb {
	position: absolute;
	top: 50%;
	left: var(--aos-range-progress);
	z-index: 2;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	border: 3px solid #007237;
	border-radius: 999px;
	background: #007237;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

/* ===== Product Details Page (Tailwind) ===== */
.pdp-tab-btn.active {
	color: #007A3D;
	border-bottom: 3px solid #007A3D;
}

/* PDP Gallery */
.pdp-gallery-wrap {
	border-radius: 8px;
	padding: 24px 52px;
	position: relative;
	overflow: hidden;
}

.pdp-gallery-swiper {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.pdp-gallery-swiper .swiper-wrapper {
	align-items: center;
	width: 100%;
}

.pdp-gallery-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	flex-shrink: 0;
	overflow: hidden;
}

.pdp-gallery-swiper .swiper-slide img {
	max-width: 100%;
	max-height: 320px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pdp-gallery-prev,
.pdp-gallery-next {
	position: absolute;
	top: calc(50% - 24px);
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #007A3D;
	background: #ffffff;
	color: #007A3D;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdp-gallery-prev:hover,
.pdp-gallery-next:hover {
	background: #007A3D;
	color: #ffffff;
}

.pdp-gallery-prev {
	left: 12px;
}

.pdp-gallery-next {
	right: 12px;
}

/* PDP Thumbs */
.pdp-thumb-list {
	display: flex;
	gap: 20px;
	margin: auto;
    width: fit-content;
}

.pdp-thumb {
	width: 120px;
	height: 80px;
	border-radius: 8px;
	border: 2px solid #D1D1D1;
	background: #ffffff;
	padding: 4px;
	cursor: pointer;
	transition: border-color 0.25s ease;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdp-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.pdp-thumb.active {
	border-color: #007A3D;
}

.pdp-thumb:hover {
	border-color: #007A3D;
}
.slider-section {
	background: linear-gradient(to right, #EEE 30%, transparent 50%);
}

@media (max-width: 767px) {
	.slider-section {
		background: #ffffff;
	}

	.slider-section nav[aria-label="breadcrumb"] {
		position: static;
		margin-bottom: 12px;
		padding-left: 0;
		padding-right: 0;
	}

	.slider-section .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.pdp-gallery-wrap {
		padding: 16px 40px;
	}

	.pdp-gallery-swiper .swiper-slide img {
		max-height: 220px;
	}

	.pdp-gallery-prev,
	.pdp-gallery-next {
		width: 34px;
		height: 34px;
	}

	.pdp-gallery-prev {
		left: 4px;
	}

	.pdp-gallery-next {
		right: 4px;
	}

	.pdp-thumb-list {
		max-width: 100%;
		gap: 8px;
		overflow-x: auto;
		padding-bottom: 2px;
		justify-content: flex-start;
	}

	.pdp-thumb {
		width: 74px;
		height: 56px;
		border-radius: 6px;
	}

	.slider-section .pdp-tab-btn {
		font-size: 16px;
		padding: 12px 6px;
	}

	.slider-section .pdp-panel p {
		font-size: 16px;
		line-height: 1.6;
	}
	.aos-plp-filters .aos-plp-filter-subtitle {
		font-size: 17px;
	}
}

.ar-view-section {
	background: linear-gradient(to right, #007A3D 50%, #48A375 50%);
}
.ar-view-section .ar-deatails {

}
@media(max-width: 1024px) {
	.ar-view-section .container {
		padding: 0px;
	}
	.ar-view-section {
		background: #007A3D;
	}
	.ar-view-section .ar-deatails-list {
		padding: 2rem 0.75rem;
	}
	.ar-view-section .ar-deatails-image {
		background: #48A375;
	}
}
#gform_1 {
	margin-top: 0;
	display: flex;
	align-items: flex-start;
	margin-top: 0.5rem;
	gap: 20px;
}

#gform_1 .gform_body {
	flex: 1;
}

#gform_1 input[type="email"] {
	height: 46px !important;
	width: 100% !important;
	border-radius: 5px;
	border: 1px solid #8C8E8D;
	background: #fff;
	padding: 0 1rem;
	font-size: 15px;
	font-weight: 400;
	color: #A7A7A7;
	outline: none;
	margin: 0;
}

#gform_1 input[type="email"]::placeholder {
	color: #A7A7A7;
}

#gform_1 input[type="email"]:focus {
	border-color: #8C8E8D;
}

#gform_submit_button_1 {
	margin: 0;
	margin-left: 0px;
	width: auto !important;
	height: 46px !important;
	border-radius: 5px;
	padding: 0 2rem;
	font-size: 15px;
	font-weight: 400;
	background-color: #248D58;
	color: #ffffff;
	border: 2px solid #248D58;
	transition: 0.5s all ease-in-out;
	cursor: pointer;
	width: 120px;
}

#gform_submit_button_1:hover,
#gform_submit_button_1:focus-visible {
	background-color: #248D58;
	color: #ffffff;
	border-color: #248D58;
}

.gform_confirmation_message {
	color: #248D58 !important;
}
#gform_wrapper_1 {
	margin: 0;
}
#gform_1 .gform-footer {
	width: auto;
	margin: 0;
	padding: 0;
}
#gform_1_validation_container {
	display: none;
}
#gform_1 .validation_below li {
	padding: 0 !important;
    border: none !important;
	background: none;
	margin: 0;
	width: 100%;
    max-width: 100% !important;
}
#gform_1 .validation_message {
	padding: 0;
    color: red;
    font-weight: 300;
	background: transparent;
}
#gform_1 .top_label div.ginput_container {
	margin-top: 0px;
}
#gform_wrapper_1 {
	margin-top: 15px;
}

@media (max-width:600px){
	#gform_1 {
		gap: 12px;
		flex-direction: column;
	}
	#gform_1 .gform-body, #gform_1 .gform-footer, #gform_submit_button_1 {
		width: 100% !important;
	}
	#gform_wrapper_1 {
		margin-top: 0;
	}
	#gform_submit_button_1 {
		background-color: #007A3D
	}
	.download-sec .container {
		padding: 0 !important;
	}
}
#gform_1 .gform_confirmation_wrapper_1 {
	margin-bottom: 25px;
    margin-top: 25px;
	color: #007237 !important;
}
@media(max-width:767px){
	#sms_mobile_form {
		align-items: flex-start !important;
	}
}
@media (max-width: 1279px) {
	#header.js-header {
		border-bottom: 0;
	}

	#header.js-header .aosmith-mobile-main-row {
		min-height: 78px;
	}

	#header.js-header .aosmith-mobile-logo-link {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	#header.js-header .aosmith-mobile-logo-link img {
		height: 40px;
	}

	#header.js-header .js-nav {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1100;
		width: 100%;
		height: 100dvh;
		overflow-y: auto;
		background: #ffffff;
		border: 0;
		opacity: 0;
		transform: translateY(-10px);
		pointer-events: none;
		transition: opacity 0.28s ease, transform 0.28s ease;
		will-change: opacity, transform;
	}

	#header.js-header .js-nav.is-open {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	#header.js-header .aosmith-mobile-drawer-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 22px 20px;
		background: #00853f;
	}

	#header.js-header .aosmith-mobile-nav-search {
		padding: 18px 24px 8px;
	}

	#header.js-header .aosmith-mobile-nav-search-form {
		display: flex;
		align-items: center;
		gap: 12px;
		border: 2px solid #a9abad;
		border-radius: 8px;
		padding: 10px 14px;
		background: #efefef;
	}

	#header.js-header .aosmith-mobile-nav-search-form i {
		font-size: 20px;
		color: #a3a3a3;
	}

	#header.js-header .aosmith-mobile-nav-search-form input {
		width: 100%;
		border: 0;
		outline: none;
		background: transparent;
		font-size: 30px;
		font-weight: 500;
		line-height: 1.1;
		color: #111111;
	}

	#header.js-header .aosmith-mobile-nav-search-form input::placeholder {
		color: #9f9f9f;
	}

	#header.js-header .js-nav > ul {
		padding: 0px 20px 36px;
	}

	#header.js-header .js-nav > ul > li {
		border-bottom: 1px solid #dddddd;
	}

	#header.js-header .js-panel-trigger,
	#header.js-header .js-nav > ul > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 50px;
		font-size: 16px;
		font-weight: 700;
		color: #000000;
		text-transform: none;
		letter-spacing: 0;
		border: 0;
		padding: 0;
	}

	#header.js-header .js-panel {
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.32s ease, opacity 0.28s ease;
		will-change: max-height, opacity;
	}

	#header.js-header .js-panel.max-h-\[520px\] {
		opacity: 1;
		max-height: 520px;
	}

	#header.js-header .js-panel .grid {
		display: block;
		padding: 2px 0 5px;
	}

	#header.js-header .js-panel .mt-0 {
		border: 0;
		padding: 0;
	}

	#header.js-header .js-panel ul.space-y-4,
	#header.js-header .js-panel ul.space-y-6 {
		margin: 0;
		padding: 0;
	}

	#header.js-header .js-panel ul.space-y-4 > li,
	#header.js-header .js-panel ul.space-y-6 > li {
		margin: 0;
	}

	#header.js-header .js-panel ul.space-y-4 a,
	#header.js-header .js-panel ul.space-y-6 a,
	#header.js-header .js-panel summary {
		display: flex;
		align-items: center;
		min-height: 46px;
		font-size: 16px;
		font-weight: 700;
		color: #4e4e4ed1;
		border: 0;
		text-transform: none;
	}

	#header.js-header .js-panel .lg\:flex,
	#header.js-header .js-panel .xl\:flex {
		display: block !important;
	}

	#header.js-header .js-panel h4 {
		margin: 12px 0;
		font-size: 14px;
		font-weight: 700;
		color: #00853f;
	}

	#header.js-header .js-panel-trigger i,
	#header.js-header .js-panel summary i {
		font-size: 18px;
		color: #1F2937;
		transition: transform 0.28s ease;
	}

	#header.js-header .js-nav > ul > li > a i {
		font-size: 28px;
	}

	#header.js-header .js-panel .max-w-\[420px\] {
		max-width: none;
		border-radius: 12px;
	}

	#header.js-header .js-panel .rounded-lg {
		border-radius: 6px;
		    background-image: -webkit-linear-gradient(16deg, rgb(255, 255, 255) 20% 23%, rgba(214, 226, 213, 0.5) 23%) !important;
		max-width: 430px;
	}


	#header.js-header .js-panel .text-\[12px\] {
		font-size: 12px !important;
		line-height: 1.35;
		margin-bottom: 10px !important;
	}

	#header.js-header .js-panel .btn-primary-light {
		min-height: 32px;
        padding: 0 14px;
        font-size: 12px !important;
        border-radius: 999px;
        display: flex;
        justify-content: center;
        align-items: center;
		width: fit-content;
		margin-bottom: 2px !important;
	}
	.mob-main-menu {
		padding: 10px 0 18px 0;

	}

	#header.js-header .js-mobile-search-panel {
		position: fixed;
		inset: 0;
		z-index: 1200;
		background: rgba(0, 0, 0, 0.18);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.28s ease, visibility 0.28s ease;
	}

	#header.js-header .js-mobile-search-card {
		transform: translateY(-14px);
		opacity: 0;
		transition: transform 0.28s ease, opacity 0.28s ease;
	}

	#header.js-header .js-mobile-search-panel.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	#header.js-header .js-mobile-search-panel.is-open .js-mobile-search-card {
		transform: translateY(0);
		opacity: 1;
	}

	#header.js-header .js-mobile-search-card input::placeholder {
		color: #A7A7A7;
		font-size: 16px;
	}
}

/* PLP drawer scrollbar */
@media (max-width: 1023px) {
	#plp-filter-drawer {
		scrollbar-color: var(--color-brand-primary, #0A7D47) #e5e7eb;
		scrollbar-width: thin;
	}

	#plp-filter-drawer::-webkit-scrollbar {
		width: 8px;
	}

	#plp-filter-drawer::-webkit-scrollbar-track {
		background: #e5e7eb;
	}

	#plp-filter-drawer::-webkit-scrollbar-thumb {
		background-color: var(--color-brand-primary, #0A7D47);
		border-radius: 9999px;
	}
}
