/* Showcase Section Styles */
.showcase__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.showcase {
  display: flex;
  align-items: center;
  min-height: 768px;
  overflow: hidden;
}

.showcase--light {
  background-color: var(--color-background-light);
}

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

.showcase--white {
  background-color: var(--color-background-white);
}

/* .showcase__content {
  flex: 1;
  padding: var(--spacing-4xl) 110px;
  display: flex;
  align-items: center;
} */

.showcase__content {
  flex: 1;
  padding: var(--spacing-4xl) 0;
  display: flex;
  align-items: center;
}


.showcase__text {
  max-width: 586px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.showcase__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  letter-spacing: 0.4px;
}

.showcase--light .showcase__title,
.showcase--white .showcase__title {
  color: var(--color-text-primary);
}

.showcase--dark .showcase__title {
  color: var(--color-text-light);
}

.showcase__description {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: 1.26;
  margin-bottom: 24px;
}

.showcase--light .showcase__description,
.showcase--white .showcase__description {
  color: var(--color-text-primary);
}

.showcase--dark .showcase__description {
  color: var(--color-text-light);
}


.showcase__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* .showcase__visual {
  flex: 1;
  padding: var(--spacing-4xl) 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
} */

.showcase__visual {
  flex: 1;
  padding: var(--spacing-4xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.showcase__mockup {
  position: relative;
  width: 536px;
  height: 597px;
}

.showcase__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: contain;
}

.showcase__detail {
  position: absolute;
  width: 31.24%;
  height: 16.85%;
  top: 11.16%;
  left: 16.51%;
  object-fit: contain;
}

.showcase__element {
  position: absolute;
  width: 53.86%;
  height: 43.91%;
  top: 21.69%;
  left: 0;
  object-fit: contain;
}

.showcase__badge {
  position: absolute;
  top: 9.17%;
  right: 13.04%;
  padding: 7px;
  background-color: var(--color-background-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  color: var(--color-text-primary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .showcase__wrapper {
    flex-direction: column;
  }
}
