/* Product Styling */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

	* {  box-sizing: border-box;}

	.t4g-wrapper{
	  	display: flex;
	  	gap: 25px;	
	  	justify-content: center;
		align-content: center;
		flex-wrap: wrap;
		
	}
		

	.t4g-item {
		flex: 0 0 calc(20% - 5px);
		color: white;
		text-align: center;
	}
	
	
	.t4g-item > a{
		text-decoration: none;
	}
	
	.t4g-productImg {
		background-image: linear-gradient(131.14deg, #e5004b 4.53%, #e5004b 70.61%, #e5004b 102.64%);
		background-image: -webkit-gradient(linear, left bottom, right top, color-stop(4.53%, #e5004b), color-stop(70.61%, #e5004b), color-stop(102.64%, #e5004b));
		background-image: -moz-linear-gradient(131.14deg, #e5004b 4.53%, #e5004b 70.61%, #e5004b 102.64%);
		padding: 2px;
		border-radius: 0;		
	}
	
	.t4g-productImg:hover{
		transform: scale(1.01) ;
		box-shadow:0 1px 1px rgba(0,0,0,0.11),0 2px 2px rgba(0,0,0,0.11),0 4px 4px rgba(0,0,0,0.11),0 6px 8px rgba(0,0,0,0.11),0 8px 16px rgba(0,0,0,0.11);
		transition: all ease-in-out .3s;
	}
	
		.t4s-button-menu {
			background-color:black;
			color:white;
			cursor:pointer;
			padding:10px;
			text-align:center;
			border:none;
			outline:none;
			font-size:14px;
			font-weight: 400;
			font-family: 'Montserrat';
			height: auto;
			text-shadow: 0px 0px 4px #000;
		}	
		.t4s-button-menu:hover {
			/* background: #e5004b; */
			box-shadow: 0px 0px 8px 4px rgba(0,0,0,0.20); 
			transform: scale(1.01);
			transition: all ease-in-out .3s;
		}
	
		.t4s-content{
			animation: t4s-animate 0.7s;
			position: relative;
		}
	
		.t4s-product-name {
			font-family: Lato;
			font-weight: 600;
			color: rgba(31,31,31,1.00);
		}
			
		.t4s-product-price {
			font-family: Lato;
			font-weight: 500;
			color: rgba(104,102,102,1.00);
		}
	
	
	@media(max-width: 992px) {
		.t4g-item {
		  flex: 0 0 calc(30% - 5px);
		}
	}
	@media(max-width: 767px) {
	.t4g-item {
	  flex: 0 0 calc(45% - 5px);
	  }
	}
	@media(max-width: 619px) {
	  .t4s-button-menu {
			width: 100%;
		  	transition: all ease-in-out .3s;
		  }
	  }	
		
	@keyframes t4s-animate {
	  from {top: -20px; opacity:0%;}
	  to {top: 0px; opacity:100%;}
	}