/* Featured Products Carousel Styles */
.fpc-carousel-wrapper {
	margin-top: -54px;
	position: relative;
}

.fpc-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 30px;
	padding: 0 40px;
}

.fpc-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	display: flex;
	gap: 10px;
}

.fpc-title-featured {
	color: #000000;
}

.fpc-title-products {
	color: #217E8C;
}

.fpc-navigation {
	display: flex;
	gap: 10px;
}

.fpc-nav-btn {
	width: 48px;
	height: 48px;
	border: 2px solid #33AFBE;
	border-radius: 8px;
	background: transparent;
	color: #33AFBE;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	padding: 0;
}

.fpc-nav-btn:hover {
	background: #217E8C;
	color: #ffffff;
}

.fpc-nav-btn:active {
	transform: scale(0.95);
}

.fpc-nav-btn svg {
	width: 24px;
	height: 24px;
}

.fpc-carousel-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 0 20px;
}

.fpc-carousel-track {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
	will-change: transform;
	padding: 0;
	margin: 0;
}

.fpc-product-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 24px;
	min-width: 245px;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fpc-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.fpc-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #080C14;
    margin: 0 0 16px 0;
    line-height: 1.4;
    font-family: 'Inter';
}

.fpc-product-meta {
	margin-bottom: 20px;
	flex-grow: 1;
}

.fpc-meta-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Inter';
}
span.fpc-meta-value {
    margin-left: 2px;
}
.fpc-meta-row:last-child {
	margin-bottom: 0;
}

span.fpc-meta-label {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter';
    color: #080C14;
}

.fpc-meta-value {
	color: #000000;
	font-weight: 500;
}

.fpc-product-price {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.fpc-price-sale {
    color: #33AFBE;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter';
}

.fpc-price-regular {
	color: #999999;
	text-decoration: line-through;
	font-size: 18px;
	font-weight: 400;
}

.fpc-details-btn {
	display: inline-block;
	background: #217E8C;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	width: 100%;
}

.fpc-details-btn:hover {
	background: #1a6b78;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(33, 126, 140, 0.3);
}

.fpc-details-btn:active {
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.fpc-product-card {
		min-width: 260px;
	}
}

@media (max-width: 768px) {
	.fpc-carousel-wrapper {
		padding: 30px 15px;
	}
	
	.fpc-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		padding: 0;
	}
	
	.fpc-title {
		font-size: 36px;
	}
	
	.fpc-product-card {
		min-width: 240px;
	}
	
	.fpc-navigation {
		align-self: flex-end;
	}
}

@media (max-width: 480px) {
	.fpc-title {
		font-size: 28px;
	}
	
	.fpc-product-card {
		min-width: 220px;
		padding: 20px;
	}
	
	.fpc-product-name {
		font-size: 16px;
		min-height: 44px;
	}
}

/* Modal Styles */
.fpc-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.fpc-modal.fpc-modal-active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fpc-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.fpc-modal-content {
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	max-width: 90%;
	max-height: 90vh;
	width: 600px;
	overflow-y: auto;
	z-index: 10000;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: fpc-modal-fade-in 0.3s ease;
}

@keyframes fpc-modal-fade-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.fpc-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	border: none;
	background: #f5f5f5;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	color: #666666;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10001;
}

.fpc-modal-close:hover {
	background: #217E8C;
	color: #ffffff;
}

.fpc-modal-body {
	padding: 30px;
}

.fpc-modal-loading {
	text-align: center;
	padding: 40px;
	color: #666666;
}
button.fpc-details-btn {
    border-color: #33AFBE;
    background: #33AFBE;
    color: #ffff;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 600;
    padding: 0px 26px;
    height: 30px;
}
button.fpc-details-btn:hover {
    background: #33AFBE;
}
.wrap-p-btn {
    display: flex;
    justify-content: space-between;
}
button.fpc-nav-btn:focus {
    background: #33AFBE;
}
@media (max-width: 768px) {
	.fpc-modal-content {
		width: 95%;
		max-height: 95vh;
	}
	
	.fpc-modal-body {
		padding: 20px;
	}
}

