/* Container and Wrapper */
.ppf-features-container {
	margin: 2em 0;
	position: relative;
	width: 100%;
}

.ppf-features-slider-wrap {
	display: flex;
	align-items: center;
	position: relative;
	border: 1px solid #c5a059;
	/* Gold border based on design */
	border-radius: 10px;
	padding: 20px 30px;
	background: #fff;
}

/* Scroll Track */
.ppf-features-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 30px;
	/* Space between features */
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	scroll-behavior: smooth;
	flex: 1;
}

.ppf-features-track::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */
}

/* Feature Item */
.ppf-feature-item {
	scroll-snap-align: start;
	flex: 0 0 calc(33.333% - 20px);
	/* 3 items visible by default */
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* Header: Subtitle, Title, Icon */
.ppf-feature-header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 12px;
	gap: 15px;
}

.ppf-feature-header.ppf-icon-right {
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
}

.ppf-feature-title-group {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ppf-feature-header.ppf-icon-right .ppf-feature-title-group {
	padding-right: 15px;
}

.ppf-feature-subtitle {
	font-size: 0.8em;
	text-transform: uppercase;
	color: #16212f;
	margin-bottom: 0px;
	line-height: 1;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.ppf-feature-title {
	font-size: 1.3em;
	margin: 0;
	line-height: 1.2;
	color: #16212f;
	font-weight: bold;
}

.ppf-feature-icon {
	flex: 0 0 auto;
}

.ppf-feature-icon img {
	max-width: 50px;
	height: auto;
	display: block;
}

/* Description */
.ppf-feature-desc {
	font-size: 0.9em;
	line-height: 1.4;
	color: #16212f;
}

.ppf-feature-desc p {
	margin: 0 0 10px 0;
}

.ppf-feature-desc p:last-child {
	margin-bottom: 0;
}

/* Navigation Arrows */
.ppf-slider-arrow {
	background: #fff;
	border: 1px solid #c5a059;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: none;
	/* Hidden by default, shown by JS if needed */
	align-items: center;
	justify-content: center;
	color: #c5a059;
	transition: background-color 0.2s, color 0.2s;
}

.ppf-slider-arrow:hover {
	background: #c5a059;
	color: #fff;
}

.ppf-arrow-disabled {
	opacity: 0.3 !important;
	cursor: not-allowed !important;
	pointer-events: none;
}

.ppf-arrow-prev {
	left: -20px;
}

.ppf-arrow-next {
	right: -20px;
}

/* Responsive */
@media (max-width: 991px) {
	.ppf-feature-item {
		flex: 0 0 calc(50% - 15px);
	}
}

@media (max-width: 575px) {
	.ppf-feature-item {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.ppf-features-slider-wrap {
		padding: 15px;
	}

	.ppf-slider-arrow {
		top: auto;
		bottom: -50px;
		transform: none;
	}
	
	.ppf-arrow-prev {
		left: calc(50% - 45px);
	}
	
	.ppf-arrow-next {
		right: calc(50% - 45px);
	}
}