/* Styles for individual product pages */

/* Layout */
.single-product{
	padding: 20px 12px;
	color: #333;
}
.single-product p{
	font-size: 15px;
	color: #444;
	line-height: 1.7;
	margin-bottom: 12px;
}
.single-product-row{
	align-items: center;
	/* gap: 24px; */
}

/* Image & gallery */
.single-product img.img-fluid{
	/* width: 100%; */
	height: auto;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(15,40,50,0.06);
	transition: transform .2s ease;
}
.single-product img.main-img:hover{
	transform: scale(1.01);
}
.thumb-gallery{
	margin-top: 10px;
	display: flex;
	gap: 10px;
}
.thumb-gallery .thumb{
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #e6eef0;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease;
}
.thumb-gallery .thumb:hover{
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 6px 14px rgba(32,80,90,0.08);
}

/* Title & intro */
.single-product h1,
.single-product h2{
	font-size: 32px;
	font-weight: 700;
	color: #1e88b6;
	margin-bottom: 12px;
}
.single-product .product-title{
	font-size: 32px;
	font-weight: 700;
	color: #1e88b6;
	margin-bottom: 6px;
}
.single-product .product-tagline{
	font-size: 15px;
	color: #555;
	margin-bottom: 16px;
}

/* Short description / price area */
.single-product .price{
	font-size: 16px;
	color:#1e88b6;
	font-weight: 700;
	margin-top: 8px;
}

/* Features & lists */
.single-product .product-points{
	list-style: none;
	padding: 0;
	margin: 0 0 18px 0;
}
.single-product .product-points li{
	margin-bottom: 8px;
	font-size: 15px;
}
.single-product h3,
.single-product .features-heading{
	font-size: 22px;
	color: #2d6f78;
	font-weight: 700;
	margin-top: 18px;
	margin-bottom: 10px;
}
/* ================================
SPECIFICATIONS TABLE (CLEAN)
================================ */

.product-table{
    margin-top: 28px;
     overflow-x: auto; /*  mobile scroll */
}

.product-table h3{
    font-size: 22px;
    color: #2d6f78;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.specs-table{
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;   /* important for mobile */
}

.specs-table th,
.specs-table td{
    border: 1px solid #e6eef0;
    padding: 10px 14px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;   /* ⭐ text ek hi line me */
}

.specs-table th{
    background: #f8fbfc;
    color: #2d6f78;
    font-weight: 600;
}

/* ================================
MOBILE OPTIMIZATION
================================ */



/* Responsive */
@media (max-width: 992px) {
	.single-product .product-title{ font-size: 26px; }
}
@media (max-width: 768px) {
	.single-product-row{ flex-direction: column; }
	.thumb-gallery{ gap: 8px; }
	.thumb-gallery .thumb{ width: 54px; height:54px; }
	.single-product .product-title{ font-size: 22px; }
	.single-product .product-tagline{ font-size: 14px; }
        .specs-table th,
    .specs-table td{
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* small utility */
.muted{ color:#6b7280; }
