.showroom {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-on-dark);
}

.showroom__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.showroom__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showroom__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 39, 40, 0.55) 0%, rgba(36, 39, 40, 0.75) 100%);
}

.showroom__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 48px;
  text-align: center;
}

.showroom__title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 100%;
  font-weight: 600;
}

.showroom__address {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-on-dark-muted);
}

.showroom__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.showroom__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.showroom__btn--solid {
  background: var(--color-dark);
  color: #fff;
}

.showroom__btn--solid:hover {
  opacity: 0.85;
}

.showroom__btn--outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.showroom__btn--outline:hover {
  background: #fff;
  color: var(--color-dark);
}

.showroom__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.showroom__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 767px) {
  .showroom {
    min-height: 420px;
  }

  .showroom__inner {
    padding: 64px 16px;
  }

  .showroom__title {
    font-size: 28px;
  }

  .showroom__address {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .showroom__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .showroom__btn {
    justify-content: center;
    width: 100%;
  }
}
