*{
	margin: 0;
	padding: 0;
	font-family: "Montserrat";
	box-sizing: border-box;
}




.container-fluid {
    background: #f7f7f7;
    height: 100vh; /* Ensure it takes full vertical space */
    display: flex;
    align-items: center; /* Vertically center content */
}


.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
}

.product-name {
	margin: 0 auto;
	width: 80%;
    text-align: center;
    color: #000;
    font-weight: 800;
    font-size: 16px;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px; /* Space between the title and the image */
}

.back-btn {
    position: absolute;
    top: 50px;
    left: 50px;
    background-color: #1e90ff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.back-btn i {
    margin-right: 5px; /* Space between icon and text */
}

.back-btn:hover {
    background-color: #0066cc;
}

.col-img {
  position: relative;
}



.col-img img{
	width: 100%;
	display: block;
	width: 80%;
	margin: 0 auto;
	border-radius: 5px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7); 
}

.col-tabs{
	padding: 40px 0;
}

.col-tabs h2{
	font-size: 18px;
}

.tab-btns{
	margin: 26px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	box-shadow: 0 0 10px -2px rgba(184, 173, 184, 1.0);
}

.tab-btns button{
	color: #000;
	background: #fff;
	border: none;
	font-size: 0.8rem;
	padding: 0.6rem 0;
	outline: 0;
	cursor: pointer;
}

.active-btn{
	background: #1e90ff!important;
	color: #fff!important;
}

.tab-content div{
	margin: 0.2rem 0;
	display: none;
}

.tab-content h4{
	font-size: 13px;
}

.tab-content p{
	font-size: 13px;
	font-weight: 300;
	padding: 0.5rem 0;
	opacity: 0.9;
}

.active-tab{
	display: block!important;
}



/***** Media screen *****/

@media screen and (max-width: 500px){
	.col-tabs h4{
		font-size: 32px;
	}
	.tab-btns{
		margin: 32px 0;
	}
	.tab-btns button{
		font-size: 18;
	}
	.tab-content p{
		font-size: 16px;
	}
	.col-img img{
		width: 60%	;
	}
}


@media screen and (max-width: 992px){
	.container-fluid{
		height: 100vh;
	}
	.container-fluid .row{
		width: 85vw;
		height: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}
}




