.shop-block {
  display: flex;
  gap: 10px;
}

.shop-block__left {
  width: 40%;
}

.shop-block__right {
  width: 60%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-block__left img {
  width: 100%;
}
.shop-block__title {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
  font-size: 20px;
  color: #4f2915;
  line-height: 1;
}
.shop-block__address {
  display: flex !important;
  flex-direction: column;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #800000;
}
.shop-block__hour {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .shop-block__left,
  .shop-block__right {
    width: 50%;
  }
  .shop-block__title {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .shop-block__address {
    font-size: 16px;
  }
  .shop-block__hour {
    font-size: 16px;
  }
  .shop-block__right {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .shop-block {
    flex-direction: column;
    gap: 20px;
  }
  .shop-block__left,
  .shop-block__right {
    width: 100%;
    padding: 0;
  }
}
