.produc-box{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.produc-box-item{
	width: 50%;
}
.prd-slider{
	margin: 14px 0px;
}
#prd-active{
	display: block;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
}
h1{
	font-size: 22px;
	line-height: 1.625rem;
	font-weight: 600;
	font-style: normal;
	color: #444;
}
.produc-box-wraps{
	max-width: 360px;
}
.top-info{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.weight{
	background: #f1f1f1;
	padding: 12px;
	border-radius: 5px;
}
.top-info a{
	color: #f17f0f;
	font-size: 16px;
	font-weight: 600;
}
.prd-thumr img{
	max-width: 450px;
}
.prd-thumr{
	display: flex;
	justify-content: center;
}
.prd-input{
	padding: 15px;
	display: flex;
	justify-content: space-between;
	border: 1px solid #ccc;
	border-radius: 10px;
	margin: 20px 0px;
	align-items: center;
}
.prd-price{
	display: flex;
	gap: 9px;
	align-items: flex-end;
	margin-bottom: 5px;
}
.quantity-box{
	display: flex;
	align-items: center;
}
.single_add_to_cart_button{
	border: none;
	background: #f17f0f;
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
}
.tab-bnt{
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
}
.tab-bnt-item{
	border-left: 1px solid #cccc;
	background: #f1f1f1;
	padding: 15px;
	font-size: 16px;
}
.tab-bnt-item:hover{
	background: #fff;
	border: 1px solid #ccc;
}
.tab-active{
	border-bottom: none;
	border-top: 1px solid #cccc;
	background: #fff;
	display: block;
}
.tab-content{
	margin-top:60px ;
}
.prd-description-tab{
		display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.short-description{
	width: 100%;
}
.Nutritional-tab table{
	width: 100%;
}
tr{
	background-color: #dddddd;
}
tr:nth-child(even) {
  background-color: #fff;
}
td{
	padding: 10px;
}

@media(max-width: 1040px) {
	.tab-bnt-item{
		padding: 10px;
	}

}
@media(max-width: 885px) {
	.tab-bnt-item{
		font-size: 12px;
	}
	.produc-box{
		gap: 25px;
	}
}

@media(max-width: 450px) {
	.produc-box{
		flex-direction: column;
		gap: 0px;
	}
	.produc-box-item{
		width: 100%;
	}
	.produc-box-wraps{
		max-width: 100%;
	}
	h1{
		text-align: center;
	}
	.tab-bnt, .prd-description-tab{
		grid-template-columns: repeat(1, 1fr);
		margin-top: 10px;
	}
}