body {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
}
.products {
	background-color: var(--main-grey);
	padding: 3rem 0;
}
.products h2 {
	color: white;
	font-weight: 900;
	margin: 0 auto 3rem;
}
.products .item {
	background: linear-gradient(90deg, var(--main-color), var(--main-color), var(--main-color));
	padding: 6px;
	border-radius: 2.2rem;
	transition: .2s;
}
.products .item:hover {
	scale: 1.05;
}
.products .item > div {
	background-color: white;
	border-radius: 2rem;
	overflow: hidden;
}
.products .item.main-promo {
    background: #ffc107;
    box-shadow: 0 0 20px #00000050;
}
.products .item.main-promo > div {
    background-color: #fff3cd;
}
.products .header {
	background-color: var(--side-color);
	border-radius: 2rem 2rem 0 0;
	margin-bottom: -1px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1;
	text-shadow: 2px 2px 0 #00000020;
}
.products .main-promo .header {
    background-color: #ffc107;
}
.products .header span {
	font-size: .8em;
	font-weight: normal;
}
.products .cta-vshape {
	clip-path: polygon(100% 0,0 0,50% 100%);
	max-width: 100%;
	margin: 0 auto -50px;
	background-color: var(--side-color);
	height: 30px;
	width: 100%;
}
.products .main-promo .cta-vshape {
    background-color: #ffc107;
}
.products .price {
	width: fit-content;
	font-weight: 900;
}
.products .sell {
	font-size: 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;
}
.products .btn-primary {
	background-color: gold;
	color: black;
	padding: 1rem 4rem;
	font-size: 1.2em;
	line-height: 1;
	letter-spacing: .6px;
	border: 0;
	border-radius: 10rem;
}
.products .btn-primary:hover {
	background-color: #F9E063;
}
.products .btn-primary i {
	font-size: 1.2em;
}
.products .btn-primary span {
	font-size: .8em;
	color: black;
}
.product-button {
	display: block;
	background: linear-gradient(to top, #a78a19, #debd15);
	width: 100%;
	max-width: 250px;
	border-radius: 12px;
	padding: 2px !important;
	margin: 0 auto;
	border: none;
}
.main-promo .product-button {
    background: linear-gradient(to bottom, #ed6704, #f37a02);
}
.product-button > div {
	position: relative;
	background: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1;
	color: black;
	padding: .75rem .5rem;
	border-radius: 10px;
}
.main-promo .product-button > div {
    background: linear-gradient(to top, #ed6704 50%, #f37a02 50%);
    color: white;
    text-shadow: 0px 2px #cc4f00;
}
.product-button:hover > div {
	background: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}
.main-promo .product-button:hover > div {
    background: linear-gradient(to bottom, #ed6704 50%, #f37a02 50%);
}
.product-button span {
    display: block;
    color: inherit;
    font-size: .95rem;
}
.main-promo .product-button span {
    color: white;
    background: #00000029;
    width: fit-content;
    margin: 2px auto 0;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .5px;
}
.products .totals {
	font-weight: 900;
}
.products .totals span {
	color: red;
}
.products .totals s {
	color: #888888;
	text-decoration-color: red;
	text-decoration-thickness: 2px;
}

@media (max-width: 767px) {

	.products .item {
		padding: 3px;
		border-radius: 1.2rem;
	}
	.products .item > div {
		background-color: white;
		border-radius: 1rem;
	}
	.products .header {
		background: none;
		font-size: .95em;
		font-weight: 900;
	}
	.products .main-promo .header {
		background: none;
	}
	.products .header p {
		color: var(--main-color);
		text-shadow: none;
	}
	.products .main-promo .header p {
		color: #ff7907;
		text-shadow: none;
	}
	.products .item img {
		width: 100%;
	}
	.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;
	}
	
}

/* Current Theme Overrides */
.products .header, .products .cta-vshape {
	color: white;
}
.products .item.main-promo > div {
	background-color: #eeffee;
}