.product-features-section {
  margin-top: 90px;
}

.product-showcase {
  display: flex;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
}

.product-showcase__sidebar {
  width: 40%;
}

.product-showcase__media {
  width: 60%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.product-showcase__image {
    width: 80%;
    opacity: 0;
    transform: translateX(100px);
    transition:
        opacity 500ms ease,
        transform 333ms ease;
}

.product-showcase__image--visible {
    opacity: 1;
    transform: translateX(0);
}

.product-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-showcase__item {
  background: #f2f2f2;
  border-radius: 24px;
  width: 300px;
  height: 56px;
  overflow: hidden;
  position: relative;
  transition: width 0.3s ease, height 0.3s ease;
  cursor: pointer;
}

.product-showcase__item.active {
  width: 350px;
  height: 240px;
}

.product-showcase__button {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 16px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-showcase__title {
  font-size: 17px;
  font-weight: 600;
  color: #472645;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.product-showcase__title svg {
  width: 24px;
  height: 24px;
}

.product-showcase__item.active .product-showcase__title {
  opacity: 0;
}

.product-showcase__copy {
  margin-top: 12px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  color: #472645;
  transition: opacity 0.3s ease 0.15s;
}

.product-showcase__item.active .product-showcase__copy {
  opacity: 1;
  height: auto;
}

.strong {
  font-weight: 600;
}

.product-showcase-mobile {
  display: none;
}

.product-showcase-mobile__image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  /* margin-bottom: 32px; */
  overflow: hidden;
  border-radius: 16px;
  height: 300px;
}

.product-showcase-mobile__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition:
    opacity 500ms ease,
    transform 333ms ease;
}

.product-showcase-mobile__image--visible {
  opacity: 1;
}

.product-showcase-mobile__carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.product-showcase-mobile__carousel {
  overflow: hidden;
  border-radius: 16px;
  background: #f2f2f2;
  min-height: 150px;
}

.product-showcase-mobile__slides {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.product-showcase-mobile__slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-showcase-mobile__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.product-showcase-mobile__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-showcase-mobile__title {
  font-size: 17px;
  font-weight: 600;
  color: #472645;
  margin: 0;
}

.product-showcase-mobile__copy {
  font-size: 15px;
  line-height: 1.4;
  color: #472645;
}

.product-showcase-mobile__copy p {
  margin: 0;
}

.product-showcase-mobile__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  color: #472645;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.product-showcase-mobile__arrow:hover {
  background: #e8e8e8;
}

.product-showcase-mobile__arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .product-showcase--desktop {
    display: none;
  }

  .product-showcase-mobile {
    display: block;
    background: white;
    padding: 40px;
    border-radius: 20px;
  }
}

@media (min-width: 993px) {
  .product-showcase-mobile {
    display: none;
  }
}