.xp-section-title {
	font-size: 40px;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 10px 0;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
	text-align: center;
	line-height: 55px;
}

.xp-section-subtitle {
	font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
	text-align: center;
}

.xp-section-title span {
	background: linear-gradient(135deg, #0b71b9, #0b71b9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==========================================
   PRODUCT CATEGORIES SECTION STYLES
   ========================================== */

.xp-product-categories-section {
	padding: 80px 0px;
	background: #ffffff;
	width: 100%;
}

.xp-categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
	margin-top: 50px;
}

.xp-category-card {
	position: relative;
	height: 420px;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: flex-end;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.xp-category-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 0;
}

.xp-category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.xp-category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(30deg, rgb(0 0 0 / 52%) 0%, rgb(11 113 185 / 55%) 100%);
	transition: all 0.3s ease;
	z-index: 1;
}

.xp-category-card:hover .xp-category-overlay {
	background: linear-gradient(30deg, rgb(0 0 0 / 52%) 0%, rgb(11 113 185 / 55%) 100%);
}

.xp-category-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 35px 30px 30px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.xp-category-label {
	font-size: 12px;
	font-weight: 400;
	color: rgb(255 255 255);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-family: 'Jost', sans-serif;
}

.xp-category-name {
	font-size: 20px;
	font-weight: 600;
	color: #28eceb;
	margin: 0;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
	line-height: 1.2;
}

.xp-category-btn {
	background: #ffffff;
	color: #2c3e50;
	border: none;
	padding: 10px 28px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
	text-transform: capitalize;
	width: fit-content;
	box-shadow: 0 2px 8px rgb(0 0 0 / 27%);
	margin-top: 5px;
}

.xp-category-btn:hover {
	background: #0b71b9;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(129, 186, 45, 0.3);
}

/* Blog Content Wrapper - Prevent CSS Conflicts */
.blog-content-wrapper {
	line-height: 1.8;
	font-size: 16px;
	color: #5c5e61;
}

.blog-content-wrapper p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 16px;
}

.blog-content-wrapper h1,
.blog-content-wrapper h2,
.blog-content-wrapper h3,
.blog-content-wrapper h4,
.blog-content-wrapper h5,
.blog-content-wrapper h6 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #2c2e33;
	font-weight: 600;
}

.blog-content-wrapper h2 {
	font-size: 28px;
}

.blog-content-wrapper h3 {
	font-size: 24px;
}

.blog-content-wrapper h4 {
	font-size: 20px;
}

.blog-content-wrapper h5 {
	font-size: 18px;
}

.blog-content-wrapper h6 {
	font-size: 16px;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
	margin-bottom: 1.5rem;
	margin-left: 2rem;
}

.blog-content-wrapper ul li,
.blog-content-wrapper ol li {
	margin-bottom: 0.5rem;
	line-height: 1.8;
	list-style: circle;
}

.blog-content-wrapper img {
	max-width: 100%;
	height: auto;
	margin: 1.5rem 0;
	border-radius: 8px;
}

.blog-content-wrapper blockquote {
	border-left: 4px solid #c01e2e;
	padding-left: 1.5rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: #8e8e93;
}

.blog-content-wrapper a {
	color: #c01e2e;
	text-decoration: none;
	transition: 0.3s ease;
}

.blog-content-wrapper a:hover {
	text-decoration: underline;
}

.blog-content-wrapper table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.blog-content-wrapper table th,
.blog-content-wrapper table td {
	padding: 12px;
	border: 1px solid #ececec;
	text-align: left;
}

.blog-content-wrapper table th {
	background-color: #f5f5f5;
	font-weight: 600;
}

/* TABLETS (768px and below) */
@media (max-width: 768px) {
	/* Product Categories */
	.xp-product-categories-section {
		padding: 60px 15px;
	}

	.xp-categories-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.xp-categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.xp-category-card {
		height: 420px;
	}

	.xp-category-content {
		padding: 30px 25px 25px;
		gap: 6px;
	}

	.xp-category-name {
		font-size: 35px;
	}

	.xp-category-label {
		font-size: 12px;
	}

	.xp-category-btn {
		padding: 8px 22px;
		font-size: 15px;
		margin-top: 4px;
	}
}
@media (max-width: 480px) {
	.xp-section-title { 
		font-size: 26px; 
	}
	/* Product Categories */
	.xp-product-categories-section {
		padding: 40px 10px;
	}

	.xp-categories-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.xp-categories-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.xp-category-card {
		height: 420px;
	}

	.xp-category-content {
		padding: 25px 20px 20px;
		gap: 5px;
	}

	.xp-category-name {
		font-size: 35px;
	}

	.xp-category-label {
		font-size: 12px;
	}

	.xp-category-btn {
		padding: 7px 18px;
		font-size: 15px;
		margin-top: 3px;
	}
}