.product-card {
	background: #fff;
	border: 1px solid #c5c4c4;
	border-radius: 10px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	overflow: hidden;
	padding: 8px;
	position: relative;
	transition: box-shadow 0.2s ease-in-out;
	box-sizing: border-box;
	max-width: 100%;
	container-type: inline-size;
}

/* Small container - use block layout */
@container (max-width: 300px) {
	.product-card__details {
		display: block;
	}

	.product-card__hover-button {
		right: 0;
	}

	.product-card .product-card__details .product-card__title {
		margin: 0 0 5px;
	}
}

/* Larger container - use flex layout */
@container (min-width: 301px) {
	.product-card__details {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

	.product-card__hover-button {
		right: 25px;
	}

	.product-card .product-card__details .product-card__title {
		margin: 0;
	}
}

.product-card a {
	text-decoration: none;
}

.product-card:is([disabled]) {
	cursor: not-allowed;
	position: relative;
}

.product-card:is([disabled])::before {
	background-color: rgba(255, 255, 255, 0.5);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.product-card:is([disabled])::after {
	content: "Sold out";
	position: absolute;
	top: 40%;
	left: 0;
	width: 100%;
	height: 100%;
	color: #000000;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	z-index: 2;
}

.product-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-card[disabled] .product-card__hover-button {
	display: none;
}

.product-card__image-container {
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.product-card__image-container:empty,
.product-card__image-container > shopify-media:empty {
	width: 100%;
	aspect-ratio: 1 / 1;
}

.product-card__image-container > shopify-media:empty {
	content: "No Image Available";
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #666;
	font-size: 16px;
	text-align: center;
}

@media (min-width: 1024px) {
	.product-card__image-container {
		aspect-ratio: auto;
	}
}

.product-card__image-container img {
	border-radius: 8px;
	display: block;
	object-fit: contain;
	object-position: center;
	transition: transform 0.3s ease-in-out;
	width: 100%;
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}

.product-card:hover .product-card__image-container img {
	transform: scale(1.1);
	opacity: 0.75;
	max-width: 100%;
	height: auto;
}

.product-card .product-card__details {
	padding: 20px;
	box-sizing: border-box;
}

.product-card .product-card__details .product-card__title {
	color: #405047;
	font-size: 16px;
	font-weight: 500;
}

.product-card__title:hover {
	text-decoration: underline;
}

.product-card__category {
	color: #6b7280;
	font-size: 12px;
	margin: 0 0 4px 0;
}

.product-card__price {
	color: #111827;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	line-height: 1.2;
}

.product-card__hover-button {
	align-items: center;
	background-color: #000;
	border: 2px solid #000;
	bottom: 20px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	display: flex;
	font-size: 24px;
	gap: 0;
	justify-content: center;
	outline: none;
	opacity: 0;
	padding: 8px;
	pointer-events: auto;
	position: absolute;
	transform: translateY(20px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
	border-radius: 50px;
	cursor: pointer;
}

.product-card__hover-button::before {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="white" d="M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
}

.product-card:is([disabled]) .product-card__hover-button {
	opacity: 0;
}

.product-card__hover-button[disabled]:hover {
	cursor: not-allowed;
}

.product-card__hover-button svg {
	filter: invert(95%) sepia(67%) saturate(1%) hue-rotate(326deg)
		brightness(116%) contrast(101%);
	height: 16px;
	width: 16px;
}

.product-card__hover-button span {
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.product-card:hover .product-card__hover-button {
	opacity: 1;
	transform: translateY(0);
}

.product-card__hover-button:hover .product-card__hover-button__button__text {
	margin: 0 8px;
	max-width: 240px;
	transition: max-width 0.5s ease, margin-left 0.2s ease;
}

.product-card__hover-button__button__text {
	max-width: 0;
	overflow: hidden;
	transition: max-width 0.5s ease, margin-left 0.2s ease 0.3s;
	white-space: nowrap;
}
.product-modal {
	border: 0;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	padding: 0;
	outline: none;
	max-width: 100% !important;
}
@media (max-width: 768px) {
	.product-modal {
		width: 100%;
	}
}
.product-modal::backdrop {
	background-color: rgba(156, 163, 175, 0.5);
}
.product-modal__container {
	overflow-x: hidden;
	padding: 0;
}
.product-modal__close-container {
	position: absolute;
	top: 20px;
	right: 32px;
	z-index: 1;
}
#product-modal .product-modal__close {
	border: 0px;
	border-radius: 10px;
	cursor: pointer;
	height: 32px;
	width: 32px;
	padding: 0;
	background-color: #f3f3f3;
	color: #000000;
}
.product-modal__content {
	background-color: #ffffff;
	border-radius: 12px;
	max-width: 992px;
	width: 100%;
}
.product-modal__layout {
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) {
	.product-modal__layout {
		flex-direction: row;
	}
}
.product-modal__media {
	align-items: center;
	background: #f3f3f3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 400px;
	padding: 16px;
}
.product-modal__media img {
	border-radius: 4px;
	height: 100%;
	width: 100%;
	height: auto;
}
.product-modal__details {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 20px 32px;
	flex: 1;
	position: relative;
}
.product-modal__header {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.product-modal__vendor {
	opacity: 0.5;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 12px;
}
.product-modal__title {
	font-size: 36px;
	font-weight: 700;
	margin: 0;
	padding-right: 48px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.product-modal__price-container {
	display: flex;
	gap: 8px;
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 10px;
}
.product-modal__compare-price {
	text-decoration: line-through;
	opacity: 0.5;
}
.product-modal__buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.product-modal__buttons button {
	font-size: 14px;
	font-weight: 800;
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
	border: 2px solid black;
	text-transform: uppercase;
}
.product-modal__add-button {
	background-color: #000000;
	color: #ffffff;
	border-radius: 12px;
	padding: 16px;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
}
.product-modal__add-button:hover {
	background: #ffffff;
	color: #000000;
	border: 2px solid black;
}
.product-modal__add-button:disabled {
	opacity: 0.3;
}
.product-modal__buy-button {
	background-color: #ffffff;
	color: #000000;
	border-radius: 12px;
	padding: 16px;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
}
.product-modal__buy-button:disabled {
	opacity: 0.3;
}
.product-modal__buy-button:hover {
	opacity: 0.3;
}
.product-modal__details-link {
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	color: #0066cc;
	cursor: pointer;
	padding: 8px;
	margin-top: 16px;
	margin-bottom: 0px;
}
.product-modal__details-link:hover {
	text-decoration: underline;
}
.product-modal__description {
	display: flex;
	justify-content: space-between;
}
.product-modal__description-text {
	font-weight: 400;
	color: #717171;
	font-size: 14px;
}
.product-modal__description-text p {
	margin: 0 0 20px;
}

shopify-variant-selector::part(select) {
	font-weight: normal;
	font-size: 14px;
	border-radius: 4px;
	outline: 1px solid #cccccc;
}
/**  Collection style **/

.collection-layout {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

.collection-layout.boxed {
	margin: 0 auto 8px;
	padding: 0 16px;
	max-width: var(--wp--style--global--wide-size);
}

.collection-grid__container {
	max-width: 90vw;
	margin: 0 auto;
}

.collection-grid__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	/* grid-auto-rows: 1fr; */
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
}

/* Classic theme compatibility */
.shopify-collection-content .collection-grid__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
}

/* Ensure product cards are visible in classic themes */
.shopify-collection-content .product-card {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shopify-collection-content .product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product card image container */
.shopify-collection-content .product-card__image-container {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.shopify-collection-content .product-card__image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product card details */
.shopify-collection-content .product-card__details {
	padding: 16px;
}

.shopify-collection-content .product-card__title {
	margin: 0 0 8px 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

.shopify-collection-content .product-card__price {
	margin: 0;
	font-size: 17.6px;
	font-weight: 700;
	color: #000;
}

.shopify-collection-content .product-card__category {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Debug styles for troubleshooting */
.shopify-collection-content {
	padding: 16px;
	margin: 16px 0;
}

.shopify-collection-content:empty::before {
	content: "No collection content loaded - check console for errors";
	display: block;
	color: #ff6b6b;
	font-weight: bold;
	text-align: center;
	padding: 32px;
}

/* Pagination */
.pagination-button-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	max-width: var(--wp--style--global--wide-size);
	margin: 40px auto 0;
	padding: 0;
	list-style: none;
}

.pagination-button-list button {
	background: none;
	border: 1px solid #c5c4c4;
	border-radius: 50%;
	padding: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	outline-width: 0;
}

.pagination-button-list button:focus {
	outline-width: 0;
}

.pagination-button-list button:hover {
	background: #000;
	border: 1px solid #000;
}

.pagination-button-list button svg {
	stroke: #000;
	transition: stroke 0.3s ease;
}

.pagination-button-list button:hover svg polyline {
	stroke: #fff;
}

.pagination-button-list button svg polyline {
	stroke-width: 1px;
}

/* Disabled pagination button styles */
.pagination-button-list button[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	background: #f5f5f5;
	border-color: #ddd;
}

.pagination-button-list button[disabled]:hover {
	background: #f5f5f5;
	border-color: #ddd;
}

.pagination-button-list button[disabled] svg polyline {
	stroke: #999;
}
/** Navigation style **/
.navigation-layout {
	background: #ffffff;
	padding: 16px;
}
.navigation {
	display: flex;
	flex-direction: row;
	margin: 0 8px;
}
.navigation__title {
	width: 100%;
}
.navigation__title-bold {
	font-weight: 800;
}
.navigation__title-light {
	color: #6b7280;
	font-weight: 400;
}

.navigation__view-cart {
	position: relative;
}

.navigation-cart-block {
	align-items: center;
	background-color: inherit;
	display: flex;
	position: relative;
}

.navigation__view-cart-link {
	font-size: 18px;
	color: #000;
	text-decoration: none;
}

.navigation__view-cart-link:hover {
	text-decoration: none;
}

.navigation__view-cart__quantity {
	color: #fff;
	font-size: 10px;
	background-color: #000000;
	position: absolute;
	bottom: -27%;
	right: 2%;
	padding: 3% 7%;
	border-radius: 1000px;
	cursor: pointer;
	display: block;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10px;
	height: 10px;
	overflow: hidden;
	padding: 5px;
}
.navigation__view-cart__quantity:empty {
	display: none;
}
.navigation__view-cart span {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 4px;
	justify-content: center;
	white-space: nowrap;
	cursor: pointer;
}
.navigation__view-cart span::after {
	content: "";
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 45'><path d='M 23 2 C 18.385291 2 14.559689 5.5140788 14.058594 10 L 12 10 C 9.688 10 7.7634375 11.733203 7.5234375 14.033203 L 5.0234375 38.033203 C 4.8914375 39.298203 5.30425 40.566672 6.15625 41.513672 C 7.00825 42.458672 8.228 43 9.5 43 L 38.5 43 C 39.772 43 40.99175 42.458672 41.84375 41.513672 C 42.69575 40.567672 43.106609 39.298203 42.974609 38.033203 L 40.476562 14.033203 C 40.236562 11.733203 38.312 10 36 10 L 33.953125 10 C 33.984125 10.33 34 10.664 34 11 L 34 13 L 36 13 C 36.771 13 37.412187 13.578703 37.492188 14.345703 L 39.992188 38.345703 C 40.036187 38.767703 39.898234 39.189906 39.615234 39.503906 C 39.331234 39.818906 38.924 40 38.5 40 L 9.5 40 C 9.076 40 8.6697188 39.819859 8.3867188 39.505859 C 8.1027187 39.190859 7.9638125 38.767703 8.0078125 38.345703 L 10.507812 14.345703 C 10.587813 13.578703 11.229 13 12 13 L 14 13 L 14 16.5 A 1.50015 1.50015 0 1 0 17 16.5 L 17 11 C 17 7.6687195 19.668719 5 23 5 C 25.989762 5 28.439942 7.1510842 28.912109 10 L 19.132812 10 C 19.048812 10.32 19 10.654 19 11 L 19 13 L 29 13 L 29 16.5 A 1.50015 1.50015 0 1 0 32 16.5 L 32 11 C 32 6.0472805 27.952719 2 23 2 z' /></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 15px;
}

.navigation__view-cart.no-icon span::after {
	content: none;
}

.navigation__view-cart span:hover {
	text-decoration: underline;
}

/** Cart styles **/
shopify-cart::part(dialog) {
	border-radius: 8px;
}
shopify-cart::part(primary-button) {
	background-color: #000;
	border: 0;
	border-radius: 0;
	color: #ffffff;
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: bold;
	border-radius: 10px;
	transition: all 0.3s ease;
}
shopify-cart::part(primary-button):hover {
	opacity: 0.5;
}
shopify-cart::part(line-heading) {
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	padding-right: 32px;
}
shopify-cart::part(line-price) {
	color: #787473;
	font-size: 16px;
	font-weight: 500;
}

shopify-cart::part(line-image) {
	object-fit: contain;
}

shopify-cart::part(line-image) img {
	object-fit: contain;
}

shopify-cart::part(line-options) {
	font-size: 14px;
}
/** Button style **/
.single-product-layout button {
	cursor: pointer;
	border: 0;
}

/** Product style **/
.single-product-layout {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.single-product {
	width: 100%;
	max-width: 1120px;
	min-width: 320px;
	border-radius: 8px;
}
.single-product__container {
	background: inherit;
	display: flex;
	flex-direction: column;
	padding: 32px;
	gap: 32px;
	box-sizing: border-box;
}
.single-product__image-container img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
@media (min-width: 800px) {
	.single-product__container {
		flex-direction: row;
	}
}
@media (min-width: 1024px) {
	.single-product__container {
		padding-left: 40px;
		padding-right: 40px;
	}
}
.single-product__media {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	flex: 1;
}

.single-product__media img {
	max-width: 100%;
	height: auto;
}

.single-product__image-grid {
	display: flex;
	flex-direction: row;
	width: 420px;
	transition: transform 0.3s ease;
}
.single-product__image-grid img {
	border-radius: 8px;
	max-width: 100%;
	height: auto;
}
.single-product__images {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	width: 420px;
	margin-top: 8px;
}
.single-product__image-small {
	cursor: pointer;
	transition: opacity 0.2s ease;
}
.single-product__image-small img {
	border: 1px solid transparent;
	width: 130px;
	height: 130px;
	border-radius: 4px;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}
.single-product__image-small img:hover {
	opacity: 1;
}
.single-product__image-small.selected img {
	opacity: 1;
	border: 1px solid #ccc;
}
@media (max-width: 768px) {
	.single-product__image-small img {
		width: 100px;
		height: 100px;
	}
}
.single-product__details {
	background: #fff;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px;
	flex: 1;
}
.single-product__info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.single-product__description {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	border-color: rgb(229 231 235);
	opacity: 1;
	border-top-width: 1px;
}
.single-product__description-text {
	font-weight: 400;
	letter-spacing: 0.03em;
	color: #717171;
	font-size: 14px;
}
.single-product__title {
	color: 787473;
	font-size: 40px;
	font-weight: 500;
	line-height: 40px;
	margin: 0;
}
.single-product__price {
	color: #787473;
	display: flex;
	gap: 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
}
.single-product__compare-price {
	text-decoration: line-through;
	opacity: 0.5;
}
.single-product__buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.single-product__add-button {
	background-color: #000;
	color: #ffffff;
	padding: 16px;
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.single-product__add-button:hover {
	opacity: 0.5;
}
.single-product__add-button:disabled {
	opacity: 0.3;
}
.single-product__add-button[disabled]:hover {
	cursor: not-allowed;
	opacity: 0.3;
	background-color: #627059;
}
.single-product__buy-button {
	background-color: #fff;
	border: 2px solid #000 !important;
	color: #000;
	padding: 16px;
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	border-radius: 10px;
	transition: all 0.3s ease;
}
.single-product__buy-button:disabled {
	opacity: 0.3;
}
.single-product__buy-button:hover {
	opacity: 0.5;
}
.single-product__buy-button[disabled]:hover {
	opacity: 0.3;
	cursor: not-allowed;
	background-color: #eff1ee;
}
/* Add to Cart Counter style **/
.single-product__incrementor {
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 0.25rem;
	margin-right: 0.5rem;
	width: fit-content;
}
.single-product__incrementor button {
	color: #616161;
	background: inherit;
	cursor: pointer;
	font-size: 1rem;
	width: 40px;
	height: 100%;
}
.single-product__incrementor button:hover {
	background: #eff1ee;
}
.single-product__add-to-cart {
	display: flex;
	flex-direction: row;
}
.single-product__count {
	font-size: 0.875rem;
	padding: 0 0.25rem;
}
/** Accordion style **/
.single-product__accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.single-product__accordion__item {
	border: 1px solid #ccc;
	border-radius: 0.5rem;
	overflow: hidden;
}
.single-product__accordion__header {
	padding: 1rem;
	cursor: pointer;
	position: relative;
	font-size: 19px;
}
.single-product__accordion__header::after {
	content: "";
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M8 10L12 14L16 10" stroke="grey" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	transition: 0.4s;
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 18px;
	z-index: 1;
}
.single-product__accordion__header.active {
	border-bottom: 1px solid #ccc;
}
.single-product__accordion__header.active::after {
	transform: rotateX(180deg);
}
.single-product__accordion__header:hover {
	opacity: 0.5;
}
.single-product__accordion__item .single-product__accordion__content {
	padding: 0 25px;
	max-height: 0;
	transition: 0.5s;
	overflow: hidden;
}
.single-product__accordion__item .single-product__accordion__content p {
	padding: 0.5rem 0;
}
/* Pairs well with styles */
.single-product__pairs-well-with__layout {
	position: relative;
	width: 100%;
	margin: auto;
	gap: 0;
}
.single-product__pairs-well-with {
	cursor: pointer;
}
.single-product__pairs-well-with__card {
	padding: 1.5rem 0;
	transition: transform 0.3s ease;
	border-bottom: 1px solid #ccc;
}
.single-product__pairs-well-with__card.last {
	border: 0;
}
.single-product__pairs-well-with__card .single-product__container {
	align-items: center;
	background: inherit;
	padding: 0;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.single-product__pairs-well-with__card .single-product__info {
	gap: 0;
	padding: 0;
	width: 100%;
}
.single-product__pairs-well-with__card .single-product__title {
	color: #132f1c;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1rem;
	text-align: left;
}
.single-product__pairs-well-with__card .single-product__price {
	font-size: 0.875rem;
	font-weight: 400;
	color: #111827;
	text-align: left;
}
.single-product__pairs-well-with__card .single-product__media {
	align-items: normal;
}
.single-product__pairs-well-with__card .single-product__media img {
	border-radius: 0.5rem;
	max-width: 100%;
	height: auto;
}
.single-product__pairs-well-with__card .single-product__add-button {
	background-color: #eff1ee;
	color: #627059;
	font-size: 0.875rem;
	padding: 0.5rem 0.875rem;
	width: 100%;
}
.single-product__pairs-well-with__card .single-product__add-button:hover {
	color: #819177;
	background: #f4f6f4;
}
/** You May Also Like Collection styles **/
.product-recommendations {
	background: #fff;
	width: 100%;
}
.collection-container {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	box-sizing: border-box;
	max-width: 70rem;
	min-width: 320px;
	margin: 0 auto;
}
.collection-title {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: center;
}
.collection-title h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25rem;
	width: 100%;
}
.collection__slider {
	position: relative;
	overflow: hidden;
}
.collection__slider-controls {
	display: flex;
	gap: 0.5rem;
}
.collection__slider-button {
	background: inherit;
	border: 1px solid #ccc;
	color: #7d7d7d;
	padding: 0.5rem 0.875rem;
	cursor: pointer;
	border-radius: 50px;
	transition: opacity 0.3s ease;
	justify-content: center;
}
.collection__slider-button:hover {
	opacity: 0.8;
	border: 1px solid #ccc;
	background: #f3f3f3;
	color: #627059;
}
.collection__slider-button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.collection__slider .collection-grid {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 1.5rem 0;
	transition: transform 0.3s ease;
	gap: 0.875rem;
}
.collection-grid__product {
	background: inherit;
	border: 0;
	border-radius: 0;
	flex: 0 0 calc(25% - 0.67rem);
	max-width: calc(25% - 0.67rem);
	position: relative;
}
@media (max-width: 800px) {
	.collection-grid__product {
		flex: 0 0 calc(33.33% - 0.67rem);
		max-width: calc(33.33% - 0.67rem);
	}
}
.collection-grid__product:hover {
	border: 0;
	background: inherit;
}
.collection-grid__product .single-product__info {
	gap: 0;
	margin-top: 1rem;
}
.collection-grid__product .single-product__info h3,
.collection-grid__product .single-product__info .single-product__price {
	font-size: 0.875rem;
	font-weight: 400;
	text-align: left;
	margin: 0;
}
.collection-grid__product .single-product__image-container {
	aspect-ratio: 1;
	border-radius: 0.5rem;
	overflow: hidden;
	width: 100%;
}
.collection-grid__product .single-product__image-container img {
	transition: transform 0.3s ease-in-out;
	max-width: 100%;
	height: auto;
}
.collection-grid__product .single-product__image-container img:hover {
	transform: scale(1.1);
	opacity: 0.75;
}
.collection-grid__product
	.single-product__image-container
	.single-product__hover-button {
	position: absolute;
	display: flex;
	bottom: 25%;
	right: -5%;
	transform: translate(-50%, -50%) translateY(20px);
	opacity: 0;
	background-color: #000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
	border: none;
	pointer-events: auto;
	width: 47%;
	justify-content: center;
	padding: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 800;
	text-transform: uppercase;
}

.collection-grid__product .single-product__hover-button a {
	text-decoration: none;
}
.collection-grid__product .single-product__hover-button:hover {
	background-color: #3e3937;
	transform: translate(-50%, -50%) translateY(0) scale(1.05);
}
.collection-grid__product .single-product__hover-button span {
	color: #fff;
	font-size: 0.875rem;
}
.collection-grid__product
	.single-product__image-container:hover
	.single-product__hover-button {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
}
/** Variant selector styles **/

shopify-variant-selector::part(color-swatch-selected),
shopify-variant-selector::part(color-swatch) {
	height: 28px;
	width: 28px;
	border-radius: 4px;
}
shopify-variant-selector::part(color-swatch):hover {
	border: 1px solid #ccc;
}
shopify-variant-selector::part(color-swatch):after {
	border-radius: 4px;
	border: 1px solid #3e3937;
}
shopify-variant-selector::part(radio) {
	background: none;
	border: 1px solid #ccc;
	color: #616161;
	border-radius: 4px;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 400;
}
shopify-variant-selector::part(radio):hover {
	background: #eff1ee;
	color: #627059;
}
shopify-variant-selector::part(radio-selected) {
	border: 1px solid #3e3937;
	background: #3e3937;
	color: #fff;
}
shopify-variant-selector::part(radio-selected):hover {
	background: #3e3937;
	color: #fff;
}
shopify-variant-selector::part(form) {
	display: flex;
	flex-direction: column-reverse;
	border-top: 0;
	border-bottom: 0;
	padding: 0;
}
shopify-variant-selector.has-variants::part(form) {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 16px 0 32px 0;
}
shopify-variant-selector::part(radio-disabled) {
	position: relative;
	opacity: 0.4;
	overflow: hidden;
}
/* Shopify Toolbar Styles */

/* Base toolbar button styling */
.shopify-toolbar-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.shopify-toolbar-button .ab-icon {
    width: 20px;
    height: 17px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

/* Specific toolbar buttons */
#wp-admin-bar-product_button,
#wp-admin-bar-collections_button,
#wp-admin-bar-visit_shopify_button {
    background: none;
}

#wp-admin-bar-product_button .ab-item,
#wp-admin-bar-collections_button .ab-item,
#wp-admin-bar-visit_shopify_button .ab-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

/* Hover states */
#wp-admin-bar-product_button:hover .ab-item,
#wp-admin-bar-collections_button:hover .ab-item,
#wp-admin-bar-visit_shopify_button:hover .ab-item {
    background-color: rgba(240, 245, 250, 0.1);
    color: #00d4aa;
}