.item-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-dist-bg);
  gap: 2rem;
}

.item-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: 80%;
  background-color: var(--color-bg);
  border-radius: 1rem;
  box-shadow: 0 4px 15px var(--color-box-shadow);
}

.item-container-left,
.item-container-right {
  flex-basis: 100%;
  width: 50%;
  height: 100%;
}

.item-container-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: block;
}

.item-container-left {
  padding: 1rem;
}

.item-container-left h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.item-container-left ul li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.item-container-left p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin: 2rem 0;
}

.other-models-list {
  font-size: 1.5rem;
}

.other-models-container {
  display: flex;
  width: 80%;
  justify-content: center;
  gap: 3rem;
}

/* Highlight search results */
.search-container {
  display: block;
  margin: 0 auto;
}

.search-input {
  padding: 0.75rem 1.5rem;
  border: 1px solid black;
  border-radius: 0.5rem;
  background: rgb(255, 255, 255);
  color: rgb(55, 55, 55);
  font-weight: 500;
  cursor: text;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: left;
}

@media (max-width: 1024px) {
  .other-models-container {
    width: 80%;
    flex-wrap: wrap;
  }

  .item-container {
    flex-direction: column-reverse;
    padding: 1rem;
    width: 80%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .item-container-left,
  .item-container-right {
    flex-basis: 100%;
    width: 100%;
    height: 100%;
  }

  .item-container-img {
    border-radius: 1rem;
    width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .item-wrapper {
    margin-top: 100px;
    height: 100%;
    padding-top: 60px;
    padding: 60px 1rem 1rem 1rem;
  }

  .item-wrapper h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .item-container,
  .item-container-img {
    width: 100%;
  }

  .search-container {
    text-align: center;
  }

  .other-models-container {
    flex-direction: column;
    height: 400px;
    overflow: scroll;
    gap: 0;
    box-shadow: 0 4px 15px var(--color-box-shadow);
    border-radius: 1rem;
    padding: 1rem;
    justify-content: start;
    background-color: var(--color-bg);
    width: 100%;
    flex-wrap: nowrap;
  }

  .other-models-container ul {
    margin-left: 2rem;
  }
}
