/* ==========================================
   FEATURES SECTION STYLES - MODERN REDESIGN
   ========================================== */

.xp-features-section {
	padding: 80px 0px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

/* Features Grid */
.xp-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 30px;
	width: 100%;
}

/* Feature Card */
.xp-feature-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(129, 186, 45, 0.1);
	display: flex;
	gap: 25px;
	animation: fadeInUp 0.8s ease-out;
}

.xp-feature-card:nth-child(1) {
	animation-delay: 0.1s;
}

.xp-feature-card:nth-child(2) {
	animation-delay: 0.2s;
}

.xp-feature-card:nth-child(3) {
	animation-delay: 0.3s;
}

.xp-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #81ba2d, #6fa025);
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: left;
}

.xp-feature-card:hover::before {
	transform: scaleX(1);
}

.xp-feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 50px rgba(129, 186, 45, 0.15);
	border-color: rgba(129, 186, 45, 0.3);
}

/* Feature Number Badge */
.xp-feature-number {
	font-size: 64px;
	font-weight: 900;
	color: #f0f0f0;
	font-family: 'Jost', sans-serif;
	letter-spacing: -2px;
	position: absolute;
	top: -10px;
	right: 20px;
	opacity: 0.5;
	pointer-events: none;
}

/* Feature Content */
.xp-feature-content {
	display: flex;
	gap: 25px;
	align-items: flex-start;
	width: 100%;
	position: relative;
	z-index: 1;
}

/* Feature Icon */
.xp-feature-icon {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #ffffff;
	transition: all 0.4s ease;
	position: relative;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.xp-icon-safe {
	background: linear-gradient(135deg, #81ba2d 0%, #6fa025 100%);
}

.xp-icon-smart {
	background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
}

.xp-icon-suitable {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.xp-feature-card:hover .xp-feature-icon {
	transform: rotate(10deg) scale(1.1);
	box-shadow: 0 12px 30px rgba(129, 186, 45, 0.25);
}

/* Feature Text */
.xp-feature-text {
	flex: 1;
}

.xp-feature-title {
	font-size: 22px;
	font-weight: 400;
	color: #1a1a1a;
	margin: 0 0 12px;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-feature-description {
	font-size: 14px;
	line-height: 1.8;
	color: #555555;
	margin: 0;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
}

/* Animation Keyframes */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
	.xp-features-section {
		background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
	}

	.xp-features-title {
		color: #e8e8e8;
	}

	.xp-features-subtitle {
		color: #b0b0b0;
	}

	.xp-feature-card {
		background: #2a2a2a;
		border-color: rgba(129, 186, 45, 0.2);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	}

	.xp-feature-card:hover {
		background: #313131;
		box-shadow: 0 20px 50px rgba(129, 186, 45, 0.25);
	}

	.xp-feature-title {
		color: #e8e8e8;
	}

	.xp-feature-description {
		color: #b0b0b0;
	}

	.xp-feature-number {
		color: #3a3a3a;
	}
}

/* TABLETS AND LARGER (1024px and below) */
@media (max-width: 1024px) {
	.xp-features-section {
		padding: 60px 20px;
	}

	.xp-features-title {
		font-size: 36px;
	}

	.xp-feature-card {
		padding: 35px;
		gap: 20px;
	}

	.xp-feature-icon {
		width: 70px;
		height: 70px;
		min-width: 70px;
		font-size: 35px;
	}

	.xp-feature-title {
		font-size: 20px;
	}

	.xp-feature-description {
		font-size: 13px;
	}
}

/* TABLETS (768px and below) */
@media (max-width: 768px) {
	.xp-features-section {
		padding: 50px 15px;
	}

	.xp-features-header {
		margin-bottom: 40px;
	}

	.xp-features-label {
		font-size: 12px;
		padding: 6px 16px;
	}

	.xp-features-title {
		font-size: 28px;
		margin: 15px 0 12px;
	}

	.xp-features-subtitle {
		font-size: 14px;
	}

	.xp-features-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.xp-feature-card {
		padding: 30px;
		gap: 20px;
		flex-direction: row;
	}

	.xp-feature-icon {
		width: 65px;
		height: 65px;
		min-width: 65px;
		font-size: 32px;
		border-radius: 12px;
	}

	.xp-feature-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.xp-feature-description {
		font-size: 13px;
		margin-bottom: 12px;
	}
}

/* MOBILE DEVICES (480px and below) */
@media (max-width: 480px) {
	.xp-features-section {
		padding: 40px 12px;
	}

	.xp-features-title {
		font-size: 24px;
		margin: 12px 0 10px;
	}

	.xp-features-subtitle {
		font-size: 13px;
	}

	.xp-features-grid {
		gap: 20px;
	}

	.xp-feature-card {
		padding: 25px;
		gap: 15px;
		flex-direction: column;
	}

	.xp-feature-icon {
		width: 60px;
		height: 60px;
		min-width: 60px;
		font-size: 28px;
		margin: 0 auto;
	}

	.xp-feature-number {
		font-size: 48px;
		right: 12px;
		top: -5px;
	}

	.xp-feature-content {
		flex-direction: column;
	}

	.xp-feature-title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.xp-feature-description {
		font-size: 12px;
		margin-bottom: 10px;
		line-height: 1.6;
	}
}

/* ==========================================
   ABOUT SECTION STYLES
   ========================================== */

.xp-about-section {
	padding: 60px 0px;
	width: 100%;
	background-color: #F8FBF3;
}

.xp-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
	align-items: center;
}

/* About Stats Column */
.xp-about-stats {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.xp-stat-item {
	text-align: center;
	padding: 20px 0;
	border-bottom: 2px solid #f0f0f0;
	transition: all 0.3s ease;
}

.xp-stat-item:last-child {
	border-bottom: none;
}

.xp-stat-item:hover {
	transform: translateX(5px);
}

.xp-stat-number {
	font-size: 42px;
	font-weight: 600;
	color: #81ba2d;
	margin-bottom: 10px;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-stat-label {
	font-size: 14px;
	font-weight: 400;
	color: #2c3e50;
	letter-spacing: 1px;
	line-height: 1.6;
	font-family: 'Jost', sans-serif;
}

/* About Image Column */
.xp-about-image {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.xp-about-image img {
	width: 100%;
	transition: transform 0.3s ease;
}

.xp-about-image:hover img {
	transform: scale(1.05);
}

/* About Content Column */
.xp-about-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.xp-about-label {
	font-size: 13px;
	font-weight: 600;
	color: #81ba2d;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Jost', sans-serif;
}

.xp-about-title {
	font-size: 25px;
	font-weight: 600;
	color: #2c3e50;
	line-height: 1.4;
	border-left: 2px solid #6fac22;
	padding-left: 20px;
	border-radius: 10px;
	letter-spacing: 1px;
	margin: 0;
	font-family: 'Jost', sans-serif;
}

.xp-about-title .xp-highlight {
	color: #81ba2d;
}

.xp-about-description {
	font-size: 14px;
	line-height: 1.8;
	color: #666666;
	letter-spacing: 1px;
	margin: 0;
	font-family: 'Jost', sans-serif;
}

/* Benefits Grid */
.xp-about-benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin: 10px 0;
}

.xp-benefit-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.xp-benefit-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 15px;
	background: #ffffff;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.xp-benefit-item:hover {
	background: #f3f9e8;
	transform: translateY(-2px);
}

.xp-benefit-icon {
	min-width: 40px;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #81ba2d 0%, #6aa81f 100%);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.xp-benefit-text h4 {
	font-size: 14px;
	font-weight: 400;
	color: #2c3e50;
	margin: 0;
	letter-spacing: 1px;
	font-family: 'Jost', sans-serif;
}

/* About Button */
.xp-about-btn {
	background: linear-gradient(135deg, #81ba2d 0%, #6aa81f 100%);
	color: #ffffff;
	border: none;
	padding: 12px 35px;
	font-size: 15px;
	font-weight: 400;
	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 4px 12px rgba(129, 186, 45, 0.3);
}

.xp-about-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(129, 186, 45, 0.4);
	background: linear-gradient(135deg, #6aa81f 0%, #5a9010 100%);
}

/* ==========================================
   PRODUCT CATEGORIES SECTION STYLES
   ========================================== */

.xp-product-categories-section {
	padding: 80px 20px;
	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 / 45%) 0%, rgba(129, 186, 45, 0.65) 100%);
	transition: all 0.3s ease;
	z-index: 1;
}

.xp-category-card:hover .xp-category-overlay {
	background: linear-gradient(30deg, rgb(0 0 0 / 45%) 0%, rgba(129, 186, 45, 0.65) 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: #81ba2d;
	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: #81ba2d;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(129, 186, 45, 0.3);
}

/* ==========================================
   PRODUCT slider SLIDER SECTION STYLES
   ========================================== */

.xp-product-slider-section {
	position: relative;
	width: 100%;
	background: #ffffff;
	padding: 0px 0px 60px;
	overflow: visible;
}

.xp-product-slider-section .container {
	position: relative;
}

.xp-slider-slider {
	position: relative;
	width: 100%;
	min-height: 300px;
	overflow: hidden;
	display: flex;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.xp-slider-slide {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	min-height: auto;
	overflow: hidden;
	transition: left 1s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	background: #f5f5f5;
}

.xp-slider-slide.xp-active {
	left: 0;
	z-index: 2;
}

.xp-slider-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.xp-slider-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding: 0;
}

.xp-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #d0d0d0;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

.xp-slider-dot.xp-active {
	background: #81ba2d;
	width: 14px;
	height: 14px;
	box-shadow: 0 0 0 3px rgba(129, 186, 45, 0.2);
}

.xp-slider-dot:hover {
	background: #81ba2d;
	transform: scale(1.1);
}

/* ==========================================
   TESTIMONIALS SECTION STYLES
   ========================================== */

.xp-testimonials-section {
	padding: 60px 0px;
	background: linear-gradient(135deg, #F8FBF3 0%, #F8FBF3 100%);
	width: 100%;
}

.xp-testimonials-header {
	text-align: center;
	margin-bottom: 60px;
}

.xp-testimonials-rating {
	display: flex;
	justify-content: center;
	align-items: center;
}

.xp-rating-badge {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #ffffff;
	padding: 15px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.xp-rating-stars {
	display: flex;
	gap: 5px;
	font-size: 18px;
	color: #ffc107;
}

.xp-rating-text {
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #2c3e50;
	letter-spacing: 1px;
}

/* Testimonials Grid */
.xp-testimonials-carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	width: 100%;
	position: relative;
}

.xp-testimonials-carousel .owl-stage-outer {
	overflow: visible;
}

.xp-testimonials-carousel .owl-stage {
	display: flex;
	gap: 20px;
}

.xp-testimonials-carousel .owl-item {
	padding-bottom: 20px !important;
	height: auto;
}

.xp-testimonials-carousel .owl-nav {
	position: absolute;
	top: -60px;
	right: 0;
	display: flex;
	gap: 15px;
	z-index: 10;
}

.xp-testimonials-carousel .owl-nav button {
	background: #ffffff;
	border: 2px solid #81ba2d;
	color: #81ba2d;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	padding: 0;
}

.xp-testimonials-carousel .owl-nav button:hover {
	background: #81ba2d;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(129, 186, 45, 0.3);
}

.xp-testimonials-carousel .owl-nav button.owl-next {
	width: 45px;
	height: 45px;
}

.xp-testimonials-carousel .owl-nav button.owl-prev {
	width: 45px;
	height: 45px;
}

/* Owl Carousel Custom Styling */
.xp-testimonials-carousel .owl-stage {
	justify-content: center;
}

.xp-testimonials-carousel .owl-item {
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.xp-testimonials-carousel .owl-item.active {
	opacity: 1;
}

.xp-testimonials-carousel .owl-carousel .owl-nav button.owl-next:before,
.xp-testimonials-carousel .owl-carousel .owl-nav button.owl-prev:before {
	content: none;
}

.xp-testimonial-card {
	background: #ffffff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	border-top: 4px solid #81ba2d;
	position: relative;
	overflow: hidden;
}

.xp-testimonial-card::before {
	content: '"';
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 60px;
	color: #81ba2d;
	opacity: 0.1;
	font-weight: 700;
}

.xp-testimonial-header {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.xp-testimonial-avatar {
	min-width: 60px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 3px solid #81ba2d;
}

.xp-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.xp-testimonial-info {
	flex: 1;
}

.xp-testimonial-name {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 4px 0;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-testimonial-title {
	font-size: 12px;
	color: #81ba2d;
	font-weight: 600;
	margin: 0 0 8px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Jost', sans-serif;
}

.xp-testimonial-stars {
	display: flex;
	gap: 4px;
	font-size: 13px;
	color: #ffc107;
}

.xp-testimonial-text {
	font-size: 14px;
	line-height: 1.8;
	color: #555555;
	margin: 0 0 15px 0;
	flex: 1;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
}

.xp-testimonial-date {
	font-size: 14px;
	color: #999999;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
}

/* ==========================================
   PAGE WRAPPER AND GENERAL STYLES
   ========================================== */

.xp-main-wrapper {
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #ffffff;
	padding: 40px 20px;
}

.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;
}

.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, #81ba2d, #98ff00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==========================================
   ALL RESPONSIVE STYLES
   ========================================== */

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
	.xp-features-section {
		background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
	}

	.xp-feature-card {
		background: #2a2a2a;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	}

	.xp-feature-card:hover {
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	}

	.xp-feature-title {
		color: #e8e8e8;
	}

	.xp-feature-description {
		color: #b0b0b0;
	}
}

/* TABLETS AND LARGER (1024px and below) */
@media (max-width: 1024px) {
	/* Features Section */
	
	/* About Section */
	.xp-about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.xp-about-stats {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.xp-stat-item {
		border-bottom: none;
		border-right: 2px solid #f0f0f0;
		padding: 15px;
	}

	.xp-stat-item:last-child {
		border-right: none;
	}

	.xp-about-title {
		font-size: 28px;
	}

	/* Product Categories */
	.xp-categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.xp-category-card {
		height: 420px;
	}

	.xp-category-name {
		font-size: 35px;
	}

	/* Product Slider */
	.xp-product-slider-section {
		padding: 50px 20px;
	}

	.xp-slider-slider {
		min-height: 350px;
		border-radius: 8px;
	}

	.xp-slider-slide {
		min-height: 350px;
	}

	.xp-slider-dots {
		gap: 8px;
		margin-top: 18px;
	}

	.xp-slider-dot {
		width: 10px;
		height: 10px;
	}

	.xp-slider-dot.xp-active {
		width: 12px;
		height: 12px;
	}

	/* Testimonials */
	.xp-testimonials-section {
		padding: 60px 20px;
	}

	.xp-testimonials-carousel {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.xp-testimonials-carousel .owl-nav {
		top: -50px;
		gap: 10px;
	}

	.xp-testimonials-carousel .owl-nav button {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.xp-testimonial-card {
		padding: 25px;
	}

	.xp-testimonial-avatar {
		min-width: 55px;
		width: 55px;
		height: 55px;
	}

	.xp-testimonial-name {
		font-size: 15px;
	}

	.xp-testimonial-text {
		font-size: 13px;
	}
}

/* TABLETS (768px and below) */
@media (max-width: 768px) {
	/* About Section */
	.xp-about-section {
		padding: 60px 15px;
	}

	.xp-about-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.xp-about-stats {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.xp-stat-item {
		border-bottom: 2px solid #f0f0f0;
		border-right: none;
		padding: 15px 0;
	}

	.xp-stat-item:last-child {
		border-bottom: none;
	}

	.xp-stat-number {
		font-size: 32px;
	}

	.xp-about-title {
		font-size: 24px;
	}

	.xp-about-description {
		font-size: 14px;
	}

	.xp-benefit-row {
		grid-template-columns: 1fr;
	}

	/* 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;
	}

	/* Product Slider */
	.xp-product-slider-section {
		padding: 40px 15px;
	}

	.xp-slider-slider {
		min-height: 100px;
		border-radius: 8px;
	}

	.xp-slider-slide {
		min-height: 100px;
	}

	.xp-slider-dots {
		gap: 7px;
		margin-top: 15px;
	}

	.xp-slider-dot {
		width: 9px;
		height: 9px;
	}

	.xp-slider-dot.xp-active {
		width: 11px;
		height: 11px;
	}

	/* Testimonials */
	.xp-testimonials-section {
		padding: 60px 15px;
	}

	.xp-testimonials-title {
		font-size: 32px;
	}

	.xp-testimonials-carousel {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.xp-testimonials-carousel .owl-nav {
		top: -50px;
	}

	.xp-testimonial-card {
		padding: 25px;
	}

	.xp-testimonial-name {
		font-size: 15px;
	}

	.xp-testimonial-text {
		font-size: 13px;
		line-height: 1.7;
	}
}

/* MOBILE DEVICES (480px and below) */
@media (max-width: 480px) {
	/* About Section */
	.xp-about-section {
		padding: 40px 10px;
	}

	.xp-about-stats {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.xp-section-title { 
		font-size: 26px; 
	}
	
	.xp-main-wrapper { 
		padding: 24px 10px; 
	}

	.xp-stat-item {
		padding: 12px 0;
	}

	.xp-stat-number {
		font-size: 28px;
	}

	.xp-stat-label {
		font-size: 11px;
	}

	.xp-about-title {
		font-size: 20px;
		line-height: 1.3;
	}

	.xp-about-description {
		font-size: 14px;
		line-height: 1.6;
	}

	.xp-benefit-item {
		padding: 10px;
		gap: 8px;
		align-items: center;
	}

	.xp-benefit-icon {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.xp-benefit-text h4 {
		font-size: 14px;
	}

	.xp-about-btn {
		padding: 10px 25px;
		font-size: 14px;
	}

	/* 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;
	}

	/* Product Slider */
	.xp-product-slider-section {
		padding: 30px 10px;
	}

	.xp-slider-slider {
		min-height: 100px;
		border-radius: 6px;
	}

	.xp-slider-slide {
		min-height: 100px;
	}

	.xp-slider-dots {
		gap: 6px;
		margin-top: 12px;
	}

	.xp-slider-dot {
		width: 8px;
		height: 8px;
	}

	.xp-slider-dot.xp-active {
		width: 10px;
		height: 10px;
	}

	/* Testimonials */
	.xp-testimonials-section {
		padding: 40px 10px;
	}

	.xp-testimonials-header {
		margin-bottom: 40px;
	}

	.xp-testimonials-title {
		font-size: 28px;
		margin-bottom: 8px;
	}

	.xp-testimonials-subtitle {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.xp-rating-badge {
		flex-direction: column;
		gap: 10px;
		padding: 12px 20px;
	}

	.xp-rating-text {
		font-size: 12px;
	}

	.xp-testimonials-carousel {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.xp-testimonials-carousel .owl-stage {
		gap: 0px;
	}

	.xp-testimonials-carousel .owl-nav {
		top: -45px;
		gap: 8px;
	}

	.xp-testimonials-carousel .owl-nav button {
		width: 35px;
		height: 35px;
		font-size: 14px;
		border-width: 1.5px;
	}

	.xp-testimonial-card {
		padding: 20px;
		padding-top: 25px;
	}

	.xp-testimonial-card::before {
		font-size: 40px;
		right: 15px;
		top: 5px;
	}

	.xp-testimonial-header {
		gap: 12px;
		margin-bottom: 15px;
	}

	.xp-testimonial-avatar {
		min-width: 50px;
		width: 50px;
		height: 50px;
	}

	.xp-testimonial-name {
		font-size: 14px;
		margin-bottom: 3px;
	}

	.xp-testimonial-title {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.xp-testimonial-stars {
		font-size: 12px;
		gap: 3px;
	}

	.xp-testimonial-text {
		font-size: 12px;
		line-height: 1.7;
		margin-bottom: 12px;
	}

	.xp-testimonial-date {
		font-size: 11px;
	}
}

/* ==========================================
   ABOUT/FEATURES PAGE LAYOUT STYLES
   ========================================== */

/* NORMAL (Desktop) STYLES */
.xp-why-choose-us-section{
	padding:0px;
}
.xp-wrapper {
	width: 100%;
	min-height: 100%;
	background: #f8f8f6;
	overflow: auto;
	padding:80px 0px 80px;
}

.xp-container {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}

.xp-left {
	flex: 1;
	min-width: 200px;
}

.xp-right {
	flex: 0 0 480px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.xp-subtitle {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #81ba2d;
	margin-bottom: 12px;
	position: relative;
	display: inline-block;
	font-family: 'Jost', sans-serif;
}

.xp-subtitle::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #81ba2d;
	margin-top: 8px;
}

.xp-heading {
	font-size: 36px;
	font-weight: 800;
	color: #494947;
	letter-spacing: 1px;
	font-family: 'Jost', sans-serif;
	line-height: 1.2;
	margin-bottom: 40px;
	padding-left: 20px;
	border-left: 4px solid #81ba2d;
}

.xp-boxes-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.xp-box {
	background: #ffffff;
	border-radius: 12px;
	padding: 24px 20px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid #eee;
	position: relative;
	overflow: hidden;
	cursor: default;
}

.xp-box::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #81ba2d;
	transform: scaleX(0);
	transition: transform 0.35s ease;
}

.xp-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
	border-color: #81ba2d40;
}

.xp-box:hover::before {
	transform: scaleX(1);
}

.xp-box:hover .xp-box-icon {
	background: #81ba2d;
	color: #fff;
}

.xp-box-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #81ba2d1a;
	color: #81ba2d;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s ease;
}

.xp-box-icon i {
	width: 22px;
	height: 22px;
}

.xp-box-content {
	flex: 1;
}

.xp-box-title {
	font-size: 16px;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	color: #494947;
	margin-bottom: 8px;
	letter-spacing: 1px;
	line-height: 1.3;
}

.xp-box-desc {
	font-size: 15px;
	color: #494947b0;
	line-height: 1.5;
	font-weight: 400;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-right-content {
	font-size: 15px;
	color: #494947c0;
	line-height: 1.8;
	font-weight: 400;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #81ba2d;
	color: #fff;
	padding: 14px 32px;
	border-radius: 50px;
	font-family: 'Jost', sans-serif;
	font-size: 17px;
	font-weight: 400;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: fit-content;
	letter-spacing: 1px;
}

.xp-btn:hover {
	background: #494947;
	transform: translateX(4px);
}

.xp-btn i {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.xp-btn:hover i {
	transform: translateX(4px);
}

.xp-image-wrap {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.xp-image-wrap img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	transition: transform 0.5s ease;
}

.xp-image-wrap:hover img {
	transform: scale(1.03);
}

.xp-image-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: #81ba2d;
	color: #fff;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* ==========================================
   ANIMATIONS FOR ABOUT/FEATURES PAGE
   ========================================== */

.xp-fade-up {
	opacity: 0;
	transform: translateY(30px);
	animation: xpFadeUp 0.7s forwards;
}

@keyframes xpFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.xp-fade-up:nth-child(1) {
	animation-delay: 0.05s;
}

.xp-fade-up:nth-child(2) {
	animation-delay: 0.1s;
}

.xp-fade-up:nth-child(3) {
	animation-delay: 0.15s;
}

.xp-fade-up:nth-child(4) {
	animation-delay: 0.2s;
}

.xp-fade-up:nth-child(5) {
	animation-delay: 0.25s;
}

.xp-fade-up:nth-child(6) {
	animation-delay: 0.3s;
}

/* ==========================================
   RESPONSIVE STYLES FOR ABOUT/FEATURES PAGE
   ========================================== */

/* TABLET DEVICES (900px and below) */
@media (max-width: 900px) {
	.xp-container {
		flex-direction: column;
		padding: 40px 20px;
		gap: 40px;
	}
	
	.xp-right {
		flex: 1;
		min-width: 0;
	}
	
	.xp-heading {
		font-size: 28px;
	}
}

/* MOBILE DEVICES (550px and below) */
@media (max-width: 550px) {
	.xp-boxes-grid {
		grid-template-columns: 1fr;
	}
	
	.xp-heading {
		font-size: 24px;
	}
}

/* ==========================================
   CAROUSEL/BLOG LISTING PAGE STYLES
   ========================================== */

/* Blog Section Wrapper */
.xp-blog-section {
	padding: 60px 0px 80px;
	width: 100%;
	background-color: #ffffff;
}

/* Carousel Track Animation - NORMAL STYLES */
.xp-carousel-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	gap: 24px;
}

/* ==========================================
   SCROLL TOP BUTTON STYLES
   ========================================== */

#xp-scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #81ba2d 0%, #6fa025 100%);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	z-index: 999;
	text-decoration: none;
}

#xp-scroll-top:hover {
	background: linear-gradient(135deg, #6fa025 0%, #5a8620 100%);
	box-shadow: 0 6px 20px rgba(129, 186, 45, 0.3);
	transform: translateY(-3px);
}

#xp-scroll-top.show {
	opacity: 1;
	visibility: visible;
}

/* TABLET (768px and below) */
@media (max-width: 768px) {
	#xp-scroll-top {
		width: 45px;
		height: 45px;
		bottom: 25px;
		right: 25px;
		font-size: 18px;
	}
}

/* MOBILE (550px and below) */
@media (max-width: 550px) {
	#xp-scroll-top {
		width: 40px;
		height: 40px;
		bottom: 20px;
		right: 20px;
		font-size: 16px;
	}
}

/* Blog Card Styles - NORMAL STYLES */
.xp-blog-card {
	border: 2px solid #e0e0e0;
	border-radius: 16px;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.xp-blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	border-color: #81ba2d;
}

/* Blog Image Wrapper - NORMAL STYLES */
.xp-images-wrapper {
	border: 3px solid #f0f0f0;
	border-radius: 12px;
	margin: 12px;
	overflow: hidden;
	position: relative;
}

.xp-images-wrapper::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(73, 73, 71, 0.15) 100%);
	pointer-events: none;
}

.xp-images-wrapper img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.xp-blog-card:hover .xp-image-wrapper img {
	transform: scale(1.06);
}

/* Blog Content Section - NORMAL STYLES */
.xp-content-div {
	padding: 16px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Blog Category Label - NORMAL STYLES */
.xp-category {
	color: #81ba2d;
	font-weight: 500;
	font-size: 13px;
	font-family: 'Jost', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.xp-category::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #81ba2d;
	border-radius: 50%;
	display: inline-block;
}

/* Blog Title - NORMAL STYLES */
.xp-blog-title {
	color: #494947;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1.4;
	margin-bottom: 10px;
	display: -webkit-box;
	font-family: 'Jost', sans-serif;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Blog Description - NORMAL STYLES */
.xp-blog-desc {
	color: #7a7a78;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 16px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

/* Read More Button - NORMAL STYLES */
.xp-read-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #81ba2d, #6fa025);
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
	padding: 10px 22px;
	border-radius: 50px;
	border: none;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	width: fit-content;
	font-family: 'Jost', sans-serif;
}

.xp-read-btn:hover {
	background: linear-gradient(135deg, #6fa025, #5d8a1f);
	box-shadow: 0 6px 20px rgba(129, 186, 45, 0.4);
	transform: translateX(4px);
}

/* Navigation Buttons - NORMAL STYLES */
.xp-nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid #494947;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #494947;
	font-family: 'Jost', sans-serif;
}

.xp-nav-btn:hover {
	background: #81ba2d;
	border-color: #81ba2d;
	color: #ffffff;
}

.xp-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.xp-blog-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 36px;
	flex-wrap: wrap;
	gap: 16px;
}

.xp-blog-label {
	color: #81ba2d;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 4px;
	font-family: 'Jost', sans-serif;
}

.xp-blog-section-title {
	color: #494947;
	font-size: 36px;
	font-weight: 600;
	margin: 0;
	font-family: 'Jost', sans-serif;
	line-height: 1.2;
	letter-spacing: 1px;
}

.xp-title-underline {
	width: 60px;
	height: 4px;
	background: #81ba2d;
	border-radius: 2px;
	margin-top: 12px;
}

.xp-nav-controls {
	display: flex;
	gap: 12px;
}

.xp-carousel-viewport {
	overflow: hidden;
	border-radius: 8px;
}

.xp-dots-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.xp-blog-icon {
	width: 22px;
	height: 22px;
}


/* ==========================================
   OUT OF STOCK ACTION BUTTON
   ========================================== */

.xp-action-btn.disabled {
	background-color: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}

.xp-action-btn.disabled:hover {
	background-color: #ccc;
	cursor: not-allowed;
}

/* ==========================================
   ADD TO CART BUTTON STYLES
   ========================================== */

.xp-add-to-cart-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: inline;
}

.xp-add-to-cart-btn:hover {
	opacity: 0.8;
}

/* ==========================================
   RESPONSIVE CAROUSEL STYLES - RESPONSIVE STYLES
   ========================================== */

/* TABLET (768px and below) - RESPONSIVE */
@media (max-width: 768px) {
	.xp-blog-section {
		padding: 50px 0px;
	}
	
	.xp-images-wrapper img {
		height: 180px;
	}
	
	.xp-blog-header {
		margin-bottom: 28px;
	}
	
	.xp-blog-section-title {
		font-size: 28px;
	}
	
	.xp-read-btn {
		padding: 8px 18px;
		font-size: 13px;
	}
}

/* MOBILE (550px and below) - RESPONSIVE */
@media (max-width: 550px) {
	.xp-blog-section {
		padding: 40px 0px;
	}
	
	.xp-blog-header {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 24px;
	}
	
	.xp-blog-section-title {
		font-size: 24px;
	}
	
	.xp-images-wrapper img {
		height: 150px;
	}
	
	.xp-blog-title {
		font-size: 16px;
	}
	
	.xp-blog-desc {
		font-size: 13px;
	}
	
	.xp-nav-btn {
		width: 40px;
		height: 40px;
	}
}