
.feature-showcase-section {
  background-color: var(--background-color);
  padding-top: 40px;
  padding-bottom: 8px;
  padding-inline: 70px;
}

body.dark .feature-showcase-section {
  background-color: var(--background-color-dark);
}

@media (max-width: 768px) {
  .feature-showcase-section {
    padding-inline: 15px;
  }
}

.feature-showcase-section .feature-showcase-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-title-color);
}

body.dark .feature-showcase-section .feature-showcase-title {
  color: var(--primary-title-color-dark);
}

.feature-showcase-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

@media (max-width: 768px) {
  .feature-showcase-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .feature-showcase-items {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
  }
}

.feature-showcase-items-mobile {
  display: none;
}

@media (max-width: 768px) {
  .feature-showcase-items:not(.feature-showcase-items-mobile) {
    display: none;
  }
  .feature-showcase-items-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.feature-showcase-items .item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  max-width: 300px;
}

.feature-showcase-items .feature-image-wrapper {
  width: 40px;
  height: 40px;
}

.feature-showcase-items .feature-image-wrapper .feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-showcase-items .feature-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #D7D7D7 0%, #B7B7B7 100%);
}

.feature-showcase-items.feature-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--feature-name-color);
}

body.dark .feature-showcase-items .feature-name {
  color: var(--feature-name-color-dark);
}

.feature-showcase-product {
  width: 412px;
  height: 500px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .feature-showcase-product {
    width: 300px;
    height: 375px;
  }
}

@media (max-width: 768px) {
  .feature-showcase-product {
    width: 100%;
    max-width: 412px;
    height: 375px;
  }
}

.feature-showcase-product .feature-showcase-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-showcase-product-image-3d {
  width: 100%;
  height: 100%;
}