/* ----- Title ----*/

.efps-eyebrow {
	font-size: 14px;
	margin-bottom: 8px;
}

.efps-title {
	margin: 0 !important;
	font-size: 28px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.efps-title span {
	display: block;
}


.efps-description {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.6;
}

/* ----- Button ----*/

.efps-button{
	display: inline-flex;
	position:relative;
	margin-left:16px;
}


.efps-button span.efps-button-text{
	display: inline-flex;
	position:relative;
	font-size: 13px;
	background:var(--button-bg);
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 12px 26px;
	z-index:9;
	clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
}

.efps-button:before,.efps-button:after{
	content: "";
    position: absolute;
	top: 50%;
    width: 7px;
    height: 7px;
    background:var(--button-bg);
    transform: translateY(-50%) rotate(45deg);
}

.efps-button:before{
	left: -15px;
}

.efps-button:after{
	 right: -15px;
}

span.efps-button-before:after {
    display: block;
    content: '';
    position: absolute;
    transform: translateY(-50%) rotate(0deg);
    width: calc(100% + 15px);
    top: 50%;
    height: 2px;
    background: var(--button-bg);
    left: -8px;
}

span.efps-button-before {
    position: relative;
	z-index:9;
}


/* ---- Carousel ----- */

.elementor .efps-arrow {
	padding:0 !important;
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #b08a4e;
	background: #f2ece1;
	color: #b08a4e;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin: 0 -20px;
	transition: opacity 0.2s ease;
}

.elementor .efps-arrow svg{
	width: 18px;
}

.elementor  .efps-arrow-prev {
	margin-right: -20px;
}
.elementor  .efps-arrow-next {
	margin-left: -20px;
}

.elementor  .efps-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

@media (max-width: 640px) {
	.elementor .efps-arrow {
		width: 34px;
		height: 34px;
	}
}

/*--- Product Card ---*/

.efp-card {
	--efp-card-bg: #ffffff;
	--efp-card-radius: 20px;
	--efp-image-bg: #f4f1ea;
	flex: 0 0 calc((100% - (var(--efp-visible, 3) - 1) * 24px) / var(--efp-visible, 3));
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: var(--efp-card-bg, #fff);
	border-radius: var(--efp-card-radius, 20px);
	overflow: hidden;
	padding:10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.efp-card-media {
	display: block;
	aspect-ratio: 1.5473;
	overflow: hidden;
	background: var(--efp-image-bg, #F4F1EA);
	background: #F4F1EA;
	border-radius:16px;
}

.efp-card-img {
	width: 100%;
	height: 100% !important;
	object-fit: contain;
	display: block;
	background:#fff !important;
}

.efp-card-body {
	padding: 16px 18px 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.efp-card-title {
	font-size: 16px;
	line-height: 1.35;
	font-weight: 500;
	min-height:50px;
}

.efp-card-price {
	font-size: 15px;
	font-weight: 700;
}

.ena-card-category {
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-variant: small-caps;
}

@media (max-width: 1024px) {
	.efp-card {
		flex-basis: calc((100% - (var(--efp-visible-tablet, 2) - 1) * 24px) / var(--efp-visible-tablet, 2));
	}
}

@media (max-width: 640px) {
	.efp-card {
		flex-basis: calc((100% - (var(--efp-visible-mobile, 1) - 1) * 16px) / var(--efp-visible-mobile, 1));
	}
}