/* Product Ingredients — carousel styles */

.pi-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 20px;
	box-sizing: border-box;
}

.pi-wrapper * {
	box-sizing: border-box;
}

.pi-header {
	text-align: center;
	margin-bottom: 40px;
}

.pi-heading {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0.3px;
	margin: 0 0 10px;
	color: #262524;
}

.pi-subheading {
	font-size: 14px;
	letter-spacing: 0.2px;
	color: #6b6a68;
	margin: 0;
}

/* Carousel */

.pi-carousel-container {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.pi-carousel {
	display: flex;
	flex: 1 1 auto;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.pi-carousel::-webkit-scrollbar {
	display: none;
}

.pi-card {
	flex: 0 0 88%;
	max-width: 88%;
	scroll-snap-align: start;
	padding: 0 24px;
	text-align: center;
	border-right: 1px solid #e7e5e1;
}

.pi-card:last-child {
	border-right: none;
}

@media (min-width: 560px) {
	.pi-card {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 860px) {
	.pi-card {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
}

@media (min-width: 1180px) {
	.pi-card {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.pi-card-img-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.pi-card-img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	background: #efece4;
	display: block;
}

.pi-img-placeholder {
	background: #efece4;
}

.pi-card-title {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	min-height: 52px;
	margin: 0 0 22px;
	color: #262524;
}

.pi-details-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	border-top: 1px solid #dedbd5;
	padding: 14px 2px;
	cursor: pointer;
	font-size: 14px;
	color: #262524;
	font-family: inherit;
}

.pi-toggle-icon {
	font-size: 18px;
	line-height: 1;
	font-weight: 300;
}

.pi-details-panel {
	text-align: left;
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4946;
	padding-top: 14px;
	border-top: 1px solid #eeece7;
	margin-top: -1px;
}

.pi-details-panel p,
.pi-details-panel .pi-desc {
	margin: 0 0 10px;
}

.pi-details-panel strong {
	color: #262524;
}

/* Nav arrows */

.pi-nav {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #ddd9d2;
	background: #fff;
	cursor: pointer;
	font-size: 13px;
	color: #262524;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease;
}

.pi-nav:hover {
	background: #f4f2ee;
}

.pi-nav:disabled {
	opacity: 0.3;
	cursor: default;
}

@media (max-width: 480px) {
	.pi-heading {
		font-size: 24px;
	}
	.pi-card {
		flex: 0 0 92%;
		max-width: 92%;
		padding: 0 12px;
	}
	.pi-card-img {
		width: 150px;
		height: 150px;
	}
}
