.product-details {
  position: relative;
  overflow: hidden;
}

.product-details::after {
  content: "";
  display: table;
  clear: both;
}

.product-details .product-image-slider {
  width: 100%;
  max-width: 330px;
  float: left;
  margin-right: 20px;
  padding: 10px;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.product-details .products-data {
  float: left;
  width: calc(100% - 350px);
  font-size: 15px;
  line-height: 1.6;
}

.product-details .product-attributes {
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #4a6fa5, #3a5980);
  padding: 8px 15px;
  color: #fff;
  border-radius: 5px 5px 0 0;
  margin: 0;
  letter-spacing: 0.5px;
}

.product-specifications {
  background: #f8f9fa;
  padding: 0;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e0e0e0;
  border-top: none;
  overflow: hidden;
  font-size: 14px;
}

.product-specifications table {
  width: 100%;
  border-spacing: 0;
}
.product-specifications table tr{border-bottom: 1px solid #ccc;}

.product-specifications table .attribute-title {
  font-weight: 600;
  width: 35%;
  padding: 4px 12px;
  min-width: 160px;
  background-color: #f5f7fa;
  color: #2d3748;
}

.product-specifications table .attribute-value {
  padding: 14px 16px;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
  background-color: white;
}

.product-specifications table tr:last-child .attribute-title,
.product-specifications table tr:last-child .attribute-value {
  border-bottom: none;
}

.product-specifications table tr:hover .attribute-value {
  background-color: #f7fafc;
}

.product-category {
  width: 100%;
  float: left;
  text-align: right;
  font-size: 14px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  color: #64748b;
}

.product-tags {
  display: inline-block;
  background-color: #e2e8f0;
  padding: 6px 12px;
  margin: 5px 8px 5px 0;
  border-radius: 16px;
  font-size: 13px;
  color: #475569;
  transition: all 0.2s ease;
}

.product-tags:hover {
  background-color: #cbd5e1;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .product-details .product-image-slider {
    width: 100%;
    max-width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .product-details .products-data {
    width: 100%;
    float: none;
  }
  
  .product-specifications {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
  }
  
  .product-specifications table {
    display: block;
  }
  
  .product-specifications table .attribute-title {
    width: 100%;
    display: block;
    min-width: auto;
    border-bottom: none;
    padding-bottom: 8px;
    padding-left: 0;
  }
  
  .product-specifications table .attribute-value {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 16px;
  }
  
  .product-specifications table tr {
    display: block;
    padding: 16px 16px 0;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .product-specifications table tr:last-child {
    border-bottom: none;
    padding-bottom: 16px;
  }
  
  .product-specifications table tr:last-child .attribute-value {
    padding-bottom: 0;
  }
  
  .product-category {
    text-align: left;
  }
}

/*Tabs CSS Start*/
.tab-wrapper{
	text-align: center;
	display: block;
    margin: 20px auto 0 auto;
    width:100%;
    float:left;
}

.content-wrapper{
    width:100%;
    float:left;
    margin-bottom: 40px;
}

.tabs{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}
.tab-link{
	margin: 0 2.5%;
	list-style: none;
	padding: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: all ease 0.5s;
	border-bottom: solid 3px rgba(255,255,255,0.0);
}
.tab-link:hover{
	color: #0091dc;
	border-color: #0091dc;
}
.tab-link.active{
	color: #0091dc;
	border-color: #0091dc;
}

.tab-content{
	display: none;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeIn 0.2s ease forwards;
    width: 100%;
    float: left;
}
.tab-content.active{
	display: block;
	opacity: 1;
}

#tab-3 ul {
  justify-content: center;
  display: flex;
}

#tab-3 .releated-release-sleeve {
  width: 20%;
  float: left;
  margin: 5% 5% 0 5%;
}

@keyframes fadeIn{
		100%{
             opacity: 1;
	         transform: none;}
}

/*Tabs CSS End*/