.search-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  margin-bottom: 16px;
  position: relative;
}

/* PROFILE IMAGE */
.left-profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

/* SHOP IMAGE */
.right-shop img {
  width: 160px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

/* CONTENT */
.profile-content {
  flex: 1;
}

/* TAGS */
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-tag {
  background: #f1f3f5;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* ========================= */
/* MOBILE VIEW */
/* ========================= */
@media (max-width: 768px) {

  .search-profile {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }

  /* shop image top cover */
  .right-shop {
    width: 100%;
  }

  .right-shop img {
    width: 100%;
    height: 160px;
    border-radius: 12px 12px 0 0;
  }

  /* profile overlay */
  .left-profile {
    position: absolute;
    top: 120px;
    left: 15px;
  }

  .left-profile img {
    width: 70px;
    height: 70px;
    border: 4px solid #fff;
  }

  /* content */
  .profile-content {
    padding: 50px 15px 15px;
    text-align: left;
  }
}

/* ========================= */
/* DESKTOP (IMPORTANT PART) */
/* ========================= */
@media (min-width: 992px) {

  .search-profile {
    flex-direction: row;
  }

  .right-shop {
    order: 3;
  }

  .left-profile {
    order: 1;
  }

  .profile-content {
    order: 2;
  }
}