.adl-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.adl-product-card {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e3e9e9;
	border-radius: .85rem;
	background: #fff;
	box-shadow: 0 .15rem .5rem rgba(24, 61, 64, .04);
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.adl-product-card:hover {
	border-color: #cbdada;
	box-shadow: 0 .45rem 1.15rem rgba(24, 61, 64, .1);
	transform: translateY(-2px);
}

.adl-product-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fff;
}

.adl-product-card__image-link {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: .45rem;
}

.adl-product-card__image-link:focus-visible,
.adl-product-card__title a:focus-visible,
.adl-product-card__cta:focus-visible {
	outline: 3px solid rgba(31, 190, 187, .32);
	outline-offset: -3px;
}

.adl-product-card__image-link img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	object-fit: contain;
}

.adl-product-card__badge {
	position: absolute;
	top: .6rem;
	left: .6rem;
	z-index: 2;
	min-width: 2.8rem;
	padding: .32rem .48rem;
	border-radius: .4rem;
	background: #d92d2d;
	color: #fff;
	font-size: .78rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.adl-product-card__badge--new {
	background: #187f7e;
}

.adl-product-card__badge--low-stock {
	background: #9a6517;
}

.adl-product-card__body {
	display: flex;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
	padding: .8rem;
	text-align: center;
}

.adl-product-card__title {
	display: -webkit-box;
	min-height: 0;
	margin: 0 0 .38rem;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #315f62;
	font-size: .94rem;
	font-weight: 650;
	line-height: 1.28;
}

.adl-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.adl-product-card__title a:hover {
	color: #137f7e;
}

.adl-product-card__attributes-slot {
	min-height: 0;
	margin: 0 0 .32rem;
}

.adl-product-card__attributes {
	display: grid;
	min-height: 0;
	gap: .22rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.adl-product-card__attributes li {
	display: flex;
	min-width: 0;
	align-items: baseline;
	justify-content: center;
	gap: .3rem;
	color: #697b7e;
	font-size: .75rem;
	line-height: 1.25;
}

.adl-product-card__attributes li span {
	flex: 0 0 auto;
}

.adl-product-card__attributes li strong {
	min-width: 0;
	overflow: hidden;
	color: #344c4f;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.adl-product-card__stock {
	display: flex;
	min-height: 1.25rem;
	align-items: center;
	justify-content: center;
	gap: .38rem;
	margin: 0 0 .42rem;
	color: #3e6c54;
	font-size: .79rem;
	font-weight: 600;
}

.adl-product-card__stock > span {
	width: .45rem;
	height: .45rem;
	flex: 0 0 .45rem;
	border-radius: 50%;
	background: #2d9c65;
}

.adl-product-card__stock--low {
	color: #8c5b15;
}

.adl-product-card__stock--low > span {
	background: #d18a25;
}

.adl-product-card__stock--unavailable {
	color: #8b4b4b;
}

.adl-product-card__stock--unavailable > span {
	background: #c65d5d;
}

.adl-product-card__prices {
	display: flex;
	min-height: 2rem;
	align-items: baseline;
	justify-content: center;
	gap: .5rem;
	margin-top: 0;
	white-space: nowrap;
}

.adl-product-card__price {
	color: #172f32;
	font-size: 1rem;
	font-weight: 750;
}

.adl-product-card__price--sale {
	color: #c52b2b;
}

.adl-product-card__old-price {
	color: #849194;
	font-size: .84rem;
	text-decoration: line-through;
}

.adl-product-card__actions {
	display: grid;
	grid-template-columns: 7.125rem 2.375rem;
	align-items: center;
	justify-content: center;
	gap: .625rem;
	margin-top: .42rem;
	padding: 0;
}

.adl-product-card__quantity {
	display: grid !important;
	grid-template-columns: repeat(3, 2.375rem);
	width: 7.125rem;
	min-width: 0;
	justify-self: start;
}

.adl-product-card__quantity .btn,
.adl-product-card__quantity .quantity-field {
	width: 100%;
	height: 38px !important;
	min-width: 0 !important;
	min-height: 38px !important;
	padding: 0;
	border-color: #dce4e4;
	border-radius: 0;
	background: #fff;
	color: #31494c;
	font-size: .78rem;
	text-align: center;
}

.adl-product-card__quantity .button-minus {
	border-radius: .45rem 0 0 .45rem;
}

.adl-product-card__quantity .button-plus {
	border-radius: 0 .45rem .45rem 0;
}

.adl-product-card__quantity .quantity-field {
	width: auto !important;
}

.adl-product-card__cta {
	display: inline-flex;
	min-width: 0;
	min-height: 38px !important;
	align-items: center;
	justify-content: center;
	padding: .35rem .7rem;
	border-radius: .5rem;
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.15;
}

.adl-product-card__actions .ajax_add_to_cart_button.adl-product-card__cta {
	width: 38px;
	min-width: 38px;
	height: 38px;
	padding: 0;
	font-size: 1rem;
}

.adl-product-card__cta:focus-visible {
	outline: 3px solid rgba(19, 192, 189, .35);
	outline-offset: 2px;
}

.adl-product-card__cta[disabled],
.adl-product-card__cta[aria-busy="true"] {
	pointer-events: none;
}

.adl-product-card__cta-icon {
	position: relative;
	display: inline-flex;
	width: 1.1rem;
	height: 1.1rem;
	flex: 0 0 1.1rem;
	align-items: center;
	justify-content: center;
}

.adl-product-card__cta-icon .icon-plus {
	position: absolute;
	top: -.28rem;
	right: -.36rem;
	border-radius: 50%;
	background: currentColor;
	font-size: .55rem;
}

.adl-product-card__cta-icon .icon-plus::before {
	color: #16bebb;
}

.adl-product-card__cta.is-loading {
	opacity: .8;
}

.adl-product-card__cta.is-success {
	border-color: #b9d8c5;
	background: #edf9f3;
	color: #256848;
}

.adl-product-card__cta--unavailable {
	border: 1px solid #e1e6e6;
	background: #f3f5f5;
	color: #778487;
	cursor: default;
}

.adl-product-card__feedback {
	min-height: 0;
	margin: 0;
	color: #287c53;
	font-size: .72rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
}

.adl-product-card__feedback:not(:empty) {
	min-height: 1.15rem;
	margin-top: .28rem;
}

.adl-product-card__feedback.is-error {
	color: #a04444;
}

.adl-product-card__stock-warning {
	min-height: 0;
	margin: 0;
	color: #b42323;
	font-size: .72rem;
	font-weight: 650;
	line-height: 1.25;
	text-align: center;
}

.adl-product-card__stock-warning.is-visible {
	min-height: 1.15rem;
	margin-top: .3rem;
}

.adl-product-card__cart-state {
	display: flex;
	min-height: 1.8rem;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	margin-top: .35rem;
	color: #41715e;
	font-size: .72rem;
	font-weight: 600;
	line-height: 1.2;
}

.adl-product-card__cart-state[hidden] {
	display: none !important;
}

.adl-product-card__cart-state-label {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
}

.adl-product-card__cart-state-label .feather-icon {
	color: #3b8c68;
	font-size: .9rem;
}

.adl-product-card__cart-remove {
	display: inline-flex;
	width: 28px;
	height: 28px;
	min-width: 28px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid #eadbd8;
	border-radius: .42rem;
	background: #fffafa;
	color: #955149;
	cursor: pointer;
	font-size: .82rem;
	line-height: 1;
}

.adl-product-card__cart-remove:hover,
.adl-product-card__cart-remove:focus-visible {
	border-color: #d8bcb7;
	background: #fff3f1;
	color: #7d3933;
}

.adl-product-card__cart-remove:focus-visible {
	outline: 3px solid rgba(149, 81, 73, .18);
	outline-offset: 2px;
}

.adl-product-card__cart-state.is-updating {
	opacity: .62;
}

.adl-product-card__cart-remove[disabled] {
	cursor: wait;
}

.adl-product-card__cta--wide {
	grid-column: 1 / -1;
}

@media (max-width: 767.98px) {
	.adl-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: .7rem;
	}

	.adl-product-card__body {
		min-height: 0;
		padding: .58rem;
	}

	.adl-product-card__title {
		min-height: 0;
		margin-bottom: .3rem;
		font-size: .875rem;
		line-height: 1.22;
	}

	.adl-product-card__attributes-slot,
	.adl-product-card__attributes {
		min-height: 0;
	}

	.adl-product-card__attributes-slot {
		margin-bottom: .26rem;
	}

	.adl-product-card__attributes li {
		align-items: flex-start;
		font-size: .7rem;
		line-height: 1.18;
	}

	.adl-product-card__attributes li strong {
		display: -webkit-box;
		max-height: 2.5em;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.adl-product-card__stock {
		margin-bottom: .34rem;
		font-size: .76rem;
		line-height: 1.2;
	}

	.adl-product-card__prices {
		min-height: 1.65rem;
	}

	.adl-product-card__actions {
		grid-template-columns: 7.125rem 2.5rem;
		justify-content: center;
		width: calc(100% + 1.16rem);
		gap: .625rem;
		margin-top: .3rem;
		margin-left: -.58rem;
		padding: 0;
	}

	.adl-product-card__quantity {
		grid-template-columns: repeat(3, 2.375rem);
		width: 7.125rem;
		justify-self: start;
	}

	.adl-product-card__actions .ajax_add_to_cart_button.adl-product-card__cta {
		grid-column: auto;
		width: 40px;
		min-width: 40px;
		height: 40px;
		min-height: 40px !important;
		justify-self: center;
	}

	.adl-product-card__cta--wide {
		grid-column: 1 / -1;
		width: 100%;
		height: auto;
		min-height: 44px !important;
		justify-self: stretch;
	}

	.adl-product-card__quantity .btn,
	.adl-product-card__quantity .quantity-field {
		height: 38px !important;
		min-height: 38px !important;
	}

	.adl-product-card__cart-remove {
		width: 32px;
		height: 32px;
		min-width: 32px;
	}
}

@media (max-width: 374.98px) {
	.adl-product-grid {
		gap: .5rem;
	}

	.adl-product-card__body {
		padding: .55rem;
	}

	.adl-product-card__actions {
		grid-template-columns: 6.375rem 2.375rem;
		width: calc(100% + 1.1rem);
		gap: .375rem;
		margin-left: -.55rem;
	}

	.adl-product-card__quantity {
		grid-template-columns: repeat(3, 2.125rem);
		width: 6.375rem;
	}

	.adl-product-card__quantity .btn,
	.adl-product-card__quantity .quantity-field {
		height: 34px !important;
		min-height: 34px !important;
	}

	.adl-product-card__actions .ajax_add_to_cart_button.adl-product-card__cta {
		width: 38px;
		min-width: 38px;
		height: 38px;
		min-height: 38px !important;
	}

	.adl-product-card__badge {
		top: .4rem;
		left: .4rem;
	}
}
