.woocommerce ul.products, .woocommerce-page ul.products{
    margin-bottom: 60px;
}

.woocommerce .woocommerce-breadcrumb {
    margin: 0 auto 36px;
    padding-top: 24px;
    color: #a99abd;
    font-size: 13px;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #b9a9cf;
    text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: #e0b64a;
}

/* -------------------------------------------------------
   Elementor Custom Product Loop Add to Cart Button
   Class used on Elementor widget: alchemists-add-to-cart-btn
------------------------------------------------------- */

/* Hide WooCommerce View Cart link after AJAX add to cart */
.alchemists-add-to-cart-btn .added_to_cart,
.alchemists-add-to-cart-btn a.added_to_cart,
.alchemists-add-to-cart-btn .wc-forward {
	display: none !important;
}

/* Keep Elementor add to cart button circular */
.alchemists-add-to-cart-btn .add_to_cart_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	padding: 0 !important;
	border: 1.5px solid #dfad3e;
	border-radius: 999px;
	background: transparent;
	color: #dfad3e;
	font-size: 0;
	line-height: 1;
	text-decoration: none;
	box-shadow: none;
	overflow: hidden;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		border-color 0.2s ease;
}

.alchemists-add-to-cart-btn .add_to_cart_button:hover {
	background: #dfad3e;
	color: #120d20;
	border-color: #dfad3e;
	transform: scale(1.05);
}

/* Elementor icon wrapper */
.alchemists-add-to-cart-btn .add_to_cart_button .elementor-button-content-wrapper,
.alchemists-add-to-cart-btn .add_to_cart_button .elementor-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* Default plus icon */
.alchemists-add-to-cart-btn .add_to_cart_button .elementor-button-icon svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* Loading state */
.alchemists-add-to-cart-btn .add_to_cart_button.loading {
	opacity: 0.75;
	pointer-events: none;
}

.alchemists-add-to-cart-btn .add_to_cart_button.loading .elementor-button-icon svg {
	display: none;
}

.alchemists-add-to-cart-btn .add_to_cart_button.loading .elementor-button-icon::before {
	content: "…";
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

/* Added successfully state */
.alchemists-add-to-cart-btn .add_to_cart_button.added {
	background: #dfad3e;
	color: #120d20;
	border-color: #dfad3e;
}

/* Hide plus SVG after added */
.alchemists-add-to-cart-btn .add_to_cart_button.added .elementor-button-icon svg {
	display: none;
}

/* Show check mark after added */
.alchemists-add-to-cart-btn .add_to_cart_button.added .elementor-button-icon::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgb(39, 33, 17);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

/* Remove WooCommerce default added/loading pseudo icon if any theme adds it */
.alchemists-add-to-cart-btn .add_to_cart_button::after {
	display: none !important;
	content: none !important;
}