.tubuy-home-categories {
	padding: 80px 0;
	background: #ffffff;
}

.tubuy-section-heading {
	text-align: center;
	margin-bottom: 50px;
}

.tubuy-section-heading h2 {
	font-size: 42px;
	font-weight: 700;
	color: #07121d;
	margin-bottom: 15px;
}

.tubuy-section-heading p {
	font-size: 17px;
	color: #6b7280;
}

.tubuy-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.tubuy-category-card {
	height: 220px;
	border-radius: 24px;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s ease;
	border: 1px solid rgba(0,0,0,0.04);
}

.tubuy-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.tubuy-category-card span {
	font-size: 22px;
	font-weight: 600;
	color: #07121d;
}

@media (max-width: 992px) {

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

}

@media (max-width: 576px) {

	.tubuy-home-categories {
		padding: 60px 0;
	}

	.tubuy-section-heading h2 {
		font-size: 32px;
	}

	.tubuy-categories-grid {
		grid-template-columns: 1fr;
	}

}