body {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
}

.products {
	padding: 3rem 0;
}

.products .item {
	background: #FFDB79;
	box-shadow: 0 0 10px #6c757d;
	padding: 3px;
	border-radius: 12px;
	transition: .2s;
}

.products .item.main-promo {
	background: linear-gradient(90deg, #fccb44, #FFDB79, #fccb44);
}

.products .item:hover {
	scale: 1.05;
}

.products .item img {
	width: 100%;
	max-width: fit-content;
	max-height: unset;
}

.products .item>div {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
}

.products .item.main-promo>div {
	background-color: #F9FEFD;
}

.products .header {
	background-color: #FFDB79;
	border-radius: 10px 10px 0 0;
	margin-bottom: -1px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1;
}

.products .main-promo .header, .products .main-promo .cta-vshape {
	background: linear-gradient(90deg, #fccb44, #FFDB79, #fccb44);
}

.products .header .supplies {
	font-size: .7em;
	font-weight: normal;
}

.products .cta-vshape {
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	max-width: 100%;
	margin: 0 auto -50px;
	background-color: #FFDB79;
	height: 30px;
	width: 100%;
}

.products .item .bottle-img {
	width: auto;
	max-height: 210px;
}

.products .price {
	width: fit-content;
	font-weight: 700;
}

.products .sell {
	font-size: 4.4em;
}

.products .per-bottle {
	opacity: .7;
}

.products .guarantee>div {
	border-top: 1px solid #CCCCCC;
}

.products .guarantee>div:first-child {
	color: #AC2716;
}

.products .guarantee i {
	color: black;
}

.products .guarantee>div:last-of-type {
	border-bottom: 1px solid #CCCCCC;
}

.buy-button {
	background: linear-gradient(to top, #a78a19, #debd15);
	width: 100%;
	max-width: 300px;
	border-radius: 12px;
	padding: 2px !important;
	margin: 0 auto;
	border: none;
}

.buy-button>div {
	position: relative;
	background: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
	color: black;
	padding: .75rem .5rem;
	border-radius: 10px;
}

.buy-button:hover>div {
	background: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}

.products .totals {
	font-weight: 700;
}

.products .totals span {
	color: red;
}

.products .totals s {
	color: #888888;
	text-decoration-color: red;
	text-decoration-thickness: 2px;
}

@media (min-width: 500px) {
	.main-promo .buy-button {
		scale: 1.1;
	}
}

@media (max-width: 767px) {
	.fs-6 {
		font-size: .8em !important;
	}

	.products .main-promo .header {
		background: none;
	}

	.products .header .supplies {
		font-weight: bold;
	}

	.products .item {
		padding: 3px;
		border-radius: 1.2rem;
	}

	.products .item>div {
		background-color: white;
		border-radius: 1rem;
	}

	.products .item .bottle-img {
		width: 100%;
	}

	.products .header {
		background: none;
		font-size: .95em;
		font-weight: 700;
	}

	.products .sell {
		font-size: 2.8em;
	}

	.products .per-bottle {
		font-size: .9em;
	}

	.products .guarantee {
		font-size: .8em;
	}

	.products .guarantee i {
		font-size: 1.2em;
	}

	.products .totals {
		font-size: .85em;
		margin-top: .25rem;
	}

	.products .btn-primary {
		width: 100%;
		padding: .75rem 2rem;
		font-size: 1.1em;
		line-height: 1;
		letter-spacing: .6px;
	}
}