.tubuy-single-product {
	padding: 80px 0;
	background: #f5f7fb;
}

.tubuy-single-product-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.tubuy-single-product-gallery {
	position: sticky;
	top: 120px;
}

.tubuy-single-product-main-image {
	background: #ffffff;
	border-radius: 30px;
	padding: 40px;
	border: 1px solid #edf1f7;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 600px;
}

.tubuy-single-product-main-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tubuy-single-product-summary {
	background: #ffffff;
	border-radius: 30px;
	padding: 40px;
	border: 1px solid #edf1f7;
}

.tubuy-single-product-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 16px;
	border-radius: 999px;
	background: #dcfce7;
	color: #16a34a;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 20px;
}

.tubuy-single-product-title {
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	color: #07121d;
	margin-bottom: 18px;
}

.tubuy-single-product-rating {
	font-size: 15px;
	color: #f59e0b;
	margin-bottom: 22px;
}

.tubuy-single-product-price {
	font-size: 38px;
	font-weight: 800;
	color: #07121d;
	margin-bottom: 24px;
}

.tubuy-single-product-description {
	font-size: 16px;
	line-height: 1.8;
	color: #64748b;
	margin-bottom: 30px;
}

.tubuy-single-product-cart .quantity {
	margin-bottom: 20px;
}

.tubuy-single-product-cart input.qty {
	width: 100px;
	height: 52px;
	border-radius: 14px;
	border: 1px solid #dbe3ec;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.tubuy-single-product-cart button {
	height: 56px;
	padding: 0 34px;
	border: none;
	border-radius: 16px;
	background: #16a34a !important;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 14px 30px rgba(22,163,74,0.22);
	transition: 0.3s ease;
}

.tubuy-single-product-cart button:hover {
	transform: translateY(-2px);
}

@media (max-width: 992px) {

	.tubuy-single-product-wrapper {
		grid-template-columns: 1fr;
	}

	.tubuy-single-product-gallery {
		position: relative;
		top: auto;
	}

	.tubuy-single-product-main-image {
		min-height: 400px;
	}

	.tubuy-single-product-title {
		font-size: 30px;
	}

}
.tubuy-single-product-meta {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid #edf1f7;
}

.tubuy-product-meta-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 15px;
	color: #64748b;
}

.tubuy-product-meta-item strong {
	color: #07121d;
	font-weight: 700;
}

.tubuy-product-trust {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	margin-top: 28px;
	border-radius: 22px;
	background: #f8fafc;
	border: 1px solid #edf1f7;
}

.tubuy-trust-item {
	font-size: 15px;
	font-weight: 600;
	color: #07121d;
}