 /* ----------------------------------------------------------------
	Canvas: Shop - 2
-----------------------------------------------------------------*/

:root {
	/* --cnvs-themecolor: #304109; */
	--cnvs-themecolor-rgb: 48, 65, 9;
	/* --cnvs-body-font: 'tenon', sans-serif; */
	/* --cnvs-primary-font: 'abril-display', serif; */
	/* --cnvs-body-color: #FFF7EC; */
	--cnvs-color: #AEBE89;
	--cnvs-color2: #E8EECF;
	--cnvs-text-color: var(--cnvs-themecolor);
	--cnvs-header-bg: var(--cnvs-body-color);
}

* {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}


/* product */
.dark #widget-subscribe-form .form-control::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
	.negative-service {
		position: relative;
		transform: translateY(-50%);
		z-index: 4;
	}

	.img-hover-in,
	.img-hover-in img,
	.product .product-image,
	.product .product-image img {
		transition: transform .5s ease-out,
			border-radius .5s ease-out;
		border-radius: 6px;
		background-color: #ccc;
	}

	.img-hover-in:hover img,
	.product:hover .product-image img {
		transform: scale(1.10);
	}

	.img-hover-in:hover,
	.product:hover .product-image {
		transform: scale(0.95);
		border-radius: 10px;
	}

	.img-overlap img {
		width: calc(100% + 30%);
		max-width: none;
	}

	.img-overlap + div {
		border-radius: 0.3rem;
		padding: 60px;
	}



