.tubuy-featured-products {
	padding: 70px 0;
	background: #f5f7fb;
}

.tubuy-products-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.tubuy-products-section-header h2 {
	font-size: 30px;
	font-weight: 800;
	color: #07121d;
	letter-spacing: -1px;
}

.tubuy-products-section-header a {
	font-size: 14px;
	font-weight: 700;
	color: #16a34a;
	text-decoration: none;
}

.tubuy-products-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.tubuy-product-card {
	position: relative;
	background: #ffffff;
	border-radius: 22px;
	padding: 12px;
	overflow: hidden;
	transition: 0.3s ease;
	border: 1px solid #edf1f7;
}

.tubuy-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.tubuy-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	height: 24px;
	padding: 0 12px;
	border-radius: 999px;
	background: #16a34a;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.tubuy-product-wishlist {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.96);
	color: #64748b;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.tubuy-product-thumbnail {
	height: 210px;
	border-radius: 18px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 10px;
}

.tubuy-product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	transition: 0.35s ease;
}

.tubuy-product-card:hover .tubuy-product-thumbnail img {
	transform: scale(1.05);
}

.tubuy-product-content h3 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #0f172a;
	margin-bottom: 4px;
}

.tubuy-product-rating {
	font-size: 11px;
	color: #f59e0b;
	margin-bottom: 8px;
}

.tubuy-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.tubuy-product-prices {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tubuy-product-price {
	font-size: 18px;
	font-weight: 800;
	color: #07121d;
	line-height: 1.2;
}

.tubuy-product-old-price {
	font-size: 11px;
	color: #94a3b8;
	text-decoration: line-through;
}

.tubuy-product-cart {
	width: 40px;
	height: 40px;
	border-radius: 14px;
	background: #16a34a;
	color: #ffffff;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	flex-shrink: 0;
	transition: 0.3s ease;
	box-shadow: 0 10px 20px rgba(22,163,74,0.22);
}

.tubuy-product-cart:hover {
	transform: scale(1.05);
}

@media (max-width: 1200px) {

	.tubuy-products-grid {
		grid-template-columns: repeat(4, 1fr);
	}

}

@media (max-width: 992px) {

	.tubuy-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}

}

@media (max-width: 576px) {

	.tubuy-featured-products {
		padding: 50px 0;
	}

	.tubuy-products-section-header h2 {
		font-size: 24px;
	}

	.tubuy-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.tubuy-product-card {
		padding: 10px;
		border-radius: 18px;
	}

	.tubuy-product-thumbnail {
		height: 150px;
		padding: 10px;
		margin-bottom: 8px;
	}

	.tubuy-product-content h3 {
		font-size: 13px;
	}

	.tubuy-product-price {
		font-size: 15px;
	}

	.tubuy-product-cart {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

}