/* 
* Shop Page Stylesheet
* Brand guidelines: Deep Blue (#0A1628), Warm Off-white (#F7F6F4), Light Blue (#EFF1F4), Clay Blue (#456793)
*/

/* Banner Section */
.shop-banner-section {
	height: 512px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.shop-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 22, 40, 0.7) 10%, rgba(10, 22, 40, 0.2) 100%);
	z-index: 1;
}

.shop-banner-content {
	position: relative;
	z-index: 2;
	margin-left: 100px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #eff1f4;
	max-width: 480px;
}

.shop-banner-title {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1.2px;
	margin-bottom: 0px;
	max-width: 37%;
	color: #EFF1F4;
	text-transform: capitalize;
}

.shop-banner-desc {
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	max-width: 38%;
}

/* Page Layout */
.shop-page-wrapper {
	background-color: #f7f6f4;
	width: 100%;
	padding: 120px 0;
}

.shop-page-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 100px;
	display: flex;
	gap: 56px;
	align-items: flex-start;
}

/* Sidebar Columns */
.shop-sidebar-filters {
	width: 304px;
	flex-shrink: 0;
	position: sticky;
	top: 80px;
	padding-right: 20px;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #cfdaeb #f7f6f4;
}

.shop-sidebar-filters::-webkit-scrollbar {
	width: 1px;
}

.shop-sidebar-filters::-webkit-scrollbar-track {
	background: #f7f6f4;
}

.shop-sidebar-filters::-webkit-scrollbar-thumb {
	background: #cfdaeb;
	border-radius: 2px;
}

.shop-sidebar-filters::-webkit-scrollbar-thumb:hover {
	background: #456793;
}

.shop-products-column {
	flex-grow: 1;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle-btn {
	display: none;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #cfdaeb;
	padding: 12px 16px;
	background-color: #fff;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #0a1628;
	cursor: pointer;
	border-radius: 4px;
	margin-bottom: 20px;
}

.mobile-filter-toggle-btn .toggle-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #0a1628;
	transition: transform 0.3s;
}

.mobile-filter-toggle-btn.active .toggle-icon {
	transform: rotate(180deg);
}

/* Filters UI */
.filter-header {
	margin-bottom: 30px;
}

.filter-header h2 {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: -0.56px;
	color: #0a1628;
	margin: 0;
}

.filter-group {
	border-bottom: 1px solid #cfdaeb;
	padding-bottom: 22px;
	margin-bottom: 22px;
}

.filter-group.filter-search {
	border-bottom: 1px solid #cfdaeb;
	padding-bottom: 18px;
}

/* Search input styling */
.search-input-wrapper {
	position: relative;
	border: 1px solid #cfdaeb;
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 4px;
}

.search-input-wrapper input {
	border: none;
	outline: none;
	padding: 12px  ;
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	color: #0a1628;
	background: transparent;
	line-height: 110%;
}

.search-input-wrapper input::placeholder {
	color: #456793;
}

.search-submit-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #456793;
	transition: color 0.2s;
}

.search-submit-btn:hover {
	color: #0a1628;
}

/* Accordion Accord */
.filter-group-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.filter-group-header h3 {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.36px;
	color: #0a1628;
	margin: 0;
	line-height: 110%;
}

.accordion-arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #456793;
	border-bottom: 2px solid #456793;
	transform: rotate(45deg);
	transition: transform 0.3s;
}

.filter-group.active .accordion-arrow {
	transform: rotate(-135deg);
}

.filter-group-content {
	max-height: none;
	overflow: visible;
	transition: opacity 0.3s, margin-top 0.3s;
	margin-top: 16px;
	opacity: 1;
	margin-left: 16px;
	margin-right: 16px;
}

.filter-group:not(.active) .filter-group-content {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	overflow: hidden;
}

/* Show More / Less button */
.filter-show-more-btn {
	background: none;
	border: none;
	padding: 8px 0 0 16px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	color: #456793;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s;
}

.filter-show-more-btn:hover {
	color: #0a1628;
}

/* Hidden extra items in collapsible lists */
.filter-list-collapsible .filter-item.filter-item-hidden {
	display: none;
}

/* Checkbox Lists */
.filter-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.filter-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.filter-checkbox-label {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
	position: relative;
	user-select: none;
}

.filter-checkbox-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom-checkbox {
	height: 15px;
	width: 15px;
	background-color: #fff;
	border: 1px solid #7ba8c4;
	border-radius: 2px;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
}

.filter-checkbox-label input:checked ~ .custom-checkbox {
	background-color: #7ba8c4;
	border-color: #7ba8c4;
}

.custom-checkbox:after {
	content: "";
	position: absolute;
	display: none;
	left: 4px;
	top: 1.2px;
	width: 3px;
	height: 7px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.filter-checkbox-label input:checked ~ .custom-checkbox:after {
	display: block;
}

.term-name {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	color: #456793;
	line-height: 1.5;
}

.term-count {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	color: #456793;
}

/* Price range double slider */
.price-slider-group {
	padding-top: 0px;
	padding-bottom: 0px;
}

.double-slider-container {
	position: relative;
	width: 100%;
	height: 20px;
	margin-bottom: 15px;
}

.slider-track {
	position: absolute;
	height: 4px;
	width: 100%;
	background-color: #cfdaeb;
	border-radius: 2px;
	top: 8px;
	z-index: 1;
}

.range-slider {
	position: absolute;
	width: 100%;
	height: 10px;
	background: none;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
	top: 8px;
	margin: 0;
	z-index: 2;
}

.range-slider::-webkit-slider-thumb {
	pointer-events: auto;
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #0a1628;
	cursor: pointer;
	margin-top: -6px; /* center it */
	position: relative;
	z-index: 3;
	border: none;
}

.range-slider::-moz-range-thumb {
	pointer-events: auto;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #0a1628;
	cursor: pointer;
	border: none;
	position: relative;
	z-index: 3;
}

.price-range-values {
	display: flex;
	justify-content: space-between;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	color: #456793;
}

/* Products Column Header */
.shop-products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.products-count {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.36px;
	color: #0a1628;
}

.products-sorting select {
	border: 1px solid #cfdaeb;
	padding: 10.5px 12px;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	color: #456793;
	outline: none;
	background-color: #fff;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(/wp-content/uploads/2026/06/arrow-down-1.svg);
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 30px;

}

/* Products Grid Layout */
.shop-products-grid-wrapper {
	position: relative;
	min-height: 350px;
}

.shop-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 280px);
	gap: 20px;
	row-gap: 32px;
}

.no-products-found {
	grid-column: span 3;
	text-align: center;
	padding: 80px 0;
	color: #456793;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
}

/* Product Card */
.shop-product-card {
	display: flex;
	flex-direction: column;
	width: 100%;

	margin: 0 auto;
	background-color: transparent;
	border: none;
	transition: transform 0.2s;
	box-sizing: border-box;
	overflow: hidden;
}



.product-image-container {
	height: 308px;
	background-color: #eff1f4;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: none;
	margin-bottom: 12px;
}

.product-image-container a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.product-card-img {
	max-width: 70%;
	max-height: 70%;
	object-fit: contain;
	transition: transform 0.3s;
}


.product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	padding: 2px 4px;
	color: #eff1f4;
	letter-spacing: -0.279px;
	border-radius: 0;
	line-height: normal;
	text-transform: uppercase;
}

.sale-badge {
	background-color: #d4800a;
}

.new-badge {
	background-color: #2b7a3d;
}

.product-info-container {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	background-color: #eff1f4;
	flex-grow: 1;
}

.product-card-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-family: "DM Sans", sans-serif;
}

.product-brand-name {
	color:  #456793;
	font-family: "DM Sans";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.12px;
	text-transform: uppercase;
}

.product-rating-score {
	color: #2b7a3d;
	font-weight: 700;
}

.product-card-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: -0.32px;
	color: #0a1628;
	margin: 0;
}

.product-card-title {
	text-transform: capitalize;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card-title a {
	color: #0a1628;
	text-decoration: none;

}

.product-card-title a:hover {
	color: #456793;
}

.product-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.product-tag {
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	color: #456793;
	background-color: #fff;
	padding: 4px 8px;
	border-radius: 2px;
	letter-spacing: 0;
}

.product-tag:not(:last-child)::after {
	display: none;
}

.product-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}
/* 
.product-price-box {
font-family: "DM Sans", sans-serif;
font-weight: 700;
font-size: 16px;
color: #0a1628;
}

.product-price-box del {
font-size: 14px;
color: #456793;
text-decoration: line-through;
margin-left: 6px;
font-weight: 400;
}

.product-price-box ins {
text-decoration: none;
color: #0a1628;
} */


.product-price-box {
	text-decoration: none;
	color: #0A1628;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.28px;
	text-transform: capitalize;
	display: flex;
	flex-direction: row-reverse;
	gap: 8px;
}

.product-price-box ins {
	text-decoration: none;
}

.product-price-box del {
	color: #456793;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.28px;
	text-decoration-line: line-through;
	text-transform: capitalize;
}




.product-add-to-cart-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #0a1628;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	transition: color 0.2s;
}

.product-add-to-cart-btn:hover {
	color: #456793;
}

/* Pagination */
.shop-pagination {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.shop-custom-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.shop-custom-pagination .pagination-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #cfdaeb;
	border-radius: 4px;
	background-color: #fff;
	color: #0a1628;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.shop-custom-pagination .pagination-arrow:hover:not(.disabled) {
	background-color: #0a1628;
	border-color: #0a1628;
}

.shop-custom-pagination .pagination-arrow:hover:not(.disabled) svg path {
	stroke: #fff;
}

.shop-custom-pagination .pagination-arrow.disabled {
	cursor: default;
	opacity: 0.4;
	pointer-events: none;
}

.shop-custom-pagination .pagination-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #cfdaeb;
	border-radius: 4px;
	background-color: #fff;
	color: #456793;
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.shop-custom-pagination .pagination-number:hover {
	background-color: #eff1f4;
	border-color: #456793;
	color: #0a1628;
}

.shop-custom-pagination .pagination-number.current {
	background-color: #0a1628;
	border-color: #0a1628;
	color: #fff;
	cursor: default;
	pointer-events: none;
}

.shop-custom-pagination .pagination-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #456793;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
}

/* Shimmer Loading Skeleton */
.shimmer-placeholder {
	background: linear-gradient(90deg, #eff1f4 25%, #e2e8f0 50%, #eff1f4 75%);
	background-size: 200% 100%;
	animation: shimmer-animation 1.5s infinite;
}

@keyframes shimmer-animation {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

.shop-products-loader {
	display: none !important;
}

/* Reusable Curated Bundles Layout Overrides */
.home-curated-bundles-section.shop-curated-bundles {
	background-color: #EFF1F4 !important;
	padding: 100px 0;
}

.home-curated-bundles-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 100px;
}

.curated-bundles-header {
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;

}

.curated-bundle-eyebrow {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #456793;
	letter-spacing: -0.12px;
	text-transform: uppercase;
	line-height: normal;
	margin-bottom: 4px;
}

.curated-bundles-title {
	font-family: var(--font-dm-sans), sans-serif;
	font-weight: 700;
	color: #0A1628;
	margin: 0;
	letter-spacing: -0.2px;
	text-transform: capitalize;
	line-height: 130%;
}

.curated-bundles-desc {
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	color: #456793;
	line-height: 1.5;
	margin: 0;
	max-width: 100%;
	margin-top: 11px;
}

.curated-bundles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.curated-bundle-card {
	background-color:#EFF1F4;
	border: 1px solid rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.curated-bundle-img-wrapper {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	background-color: #f5f6f8;
	box-sizing: border-box;
}

.curated-bundle-img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}


.curated-bundle-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8eaed 0%, #dfe2e6 100%);
}

.curated-bundle-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.curated-bundle-type {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #456793;
	letter-spacing: -0.12px;
	text-transform: uppercase;
	line-height: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}

.curated-bundle-name {
	font-family: 'DM Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #0a1628;
	text-transform: capitalize;
	letter-spacing: -0.36px;
	line-height: 1.2;
	margin: 0;
}

.curated-bundle-includes {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 11px;
}

.includes-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #456793;
	letter-spacing: -0.28px;
	line-height: normal;
	display: block;
}

.includes-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.includes-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.includes-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.includes-icon svg {
	display: block;
}

.includes-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #456793;
	letter-spacing: -0.28px;
	line-height: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.curated-bundle-price {
	font-family: 'DM Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #0a1628;
	text-transform: capitalize;
	letter-spacing: -0.36px;
	line-height: 1.2;
	margin-top: 12px;
	margin-bottom: 14px;
}

.curated-bundle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 11px 24px;
	background-color: #0a1628;
	border: 1px solid #0a1628;
	color: #eff1f4;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: -0.28px;
	line-height: normal;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	transition: background-color 0.25s ease, color 0.25s ease;
	margin-top: auto;
}

.curated-bundle-btn:hover {
	background-color: #1a2d4a;
	border-color: #1a2d4a;
	color: #ffffff;
}

.archive .shop-curated-bundles {

	padding: 120px 0;
}

.shop-bundles-save {
	background-color: #f7f6f4 !important;
}

@media screen and (max-width: 1366px) {
	.shop-page-wrapper{
		padding: 80px 0;
	}

	.shop-sidebar-filters {
		width: 260px;
		flex-shrink: 0;
	}
	.shop-products-grid {
		grid-template-columns: repeat(3, auto);
	}

	.shop-products-grid{
		gap: 14px;
		row-gap: 22px;
	}

	.archive .shop-curated-bundles {
		padding: 80px 0;
	}

	.shop-banner-title, .shop-banner-desc{
		max-width: 65%;
	}

	.shop-custom-pagination .pagination-number, .shop-custom-pagination .pagination-arrow{
		    width: 34px;
    height: 34px;   
	 font-size: 12px;
	}

	.shop-custom-pagination svg{
		    width: 14px !important;
    height: 14px !important;
	}


}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
	.shop-page-container {
		padding: 0 40px;
		gap: 30px;
	}

	.shop-products-grid {

		justify-content: center;
	}

	.no-products-found {
		grid-column: span 2;
	}
}

@media screen and (max-width: 1199px){
	.shop-products-grid {
		grid-template-columns: 1fr 1fr;
	}

}

@media screen and (max-width: 991px) {
	.shop-banner-content {
		margin-left: 40px;
	}



	.shop-page-container {
		flex-direction: column;
		align-items: stretch;
	}

	.shop-sidebar-filters {
		width: 100%;
		    position: unset;
			padding-right: 0;
			scrollbar-width: auto;
    scrollbar-color: auto;
	}

	.products-sorting{
		    display: none;
	}

	/* Show mobile toggle */
	.mobile-filter-toggle-btn {
		display: flex;
	}

	.sidebar-filters-wrapper {
		display: none;
		background-color: #fff;
		border: 1px solid #cfdaeb;
		border-top: none;
		padding: 20px;
		border-radius: 0 0 4px 4px;
		margin-top: -20px;
		margin-bottom: 20px;
		box-shadow: 0 5px 15px rgba(10, 22, 40, 0.05);
	}

	.sidebar-filters-wrapper.open {
		display: block;
	}

	.shop-products-grid {
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
	}

	.shop-product-card {
		width: 100%;
	}

	.no-products-found {
		grid-column: span 3;
	}
}

@media screen and (max-width: 768px) {
	.shop-banner-section {
		height: 360px;
	}

	.shop-banner-content {
		margin-left: 20px;
		margin-right: 20px;
	}

	.shop-banner-title {
		font-size: 36px;
	}

	.shop-page-container {
		padding: 0 20px;
	}

	.shop-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.no-products-found {
		grid-column: span 2;
	}
}

@media screen and (max-width: 480px) {
	.shop-products-grid {
		grid-template-columns: 1fr;
	}

	.no-products-found {
		grid-column: span 1;
	}
}

/* Card Variations Form */
.product-card-variations-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 8px;
	background-color: transparent;
	padding: 0;
	border: none;
	margin-top: 8px;
}

.variation-selector-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.variation-selector-row label {
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #0a1628;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.variation-select-input {
	border: 1px solid #cfdaeb;
	border-radius: 4px;
	padding: 4px 6px;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	color: #456793;
	outline: none;
	background-color: #fff;
	cursor: pointer;
	width: 60%;
	flex-shrink: 0;
}

.variation-select-input:focus {
	border-color: #7ba8c4;
}

/* Variable Add to Cart Button Disabled State */
.product-add-to-cart-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

/* Interconnected Faceted Filters */
.filter-item.disabled-facet {
	opacity: 0.35;
	pointer-events: none;
	user-select: none;
}

.filter-item.disabled-facet input {
	pointer-events: none;
}

/* Card Variations Form with swatches/pills */
.product-card-variations-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 8px;
	background-color: transparent;
	padding: 0;
	border: none;
}

.variation-selector-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
}

.variation-selector-label {
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #0a1628;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.variation-options-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	width: 100%;
}

/* Base Variation Option Button */
.variation-option-btn {
	border: none;
	background-color: #fff;
	cursor: pointer;
	font-family: "DM Sans", sans-serif;
	transition: all 0.2s ease;
	outline: none;
	padding: 0;
	margin: 0;
}

/* Text Pill style (e.g. Nicotine Strength) */
.variation-option-btn.text-pill {
	padding: 3px 4px;
	font-size: 12px;
	font-weight: 400;
	color: #456793;
	border-radius: 0;
	text-align: center;
	min-width: 36px;
	letter-spacing: -0.28px;
	line-height: normal;
}

.variation-option-btn.text-pill:hover {
	border-color: #7ba8c4;
	color: #0a1628;
}

.variation-option-btn.text-pill.active {
	background-color: #0a1628;
	border-color: #0a1628;
	color: #fff;
}

/* Color Swatch style */
.variation-option-btn.color-swatch {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #cfdaeb;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
	position: relative;
	/* background-color set via inline style — must not be overridden */
	background-color: var(--swatch-color, #cccccc) !important;
}

/*
 * pdp.css has: .pdp-wrapper .pdp-recommended-grid .variation-option-btn { background-color: #fff !important }
 * That has specificity 0-3-0. We add a 4th class to win: 0-4-0 > 0-3-0.
 */
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.color-swatch,
.pdp-recommended-grid .product-card-variations-form .variation-option-btn.color-swatch {
	background-color: var(--swatch-color, #cccccc) !important;
}

.variation-option-btn.color-swatch:hover {
	border-color: #7ba8c4;
}

.variation-option-btn.color-swatch.active {
	border-color: transparent;
	box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px #456793;
}


@media only screen and (max-width: 1024px){
	.home-faq-section {
		padding: 60px 0px !important;
	}

	.curated-bundles-grid{
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-page-wrapper {
		padding: 60px 0;
	}

	.shop-page-container {
		gap: 18px;
	}


}

@media only screen and (max-width: 767px){
	.home-curated-bundles-section.shop-curated-bundles{
		padding:50px 0px !important;
	}
	.curated-bundles-grid {
		grid-template-columns: repeat(1, 1fr);
	}
.home-faq-section {
		padding: 50px 0px !important;
	}
	.shop-banner-title, .shop-banner-desc {
		max-width: 100%;
	}
	.shop-page-wrapper {
		padding: 40px 0;
	}

	.shop-page-container {
		gap: 10px;
	}

	.filter-group-header h3{
		font-size: 16px;
	}

	.sidebar-filters-wrapper{
		padding: 14px;
	}

	.filter-group-content{
		margin-left: 0;
		margin-right: 0;
	}

	.term-name, .term-count{
		font-size: 15px;
	}

	.filter-header {
		margin-bottom: 14px;
	}

	.filter-list{
		gap: 6px;
	}

	.filter-group{
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	.home-curated-bundles-container, .curated-bundles-grid, .curated-bundle-card {
    min-width: 0;
}
	
	.curated-bundle-body{
		    padding: 14px;
	}
	    .archive .shop-curated-bundles {
        padding: 40px 0;
    }
	

}

@media only screen and (max-width: 575px){
	.product-image-container{
		    height: 260px;
	}
}

@media only screen and (max-width: 374px){

	.shop-products-header{
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.curated-bundle-img-wrapper{
		  height: 210px;
	}
	  

}


.curated-bundle-btn:hover{
	background-color:#15243C !important;
	border-color:#15243C !important;
}