/* Shop archive — desktop */
.shop-archive-main {
	background: #ffffff;
}

.shop-archive-container {
	padding-top: 20px;
	padding-bottom: 100px;
}

.shop-archive-title {
	margin: 0;
	margin-bottom: 15px;
	font-size: 36px;
	font-weight: bold;
	line-height: 50px;
	color: #000000;
	text-align: center;
}

.home-shop-archive-description {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	color: #000000;
	text-align: center;
}

.woocommerce-result-count,
.woocommerce-ordering {
	display: none;
}

.shop-archive-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	margin: 0;
	padding: 0;
	margin-top: 55px;
}

.shop-product-card {
	margin: 0;
	padding: 0;
}

.shop-product-card-inner {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 15px;
	padding: 40px;
	border: 1px solid #e1e1e1;
	border-radius: 20px;
	background: #ffffff;
	height: 100%;
}

.shop-product-card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 1 50%;
	min-width: 0;
}

.shop-product-card-badge {
	display: inline-block;
	margin: 0;
	padding: 1px 10px;
	border-radius: 50px;
	background-color: #eaf5e7;
	color: #519740;
	font-family: var(--global-font-family-1);
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
}

.shop-product-card-title {
	margin: 20px 0 0;
	padding: 0;
	font-family: var(--global-font-family-1);
	font-size: 43px;
	font-weight: 700;
	line-height: 50px;
	color: #000000;
}

.shop-product-card-title a {
	color: inherit;
	text-decoration: none;
}

.shop-product-card-benefits {
	margin: 30px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shop-product-card-benefits li {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	color: #000000;
	font-family: var(--global-font-family-1);
	font-size: 16px;
	line-height: 30px;
}

.shop-product-card-benefits li svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.shop-product-card-price-holder {
	margin-top: auto;
	width: 100%;
}

.shop-product-card-price-holder .price {
	margin: 0;
	color: #000000 !important;
	font-family: var(--global-font-family-1);
	font-size: 43px !important;
	font-weight: 700;
	line-height: 50px;
}

.shop-product-card-price-holder .woocommerce-Price-currencySymbol {
	font-size: 28px;
}

.shop-product-card-price-holder .price del {
	opacity: 0.6;
	font-size: 24px;
	font-weight: 400;
}

.shop-product-card-price-holder .price ins {
	text-decoration: none;
}

.shop-product-card-price-data {
	margin-top: 8px;
	color: #000000;
	font-family: var(--global-font-family-1);
	font-size: 16px;
	line-height: 1.3;
}

.shop-product-card-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	padding: 12px 35px;
	border: 1px solid #e1e1e1;
	border-radius: 15px;
	background: #ffffff;
	color: #000000;
	font-family: var(--global-font-family-1);
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.shop-product-card-content a:visited {
	color: #000000;
}

.shop-product-card-button:hover,
.shop-product-card-button:focus {
	border-color: #519740;
	color: #519740;
}

.shop-product-card-button svg {
	flex-shrink: 0;
}

.shop-product-card-image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 50%;
	min-width: 0;
	min-height: 320px;
}

.shop-product-card-image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.shop-product-card-img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.shop-archive-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.shop-product-card-inner {
		gap: 30px;
		padding: 30px;
	}
}

@media (max-width: 767px) {
	.shop-archive-container {
		padding-top: 30px;
		padding-bottom: 60px;
	}

	.shop-archive-title {
		margin-bottom: 30px;
		font-size: 32px;
		line-height: 1.2;
	}

	.shop-archive-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.shop-product-card-inner {
		flex-direction: column;
		gap: 24px;
		padding: 24px;
	}

	.shop-product-card-image {
		order: -1;
		min-height: 270px;
        flex: unset;
        max-height: 270px;
	}

	.shop-product-card-title {
		font-size: 32px;
		line-height: 1.2;
	}

	.shop-product-card-price-holder .price {
		font-size: 32px;
		line-height: 1.2;
	}

	.shop-product-card-price-holder .woocommerce-Price-currencySymbol {
		font-size: 22px;
	}

	.shop-product-card-button {
		width: 100%;
		justify-content: center;
	}
}

/* Breadcrumbs */
.pdp-breadcrumb-holder {
	margin-bottom: 10px;
}

.pdp-breadcrumbs {
	margin: 0;
}

.pdp-breadcrumbs-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.pdp-breadcrumbs-inner a {
	display: inline-flex;
	align-items: center;
	font-family: var(--global-font-family-1);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.2s ease;
}

.pdp-breadcrumbs-inner a:hover,
.pdp-breadcrumbs-inner a:focus {
	color: #519740;
}

.pdp-breadcrumbs-inner a img {
	display: block;
}

.pdp-breadcrumbs-inner .separator {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.pdp-breadcrumb-sep {
	display: block;
}

.pdp-breadcrumbs-inner .last {
	font-family: var(--global-font-family-1);
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	color: #111827;
}
