.col-product-detail {
	padding: 50px 0 72px;
	background: #ffffff;
}

.product-detail-heading-wrap {
	margin-bottom: 40px;
	
}

.product-detail-heading-top {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #6e6e6e;
	font-size: var(--f16);
}

.product-detail-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #515151;
	text-decoration: none;
}

.product-detail-home .iconfont {
	font-size: 20px;
}

.product-detail-heading-main {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 90px;
}

.product-detail-page-title {
	font-size: 38px;
	font-weight: 700;
}

.product-detail-back {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	color: var(--gm-theme);
	font-weight: 600;
	text-decoration: none;
}

.product-detail-back .iconfont {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--gm-theme);
	color: #ffffff;
	font-size: 15px;
	line-height: 1;
}

.product-detail-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: start;
    border-top: 1px solid rgba(18, 34, 58, 0.12);
    padding-top: 60px;
	padding-bottom: 70px;
}

.product-detail-media {
	min-width: 0;
}

.product-detail-media-main {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height:500px;
	padding: 24px;
	border: 1px solid rgba(18, 34, 58, 0.08);
	border-radius: 8px;
	background: #f4f4f4;
}

.product-detail-media-main img {
	width: 80%;
	height: auto;
	object-fit: contain;
	display: block;
}

.product-detail-media-thumbs {
	display: flex;
}

.product-detail-media-thumbs-wrap {
	display: flex;
	align-items: stretch;
	gap: 14px;
	margin-top: 14px;
}

.product-detail-media-thumbs-swiper {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.product-detail-thumb-slide {
	height: auto;
}

.product-detail-thumbs-nav {
	width: 42px;
  
	flex: 0 0 42px;
	border: none;
	border-radius: 6px;
	background: #e5e5e5;
	color: #a0a0a0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.24s ease, color 0.24s ease;
}

.product-detail-thumbs-nav:hover {
	background: var(--gm-theme);
	color: #ffffff;
}

.product-detail-thumbs-nav .iconfont {
	font-size: 18px;
	line-height: 1;
}

.product-detail-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 135px;
	padding: 8px;
    box-sizing: border-box;
	border: 1px solid rgba(18, 34, 58, 0.08);
	border-radius: 6px;
	background: #f4f4f4;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.24s ease, background-color 0.24s ease;
}

.product-detail-thumb.is-active,
.product-detail-thumb:hover {
	border-color: var(--gm-theme);
}

.product-detail-thumb img {
	width: 95%;
	height: auto;
	object-fit: contain;
	opacity: 0.42;
	transition: opacity 0.24s ease;
}

.product-detail-thumb.is-active img,
.product-detail-thumb:hover img {
	opacity: 1;
}

.product-detail-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.product-detail-title {
	position: relative;
	padding-left: 18px;
	font-size: var(--f24);
	font-weight: 700;
}

.product-detail-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.14em;
	width: 4px;
	height: 0.92em;
	border-radius: 999px;
	background: var(--gm-theme);
}

.product-detail-intro {
	margin-top: 40px;
	color: #666;
	font-size: var(--f16);
    line-height: 1.8;
    font-weight: 500;
}

.product-detail-specs {
	margin-top: 50px;
	color: var(--gm-theme);
    display: grid;
    gap: 20px;
    font-weight: 600;
}



.product-detail-specs p {
	position: relative;
	padding-left: 34px;
}



.product-detail-specs li::before,
.product-detail-specs p::before {
	content: "\eaf1";
	font-family: "iconfont" !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: 0;
	top:0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--gm-theme);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 1;
    font-weight: 600;
}

.product-detail-contact-btn {
	margin-top: 85px;
}
.product-detail-specifications-section{
 padding-top: 70px;
 padding-bottom:85px;
	
    border-top: 1px solid rgba(18, 34, 58, 0.12);
}

.product-detail-specifications-content{
	margin-top: 30px;
}
.product-detail-specifications-content h3{
	margin-bottom: 15px;
	font-weight: 600;
}
table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}
table td{
	font-size: var(--f16);
}
table th,
table td {
    border: 1px solid #cccccc;
     padding: 15px 8px;
}
table tr:first-child th {
    background-color: var(--gm-theme);
    color: #ffffff;

    font-weight: normal;
}
table > tbody > tr:nth-child(odd) {
    background-color: #F5F5F5;
}
table tr th {
    background: #fff;
}

.product-detail-related-section {
	 padding-top: 70px;
 padding-bottom:200px;
	background: #ffffff;
    border-top: 1px solid rgba(18, 34, 58, 0.12);
}

.product-detail-related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom:30px;
}

.product-detail-related-navs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.product-detail-related-navs::before {
	content: "";
	order: 2;
	width: 1px;
	height: 18px;
	background: rgba(18, 34, 58, 0.16);
}

.product-detail-related-nav {
	position: relative;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: #7e7e7e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.24s ease;
}

.product-detail-related-nav--prev {
	order: 1;
}

.product-detail-related-nav--next {
	order: 3;
}

.product-detail-related-nav:hover {
	color: var(--gm-theme);
}

.product-detail-related-nav .iconfont {
	font-size: 16px;
	line-height: 1;
}

.product-detail-related-swiper {
	overflow: hidden;
}

.product-detail-related-swiper .swiper-slide {
	height: auto;
}

.product-detail-related-card {
	min-height: 335px;
	padding: 0 30px;
	background: #f4f4f4;
}

.product-detail-related-card {
	min-height: 335px;
	padding: 0 30px;
	background: #f4f4f4;
}





@media (min-width: 1000px) {
	

	.product-detail-heading-main {
		flex-direction: row;
		align-items:flex-end;
		justify-content: space-between;
	}

	.product-detail-page-title {
		font-size: var(--f60);
	}

	.product-detail-hero {
		grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
		gap: 125px;
	}



}
