.ingredients-carousel {
  padding: 60px 0;
}
.ingredients-carousel .container {
  max-width: 1200px;
}
.ingredients-header {
  margin-bottom: 4rem;
  text-align: center;
}
.ingredients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(247, 240, 232);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 21px;
}
.badge-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(63, 26, 25);
  line-height: 1.4;
}
.ingredients-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1.2;
}
.ingredients-carousel__wrapper {
  position: relative;
}
.ingredients-carousel__container {
  position: relative;
}
.ingredients-carousel__single {
  display: flex;
  justify-content: center;
}
.ingredients-carousel__single .ingredients-carousel__content {
  max-width: 400px;
  text-align: center;
}
.ingredients-carousel__slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ingredients-carousel__slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.ingredients-carousel__slide {
  flex: 0 0 33.333%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.ingredients-carousel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.ingredient-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ingredient-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ingredient-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
}
.ingredient-placeholder-icon {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}
.ingredient-info {
  flex: 1;
  width: 100%;
}
.ingredient-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px 0;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ingredient-description {
  flex: 1;
}
.ingredient-description p {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.ingredients-carousel__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 3rem;
}
.ingredients-carousel__nav {
  width: 74px;
  height: 74px;
  background: rgb(247, 240, 232);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  outline: none;
}
.ingredients-carousel__nav:hover {
  background: rgb(240, 230, 220);
  transform: scale(1.02);
}
.ingredients-carousel__nav:focus {
  background: rgb(247, 240, 232);
  transform: none;
  outline: none;
}
.ingredients-carousel__nav:active {
  background: rgb(247, 240, 232);
  transform: none;
}
.ingredients-carousel__nav:focus:not(:hover) {
  background: rgb(247, 240, 232);
  transform: none;
}
.ingredients-carousel__nav svg {
  color: #000;
  width: 18px;
  height: 18px;
}
.ingredients-carousel__nav:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  transform: none;
}
.ingredients-carousel__nav:disabled:hover {
  background: rgb(247, 240, 232);
  transform: none;
}
@media (max-width: 991px) {
  .ingredients-carousel {
    padding: 40px 0;
  }
  .ingredients-title {
    font-size: 2.5rem;
  }
  .ingredients-carousel__navigation {
    gap: 20px;
  }
  .ingredients-carousel__nav {
    width: 60px;
    height: 60px;
  }
  .ingredient-description p {
    font-size: 0.9rem;
  }
  .ingredients-carousel__slide {
    flex: 0 0 50%;
    padding: 0 15px;
  }
  .ingredients-carousel__content {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .ingredients-carousel {
    padding: 30px 0;
  }
  .ingredients-header {
    margin-bottom: 3rem;
  }
  .ingredients-badge {
    padding: 8px 16px;
    margin-bottom: 16px;
  }
  .badge-text {
    font-size: 0.9rem;
  }
  .ingredients-title {
    font-size: 2rem;
  }
  .ingredient-description p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .ingredients-carousel__navigation {
    margin-top: 2rem;
    gap: 15px;
  }
  .ingredients-carousel__nav {
    width: 50px;
    height: 50px;
  }
  .ingredients-carousel__nav svg {
    width: 14px;
    height: 14px;
  }
  .ingredients-carousel__slide {
    flex: 0 0 100%;
    padding: 0 10px;
  }
  .ingredients-carousel__content {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .ingredients-header {
    margin-bottom: 2rem;
  }
  .ingredients-title {
    font-size: 1.8rem;
  }
  .ingredient-description p {
    font-size: 0.8rem;
  }
  .ingredients-carousel__navigation {
    margin-top: 1.5rem;
  }
}
