/* =========================================================
Category Products Section
========================================================= */
.vbx-category-products {
	background: #f4f1e8;
}

.vbx-category-products__wrap {
	background: var(--vbxwoo-light);
	padding: 1rem;
	border-radius: 0.75rem;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.vbx-category-products__header {
	padding: 0 0 10px;
	gap: 0.75rem;
}

.vbx-category-product-card__price del {
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}

.vbx-category-product-card__price ins {
    text-decoration: none;
}

.vbx-category-products__title {
	color: var(--vbxwoo-primary);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.vbx-category-products__view-all {
	background: var(--vbxwoo-primary);
	color: var(--vbxwoo-light);
	border: 0;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 14px;
}

.vbx-category-products__view-all:hover,
.vbx-category-products__view-all:focus-visible {
	background: var(--vbxwoo-primary);
	color: var(--vbxwoo-light);
}

.vbx-category-products__grid {
	margin-inline: -0.4rem;
}

.vbx-category-products__grid>.col {
	padding-inline: 0.4rem;
	padding-bottom: 0.8rem;
}

.vbx-category-product-card {
	background: var(--vbxwoo-light);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.vbx-category-product-card__thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 238px;
    padding: 1.1rem 0.9rem 2rem;
    border: 3px solid var(--vbxwoo-primary);
    border-radius: 0.625rem;
    background: #fff6f6;
    text-decoration: none;
    overflow: hidden;
}

.vbx-category-product-card__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(255, 0, 0, 0.14) 0 8px, transparent 8px 20px);
	background-size: 26px 26px;
	opacity: 0.35;
}

.vbx-category-product-card__img {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: 100%;
	max-height: 185px;
	height: auto;
	object-fit: contain;
}

.vbx-category-product-card__discount {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--vbxwoo-primary);
	color: var(--vbxwoo-light);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.vbx-category-product-card__ribbon {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.6rem;
	background: var(--vbxwoo-primary);
	color: var(--vbxwoo-light);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
}

.vbx-category-product-card__gift {
	font-size: 0.92rem;
}

.vbx-category-product-card__ribbon-end {
	margin-left: auto;
	padding: 0.12rem 0.35rem;
	border-radius: 0.2rem;
	background: var(--vbxwoo-light);
	color: var(--vbxwoo-primary);
	font-size: 0.64rem;
	font-weight: 700;
}

.vbx-category-product-card__body {
	padding: 9px 10px 18px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.vbx-category-product-card__title {
	min-height: 48px;
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
}

.vbx-category-product-card__title a {
	color: var(--vbxwoo-text);
	text-decoration: none;
}

.vbx-category-product-card__title a:hover,
.vbx-category-product-card__title a:focus-visible {
	color: var(--vbxwoo-primary);
}

.vbx-category-product-card__price {
	color: var(--vbxwoo-primary);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.vbx-category-product-card__price .amount,
.vbx-category-product-card__price bdi {
	color: inherit;
	font-weight: inherit;
}

@media (max-width: 575.98px) {
	.vbx-category-products__header {
		gap: 10px;
		flex-wrap: wrap;
	}

	.vbx-category-products__title {
		font-size: 18px;
	}

	.vbx-category-products__grid {
		margin-inline: -0.25rem;
	}

	.vbx-category-products__grid>.col {
		padding-inline: 0.25rem;
		padding-bottom: 0.6rem;
	}

	.vbx-category-product-card__thumb {
		min-height: 185px;
		padding: 24px 12px 34px;
	}

	.vbx-category-product-card__img {
		max-height: 135px;
	}

	.vbx-category-product-card__title {
		font-size: 14px;
		min-height: 44px;
	}

	.vbx-category-product-card__price {
		font-size: 14px;
	}
}

/* =========================================================
End Category Products Section
========================================================= */

