.pcs-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
	padding: 50px 0;
	font-family: inherit;
	color: #002D5A;
}

.pcs-slider {
	position: relative;
	padding: 0 50px;
}

.pcs-slider .slick-list {
	padding-bottom: 50px !important;
	padding-top: 50px !important;
}

.pcs-slide-item {
	text-align: center;
	transition: opacity 0.3s ease;
	opacity: 0.3;
	position: relative;
	z-index: 1;
}

.pcs-slide-item.pcs-level-1 {
	opacity: 0.7;
	z-index: 5;
}

.pcs-image-container {
	position: relative;
	z-index: 2;
	margin-bottom: -50px;
	width: 150%;
	left: 50%;
	transform: translateX(-50%) scale(0.6);
	transition: transform 0.3s ease;
	pointer-events: none;
	transform-origin: center center;
}

.pcs-slide-item.pcs-level-1 .pcs-image-container {
	transform: translateX(-50%) scale(0.9);
}

.pcs-slide-item.pcs-active-center .pcs-image-container {
	transform: translateX(-50%) scale(1.3);
}

.pcs-product-image {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.pcs-details-container {
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease;
}

.pcs-slide-item.pcs-active-center {
	opacity: 1;
	z-index: 10;
}

.pcs-slide-item.pcs-active-center .pcs-details-container {
	opacity: 1;
	visibility: visible;
	height: auto;
	overflow: visible;
	position: relative;
}

.pcs-compare-checkbox {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 3;
	background: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.pcs-compare-checkbox input[type="checkbox"] {
	cursor: pointer;
	width: 16px;
	height: 16px;
}

.pcs-details-inner {
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	padding: 80px 40px 40px;
	margin: 0;
	width: 450px;
	max-width: 90vw;
	text-align: left;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.pcs-title {
	font-size: 18px !important;
	font-weight: 800;
	color: #002D5A !important;
	margin: 0 0 5px;
	text-transform: uppercase;
	text-align: center;
}

.pcs-short-desc {
	font-size: 14px !important;
	font-weight: 700;
	color: #002D5A !important;
	margin-bottom: 25px;
	text-align: center;
}

.pcs-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.pcs-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px !important;
	margin-bottom: 12px;
	color: #002D5A !important;
	font-weight: 600;
}

.pcs-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.pcs-btn-learn-more {
	display: inline-block;
	background-color: #002D5A !important;
	color: #ffffff !important;
	text-decoration: none !important;
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 14px !important;
	transition: background-color 0.3s;
}

.pcs-btn-learn-more:hover {
	background-color: #001f3e !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

.pcs-link-program {
	color: #002D5A !important;
	font-weight: 700;
	font-size: 14px !important;
	text-decoration: none !important;
}

.pcs-link-program:hover {
	color: #001f3e !important;
	text-decoration: none !important;
}

.pcs-slider .slick-prev,
.pcs-slider .slick-next {
	width: 50px;
	height: 50px;
	z-index: 20;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent !important;
	border: none !important;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pcs-slider .slick-prev:hover,
.pcs-slider .slick-next:hover,
.pcs-slider .slick-prev:focus,
.pcs-slider .slick-next:focus {
	background: transparent !important;
	outline: none !important;
	box-shadow: none !important;
}

.pcs-slider .slick-prev {
	left: 20px;
}

.pcs-slider .slick-next {
	right: 20px;
}

.pcs-slider .slick-prev:before,
.pcs-slider .slick-next:before {
	content: none;
}

.pcs-slider .slick-prev svg,
.pcs-slider .slick-next svg {
	width: 30px;
	height: 30px;
	transition: transform 0.2s ease;
}

.pcs-slider .slick-prev:hover svg {
	transform: translateX(-5px);
}

.pcs-slider .slick-next:hover svg {
	transform: translateX(5px);
}

.pcs-compare-sidebar {
	position: fixed;
	right: -350px;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	background: #fff;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
	border-radius: 4px 0 0 4px;
	z-index: 9999;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
}

.pcs-compare-sidebar.is-active {
	right: 0;
}

.pcs-sidebar-header {
	background-color: #002D5A !important;
	color: #ffffff !important;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 4px 0 0 0;
}

.pcs-sidebar-title {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.pcs-sidebar-title h4 {
	margin: 0;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
}

.pcs-sidebar-title svg {
	transition: transform 0.3s ease;
}

.pcs-compare-sidebar.is-collapsed .pcs-sidebar-list,
.pcs-compare-sidebar.is-collapsed .pcs-sidebar-footer {
	display: none;
}

.pcs-compare-sidebar.is-collapsed .pcs-sidebar-title svg {
	transform: rotate(180deg) !important;
}

.pcs-delete-all {
	background: transparent !important;
	border: none !important;
	color: #ffffff !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	cursor: pointer;
	padding: 0 !important;
	box-shadow: none !important;
}

.pcs-delete-all:hover {
	text-decoration: underline !important;
}

.pcs-sidebar-list {
	padding: 20px;
	max-height: 50vh;
	overflow-y: auto;
}

.pcs-sidebar-item {
	display: flex;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
	position: relative;
}

.pcs-sidebar-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.pcs-sidebar-item img {
	width: 50px;
	height: auto;
	margin-right: 15px;
	object-fit: contain;
}

.pcs-sidebar-item-info {
	padding-right: 25px;
}

.pcs-sidebar-item-info h5 {
	margin: 0 0 5px 0 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	color: #002D5A !important;
	text-transform: uppercase !important;
}

.pcs-sidebar-item-info h5::before,
.pcs-sidebar-item-info h5::after {
	content: none !important;
	display: none !important;
}

.pcs-sidebar-item-info p {
	margin: 0 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #002D5A !important;
}

.pcs-sidebar-item-remove {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: transparent !important;
	border: none !important;
	cursor: pointer;
	color: #000 !important;
	width: auto !important;
	height: auto !important;
	padding: 5px !important;
	border-radius: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none !important;
}

.pcs-sidebar-item-remove svg {
	width: 14px;
	height: 14px;
}

.pcs-sidebar-footer {
	padding: 20px;
	text-align: center;
}

.pcs-btn-view-comparison {
	display: inline-block;
	background-color: #E88313 !important;
	color: #ffffff !important;
	text-decoration: none !important;
	padding: 12px 30px;
	border-radius: 30px !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	transition: background-color 0.3s;
	border: none !important;
	box-shadow: none !important;
}

.pcs-btn-view-comparison:hover {
	background-color: #d1740e !important;
	color: #ffffff !important;
}

@media (max-width: 992px) {
	.pcs-wrapper {
		padding: 30px 0;
	}

	.pcs-slider {
		padding: 0 30px;
	}

	.pcs-slider .slick-prev {
		left: 0;
	}

	.pcs-slider .slick-next {
		right: 0;
	}

	.pcs-details-inner {
		padding: 60px 20px 30px;
		width: 90vw;
	}

	.pcs-title {
		font-size: 16px !important;
	}

	.pcs-short-desc {
		font-size: 12px !important;
	}

	.pcs-image-container {
		transform: translateX(-50%) scale(0.7);
	}

	.pcs-slide-item.pcs-active-center .pcs-image-container {
		transform: translateX(-50%) scale(1.1);
	}

	.pcs-compare-sidebar {
		top: auto !important;
		bottom: -100%;
		right: 0 !important;
		left: 0;
		width: 100% !important;
		transform: none !important;
		border-radius: 15px 15px 0 0;
		transition: bottom 0.3s ease !important;
		max-height: 80vh;
	}

	.pcs-compare-sidebar.is-active {
		bottom: 0 !important;
		right: 0 !important;
	}

	.pcs-sidebar-header {
		border-radius: 15px 15px 0 0;
	}
}