/* CSS cho shortcode danh mục sản phẩm */
.woocommerce-category-row {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	height: max-content;
	background: #eeeeee;
	justify-content: center;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.parent-category {
	width: 25%;
	margin: 0;
	padding: 0;
}

.col-md-9 {
	width: 75%;
	margin: 0;
	padding: 0;
}

.child-categories-wrapper.col-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 5px;
}

.parent-category .col-inner {
	display: flex;
	align-items: center;
	padding: 5px;
}

.parent-category-inner h3 {
	margin: 0 !important;
}

.parent-category-inner h3 a {
	margin-top: 0;
	font-size: 22px;
	color: black;
}

.category-description p {
	margin-bottom: 10px;
}

.view-all-container {
	text-align: right;
	margin-left: 5px;
}

.view-all-button {
	border-radius: 4px;
	text-align: center;
	font-weight: 300;
	transition: all 0.3s ease;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: var(--primary-color);
}

.view-all-button:hover {
	text-decoration: underline;
}

.child-categories-wrapper {
	height: 100%;
}

.child-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.child-category-item:hover h4 {
	color: var(--primary-color) !important;
	font-weight: 600 !important;
}

.child-category-item h4 {
	font-size: 16px;
	margin: 0;
	text-align: center;
	color: #333;
	border-right: 1px solid #ccc;
	margin-right: 10px;
	font-weight: 100 !important;
}

.child-category-item a {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* Responsive styles */
@media (max-width: 991px) {
	.child-category-item {
		width: calc(50% - 20px);
	}
}

@media (max-width: 767px) {
	.parent-category,
	.col-md-9 {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}

	/* Horizontal scrolling setup for mobile */
	.child-categories {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		padding: 10px 0;
		justify-content: flex-start;
		/* Hide scrollbar for cleaner look */
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	/* Hide scrollbar for Chrome, Safari and Opera */
	.child-categories::-webkit-scrollbar {
		display: none;
	}

	.child-category-item {
		flex: 0 0 auto;
		width: auto;
		min-width: 150px;
		margin: 0 5px;
		white-space: nowrap;
		padding: 8px 15px;
		border-right: none;
		border-radius: 20px;
		background: #f9f9f9;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	}

	.child-category-item:first-child {
		margin-left: 10px;
	}

	.child-category-item:last-child {
		margin-right: 10px;
	}

	.child-category-item h4 {
		border-right: none;
		margin-right: 0;
		font-size: 14px;
	}

	.child-categories-wrapper.col-inner {
		display: block;
		padding: 0;
	}

	.woocommerce-category-row {
		border-radius: 12px;
		padding: 10px 0;
	}

	/* Position view all button at the end of scrollable area */
	.view-all-container {
		display: inline-block;
		padding: 8px 15px;
		margin: 0 10px;
		white-space: nowrap;
	}
}
